add recipies

master
Elkien3 2020-09-06 19:16:40 -05:00
parent a3691547ba
commit 6c39b4f7d1
2 changed files with 18 additions and 0 deletions

2
mods/recipes/depends.txt Normal file
View File

@ -0,0 +1,2 @@
technic
bucket

16
mods/recipes/init.lua Normal file
View File

@ -0,0 +1,16 @@
minetest.register_craft({
type = "shapeless",
output = "default:clay",
recipe = {"technic:stone_dust", "default:dirt", "bucket:bucket_water", "group:sand"},
replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}},
})
minetest.register_craft({
type = "shapeless",
output = "default:bronze_ingot 9",
recipe = {
"default:bronzeblock",
},
})