Differences From Artifact [61997cebcf]:
- File harvester.lua — part of check-in [72eebac4bc] at 2020-09-26 18:49:51 on branch trunk — add writing stand for editing codexes; add scissors, ink, erasure fluid, pens; touch up codex UI; add many recipe notes; add craft divination type for crafttools; defuckulate fucktarded crafttool impl; enhance table library with missing features like lua's table.unpack; many bug fixes and enhancements; blood for the blood god (user: lexi, size: 4390) [annotate] [blame] [check-ins using]
To Artifact [de45db35b3]:
- File harvester.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: 4390) [annotate] [blame] [check-ins using]
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
]])
end;
on_metadata_inventory_put = update_inv;
on_metadata_inventory_move = update_inv;
_sorcery = {
recipe = {
info = "Standalone recharger for wands, amulets, and enchanted tools that draws on the ambient force from the local leylines";
};
};
})
minetest.register_craftitem('sorcery:harvester_receptacle', {
description = 'Harvester Receptacle';
inventory_image = 'sorcery_harvester_receptacle.png';
|
| |
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
]])
end;
on_metadata_inventory_put = update_inv;
on_metadata_inventory_move = update_inv;
_sorcery = {
recipe = {
note = "Standalone recharger for wands, amulets, and enchanted tools that draws on the ambient force from the local leylines";
};
};
})
minetest.register_craftitem('sorcery:harvester_receptacle', {
description = 'Harvester Receptacle';
inventory_image = 'sorcery_harvester_receptacle.png';
|