@@ -64,8 +64,9 @@ cracky = 3; }; _sorcery = { ley = { mode = 'signal'; power = 100 }; + recipe = { note = 'Conducts up to 100 thaum' }; }; }) minetest.register_craft { output = 'sorcery:conduit 4'; @@ -163,9 +164,10 @@ choppy = 1; sorcery_ley_device = 1; }; _sorcery = { - ley = { mode = 'signal'; power = 50; } + ley = { mode = 'signal'; power = 50 }; + recipe = { note = 'Conducts up to 50 thaum' }; }; tiles = tiles; }) minetest.register_craft { @@ -209,9 +211,9 @@ sorcery_ley_cable = 1; }; _sorcery = { ley = { mode = 'signal', power = metal.conduct }; - recipe = { note = 'Conducts up to ' .. metal.conduct .. ' thaum/sec'; }; + recipe = { note = 'Conducts up to ' .. metal.conduct .. ' thaum'; }; }; sunlight_propagates = true; node_box = { type = 'connected'; @@ -323,8 +325,11 @@ affinity = function(pos) return sorcery.ley.estimate(pos).aff end; }; + recipe = { + note = 'Captures radiant force and suffuses it through distribution net. Energy production varies with local leyline strength.'; + }; }; }) end @@ -787,7 +792,10 @@ local meta = minetest.get_meta(pos) return meta:get_float('power') * delta; end; }; + recipe = { + note = 'Temporarily provide up to ' ..tostring(constants.generator_max_energy_output) .. ' thaum of ley-force from heat by burning fuel'; + }; }; }) end