sorcery  Artifact [8fadd50165]

Artifact 8fadd501657bf7a3dfd8654766215bbaa8fc7f3b00880d7e403f9208cbc38add:

  • File data/signs.lua — part of check-in [ea6e475e44] at 2020-10-19 09:52:11 on branch trunk — continue dev on celestial mechanics, add melding+division spells (resonance), refine itemclasses, add keypunch and punchcards, add paper pulp, add a shitload of visuals, add convenience scripts for working with the wiki, make the flamebolt spell actually useful instead of just a pretty lightshow, add essences, inferno crystal, and other goodies; iterate on wands, lots of shit i can't remember, various bugfixes (user: lexi, size: 1820) [annotate] [blame] [check-ins using]

-- this unit defines astrological signs of various magical
-- significance. used to determine whether the stars are aligned

return {
	{id = 'mink', patron = 'Mink'; duration = 4; effects = {
		enchant = {
			affinity = { praxic = { confluence = 1.3 } };
		};
	}};
	{id = 'ocelot', patron = 'Ocelot'; duration = 3, cycle = 3};
	{id = 'wyvern', patron = 'Wyvern'; duration = 2, cycle = 2; effects = {
		potion = {
			all = { speed = 1.3 };
			kind = { philter = { force = 2 } };
		};
	}};
	{id = 'dove', patron = 'Dove'; duration = 4 };
	{id = 'leper', patron = 'Leper'; duration = 1, cycle = 3 };
	{id = 'petrel', patron = 'Petrel'; duration = 5 };
	{id = 'kestrel', patron = 'Kestrel'; duration = 6 };
	{id = 'serpent', patron = 'Serpent'; duration = 3, cycle = 2};
	{id = 'wserpent', patron = 'Winged Serpent'; duration = 3, cycle = 4 };
	{id = 'lamb', patron = 'Lamb'; duration = 4};
	{id = 'grackle', patron = 'Grackle'; duration = 3};
	{id = 'thief', patron = 'Thief'; duration = 2, cycle = 6};
	{id = 'egret', patron = 'Egret'; duration = 3};
	{id = 'chipmunk', patron = 'Chipmunk'; duration = 2};
	{id = 'ibis', patron = 'Ibis'; duration = 3, cycle = 7};
	{id = 'fox', patron = 'Fox'; duration = 3, cycle = 8};
	{id = 'cfox', patron = 'Cowled Fox'; duration = 3, cycle = 9};
	{id = 'tern', patron = 'Tern'; duration = 3, cycle = 3};
	{id = 'pilgrim', patron = 'Pilgrim'; duration = 3, cycle = 2};

	-- every 7 cycles, several extra signs occur in short succession
	{id = 'csteer', patron = 'Crowned Steer'; duration = 1, cycle = 7};
	{id = 'cmoose', patron = 'Crowned Moose'; duration = 1, cycle = 7};
	{id = 'cgoat', patron = 'Crowned Goat'; duration = 1, cycle = 7};
	{id = 'cweasel', patron = 'Crowned Weasel'; duration = 1, cycle = 7};
	{id = 'wolfprince', patron = 'Wolf-Prince'; duration = 2, cycle = 7};
}