sorcery  Diff

Differences From Artifact [15046a03f7]:

  • 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]

To Artifact [8fadd50165]:

  • 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]

1
2
3
4
5




6
7





8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
-- 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};




|
>
>
>
>

|
>
>
>
>
>







<







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

24
25
26
27
28
29
30
-- 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};