Differences From Artifact [f5d6bba856]:
- File coins.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: 4935) [annotate] [blame] [check-ins using]
To Artifact [2702148c37]:
- File coins.lua — part of check-in [9ef6cbcf31] at 2020-08-28 14:08:57 on branch trunk — add recipes, cookbooks, disassembly (to create recipes from items), attunement, farcasters, and portals; various edits for bug fixes and improvements (user: lexi, size: 4957) [annotate] [blame] [check-ins using]
84 84 } minetest.register_node('sorcery:coin_press', { 85 85 description = "Coin Press"; 86 86 drawtype = 'mesh'; 87 87 mesh = 'sorcery-coinpress.obj'; 88 88 sunlight_propagates = true; 89 89 paramtype = 'light'; 90 90 paramtype2 = 'facedir'; 91 - groups = { cracky = 2; oddly_breakable_by_hand = 2; }; 91 + groups = { cracky = 2; oddly_breakable_by_hand = 2; sorcery_metallurgy = 1}; 92 92 tiles = { 93 93 'default_wood.png'; 94 94 'default_stone.png'; 95 95 'default_copper_block.png'; 96 96 'default_steel_block.png'; 97 97 }; 98 98 selection_box = hitbox;