Differences From Artifact [c84e6c472a]:
- File data/gems.lua — part of check-in [f7f6898cbd] at 2020-08-21 11:52:17 on branch trunk — add force field emitters, generators, rework leyline distribution algorithm, add utility function for automatically dumping out inventories when an item is dug, add draconium and tyrannium alloys (tentatively), various fixes (user: lexi, size: 1689) [annotate] [blame] [check-ins using]
To Artifact [0836376152]:
- File data/gems.lua — part of check-in [f165d9e39f] at 2020-09-24 23:07:33 on branch trunk — add blood god, add gravitator, add hand-drawn ore images, add mana hud display for enchanted items, various tweaks and enhancements (user: lexi, size: 1705) [annotate] [blame] [check-ins using]
32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
}; }; mese = { foreign = 'default:mese_crystal'; foreign_shard = 'default:mese_crystal_fragment'; tone = {255,253,94}; energysource = 5; maxenergy = 600; items = default_items('mese'); tools = true, armor = true; randomfind = false; slots = { {affinity = {'praxic'}, confluence = 1}; {affinity = {'praxic'}, confluence = 0.5}; |
> |
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
};
};
mese = {
foreign = 'default:mese_crystal';
foreign_shard = 'default:mese_crystal_fragment';
tone = {255,253,94};
energysource = 5;
hardness = 6;
maxenergy = 600;
items = default_items('mese');
tools = true, armor = true;
randomfind = false;
slots = {
{affinity = {'praxic'}, confluence = 1};
{affinity = {'praxic'}, confluence = 0.5};
|