Move string and bone to mcl_mobitems
This commit is contained in:
parent
357b6e01cb
commit
76cf02909b
12 changed files with 34 additions and 42 deletions
|
@ -120,6 +120,20 @@ minetest.register_craftitem("mcl_mobitems:spider_eye", {
|
|||
stack_max = 64,
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_mobitems:bone", {
|
||||
description = "Bone",
|
||||
inventory_image = "mcl_mobitems_bone.png",
|
||||
stack_max = 64,
|
||||
groups = { craftitem=1 },
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_mobitems:string",{
|
||||
description = "String",
|
||||
inventory_image = "mcl_mobitems_string.png",
|
||||
stack_max = 64,
|
||||
groups = { craftitem = 1 },
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_mobitems:blaze_rod", {
|
||||
description = "Blaze Rod",
|
||||
wield_image = "mcl_mobitems_blaze_rod.png",
|
||||
|
|
BIN
mods/mcl_mobitems/textures/mcl_mobitems_bone.png
Normal file
BIN
mods/mcl_mobitems/textures/mcl_mobitems_bone.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 256 B |
BIN
mods/mcl_mobitems/textures/mcl_mobitems_string.png
Normal file
BIN
mods/mcl_mobitems/textures/mcl_mobitems_string.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 230 B |
Loading…
Add table
Add a link
Reference in a new issue