Differences From Artifact [7838002de4]:
- File keg.lua — part of check-in [01f4ba8ddc] at 2021-06-28 15:38:59 on branch trunk — more work on kegs and liquid, add taps and troughs for tapping trees and obtaining sap, add tree lore, add infuser module system, various tweaks, fix up bugged itemclass logic, add scaffold for crafting extension mechanism (user: lexi, size: 6180) [annotate] [blame] [check-ins using]
To Artifact [5c653d450d]:
- File keg.lua — part of check-in [c71731cf58] at 2021-07-03 02:25:42 on branch trunk — many bug fixers, some minor refactoring, allow non-drinkable potions to be empowered in various ways, allow gods to be petitioned for recipes (next up: cookbooks!) (user: lexi, size: 6220) [annotate] [blame] [check-ins using]
185 186 187 188 189 190 191 192 193 194 195 196 197 |
}) minetest.register_craft { output = "sorcery:keg"; recipe = { {'','screwdriver:screwdriver',''}; {'sorcery:screw_bronze', 'sorcery:tap', 'sorcery:screw_bronze'}; {'', 'xdecor:barrel', ''}; }; replacements = { {'screwdriver:screwdriver', 'screwdriver:screwdriver'}; }; } |
| |
185 186 187 188 189 190 191 192 193 194 195 196 197 |
}) minetest.register_craft { output = "sorcery:keg"; recipe = { {'','screwdriver:screwdriver',''}; {'sorcery:screw_bronze', 'sorcery:tap', 'sorcery:screw_bronze'}; {'sorcery:screw_bronze', 'xdecor:barrel', 'sorcery:screw_bronze'}; }; replacements = { {'screwdriver:screwdriver', 'screwdriver:screwdriver'}; }; } |