forked from mad-star-studio/Voxelis
Tap tap
This commit is contained in:
parent
f5877a23cf
commit
090f81b833
107 changed files with 1018 additions and 1018 deletions
37
mods/ITEMS/vox_core/mats.lua
Normal file
37
mods/ITEMS/vox_core/mats.lua
Normal file
|
@ -0,0 +1,37 @@
|
|||
-- Ash
|
||||
minetest.register_craftitem("vox_core:ash", {
|
||||
description = "Ash",
|
||||
inventory_image = "ash.png",
|
||||
groups = {crumbly = 3},
|
||||
})
|
||||
|
||||
-- Salt
|
||||
minetest.register_craftitem("vox_core:salt", {
|
||||
description = "Salt",
|
||||
inventory_image = "salt.png",
|
||||
})
|
||||
|
||||
-- Lye
|
||||
minetest.register_craftitem("vox_core:lye", {
|
||||
description = "Lye",
|
||||
inventory_image = "lye.png",
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "vox_core:lye",
|
||||
recipe = {
|
||||
{"vox_core:ash", "bucket:water_bucket"},
|
||||
},
|
||||
replacements = {{"bucket:water_bucket", "bucket:bucket"}},
|
||||
})
|
||||
|
||||
-- Soap
|
||||
minetest.register_craftitem("vox_core:soap", {
|
||||
description = "Soap",
|
||||
inventory_image = "soap.png",
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "vox_core:soap",
|
||||
recipe = {
|
||||
{"vox_mobdrops:fat", "vox_core:lye", "vox_core:salt"},
|
||||
},
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue