Add a recipe for weak ice

This commit is contained in:
IamPyu 2024-12-04 16:22:27 -06:00
parent bfcaf2d5bb
commit 9e804cf945
2 changed files with 9 additions and 0 deletions

View File

@ -18,6 +18,7 @@ Game Changes:
- Added Bones to the `stick` group, why not?
- Removed Beaches from IceSpikes biome
- Added `pickaxe` and `axe` groups
- Added a crafting recipe for Weak Ice
Code Changes:

View File

@ -116,3 +116,11 @@ core.register_craft({
{ "pyutest_tools:wheat", "pyutest_tools:wheat" }
}
})
core.register_craft({
output = "pyutest_blocks:weak_ice",
recipe = {
"group:pickaxe", "pyutest_blocks:ice_block"
},
type = "shapeless"
})