Add several craftitems
This commit is contained in:
parent
452ef75e8a
commit
68e773f6e7
20 changed files with 147 additions and 9 deletions
22
mods/mcl_potions/init.lua
Normal file
22
mods/mcl_potions/init.lua
Normal file
|
@ -0,0 +1,22 @@
|
|||
minetest.register_craftitem("mcl_potions:fermented_spider_eye", {
|
||||
description = "Fermented Spider Eye",
|
||||
wield_image = "mcl_potions_spider_eye_fermented.png",
|
||||
inventory_image = "mcl_potions_spider_eye_fermented.png",
|
||||
stack_max = 64,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "mcl_potions:fermented_spider_eye",
|
||||
recipe = { "farming:mushroom_brown", "default:sugar", "mobs:spider_eye" },
|
||||
})
|
||||
|
||||
-- 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",
|
||||
stack_max = 64,
|
||||
})
|
||||
]]
|
Loading…
Add table
Add a link
Reference in a new issue