sorcery  Artifact [15046a03f7]

Artifact 15046a03f7a9330598dddf18235aaa7324b2a32c61e7b77337a34bb208885f67:

  • File data/signs.lua — part of check-in [3f6a913e4e] at 2020-09-29 12:40:28 on branch trunk — * remove former hacky registration system, replace with consistent and flexible API; rewrite metal/gem generation to take advantage of this new API; tweaks to init system to enable world-local tweaks to lore and sorcery behavior * initial documentation commit * initial steps towards calendar - add default date format, astrolabe; prepare infra for division/melding/transmutation spells, various tweaks and fixes (user: lexi, size: 1704) [annotate] [blame] [check-ins using]

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

return {
	{id = 'minx', patron = 'Minx'; duration = 4 };
	{id = 'ocelot', patron = 'Ocelot'; duration = 3, cycle = 3};
	{id = 'wyvern', patron = 'Wyvern'; duration = 2, cycle = 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 = 'glamb', patron = 'Golden Lamb'; duration = 6, cycle = 5};
	{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};
}