Move slimeball to mcl_mobitems
This commit is contained in:
parent
3cbb39b1fb
commit
296520c06c
10 changed files with 27 additions and 26 deletions
|
@ -228,6 +228,12 @@ minetest.register_craftitem("mcl_mobitems:shulker_shell", {
|
|||
groups = { craftitem = 1 },
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_mobitems:slimeball", {
|
||||
description = "Slimeball",
|
||||
inventory_image = "mcl_mobitems_slimeball.png",
|
||||
groups = { craftitem = 1 },
|
||||
})
|
||||
|
||||
minetest.register_tool("mcl_mobitems:carrot_on_a_stick", {
|
||||
description = "Carrot on a Stick",
|
||||
wield_image = "mcl_mobitems_carrot_on_a_stick.png",
|
||||
|
@ -235,6 +241,7 @@ minetest.register_tool("mcl_mobitems:carrot_on_a_stick", {
|
|||
groups = { transport = 1 },
|
||||
})
|
||||
|
||||
|
||||
-----------
|
||||
-- Crafting
|
||||
-----------
|
||||
|
@ -289,7 +296,7 @@ minetest.register_craft({
|
|||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "mcl_mobitems:magma_cream",
|
||||
recipe = {"mcl_mobitems:blaze_powder", "mesecons_materials:glue"},
|
||||
recipe = {"mcl_mobitems:blaze_powder", "mcl_mobitems:slimeball"},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
@ -326,4 +333,15 @@ minetest.register_craft({
|
|||
burntime = 120,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mcl_mobitems:slimeball 9',
|
||||
recipe = {{"mcl_core:slimeblock"}},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_core:slimeblock",
|
||||
recipe = {{"mcl_mobitems:slimeball","mcl_mobitems:slimeball","mcl_mobitems:slimeball",},
|
||||
{"mcl_mobitems:slimeball","mcl_mobitems:slimeball","mcl_mobitems:slimeball",},
|
||||
{"mcl_mobitems:slimeball","mcl_mobitems:slimeball","mcl_mobitems:slimeball",}},
|
||||
})
|
||||
|
||||
|
|
BIN
mods/mcl_mobitems/textures/mcl_mobitems_slimeball.png
Normal file
BIN
mods/mcl_mobitems/textures/mcl_mobitems_slimeball.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 310 B |
Loading…
Add table
Add a link
Reference in a new issue