sorcery  Diff

Differences From Artifact [c466f67e6e]:

  • File data/transmutation.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: 410) [annotate] [blame] [check-ins using]

To Artifact [75fdeb1a1c]:

  • File data/transmutation.lua — part of check-in [96c5289a2a] at 2020-10-21 03:35:35 on branch trunk — add rune forges, runes, amulet frames, write sacrifice spell, touch up amulet graphics, enable enchantment of amulets (though spells cannot yet be cast), defuckulate syncresis core icon, unfuckitize sneaky leycalc bug that's probably been the cause of some long-standing wackiness, add item classes, add some more textures, disbungle various other asstastrophes, remove sneaky old debug code, improve library code, add utility for uploading merge requests (user: lexi, size: 581) [annotate] [blame] [check-ins using]

5
6
7
8
9
10
11
12









13
14
15

return {
	gold = {
		[-2] = {'brass', 5};
		[-1] = {'silver', 3}; -- one chance in three of silver - undesirable
		[1] = {'lithium', 2};
		[2] = {'cobalt', 3};
		[3] = {'iridium', 50};









		fallback = 1;
	};
}







|
>
>
>
>
>
>
>
>
>



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

return {
	gold = {
		[-2] = {'brass', 5};
		[-1] = {'silver', 3}; -- one chance in three of silver - undesirable
		[1] = {'lithium', 2};
		[2] = {'cobalt', 3};
		[3] = {'iridium', 20};
		[4] = {'tyrannium', 100};
		fallback = 1;
	};
	silver = {
		[-2] = {'tin',4};
		[-1] = {'brass',3};
		[1] = {'electrum',2};
		[2] = {'gold',4};
		[3] = {'platinum',10};
		fallback = 1;
	};
}