Add shulker shell and dragon's breath

This commit is contained in:
Wuzzy 2017-02-06 20:54:35 +01:00
parent 97bd4fe734
commit b85683ecdd
4 changed files with 7 additions and 3 deletions

View File

@ -222,6 +222,12 @@ minetest.register_craftitem("mcl_mobitems:rabbit_stew", {
groups = { food = 3, eatable = 10 },
})
minetest.register_craftitem("mcl_mobitems:shulker_shell", {
description = "Shulker Shell",
inventory_image = "mcl_mobitems_shulker_shell.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",

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -43,12 +43,10 @@ minetest.register_craft({
}
})
-- TODO: Get texture
--[[
minetest.register_craftitem("mcl_potions:dragon_breath", {
description = "Dragon's Breath",
wield_image = "mcl_potions_dragon_breath.png",
inventory_image = "mcl_potions_dragon_breath.png",
groups = { brewitem = 1 },
stack_max = 64,
})
]]

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB