upload the code for the suspicious stew(s)

This commit is contained in:
chmodsayshello 2022-01-01 12:15:04 +00:00
parent ff433e65fe
commit b6567ee11c
1 changed files with 131 additions and 0 deletions

View File

@ -0,0 +1,131 @@
-- ____________________________
--_________________________________________/ Variables & Functions \_________
local eat = minetest.item_eat(6, "mcl_core:bowl") --6 hunger points, player receives mcl_core:bowl after eating
local function poison(itemstack, placer, pointed_thing)
local hunger = mcl_hunger.get_hunger(placer)
if hunger < 20 then
mcl_potions.poison_func(placer, 1, 12)
return eat(itemstack, placer, pointed_thing)
end
end
local function hunger(itemstack, placer, pointed_thing, player)
local hunger = mcl_hunger.get_hunger(placer)
if hunger < 20 then
return eat(itemstack, placer, pointed_thing)
end
end
local function jump_boost(itemstack, placer, pointed_thing)
local hunger = mcl_hunger.get_hunger(placer)
if hunger < 20 then
mcl_potions.leaping_func(placer, 1, 6)
return eat(itemstack, placer, pointed_thing)
end
end
local function regeneration(itemstack, placer, pointed_thing)
local hunger = mcl_hunger.get_hunger(placer)
if hunger < 20 then
mcl_potions.regeneration_func(placer, 1, 8)
return eat(itemstack, placer, pointed_thing)
end
end
local function night_vision(itemstack, placer, pointed_thing)
local hunger = mcl_hunger.get_hunger(placer)
if hunger < 20 then
mcl_potions.night_vision_func(placer, 1, 5)
return eat(itemstack, placer, pointed_thing)
end
end
-- ________________________
--_________________________________________/ Item Regestration \_________________
minetest.register_craftitem("mcl_mushrooms:poison_stew",{
description = "Suspicious Stew",
inventory_image = "suspicious_stew.png",
stack_max = 1,
on_place = poison,
groups = { food = 2, eatable = 4, not_in_creative_inventory=0,},
_mcl_saturation = 7.2,
})
minetest.register_craftitem("mcl_mushrooms:hunger_stew",{
description = "Suspicious Stew",
inventory_image = "suspicious_stew.png",
stack_max = 1,
on_place = hunger,
groups = { food = 2, eatable = 4, not_in_creative_inventory=0,},
_mcl_saturation = 7.2,
})
minetest.register_craftitem("mcl_mushrooms:jump_boost_stew",{
description = "Suspicious Stew",
inventory_image = "suspicious_stew.png",
stack_max = 1,
on_place = jump_boost,
groups = { food = 2, eatable = 4, not_in_creative_inventory=0,},
_mcl_saturation = 7.2,
})
minetest.register_craftitem("mcl_mushrooms:regneration_stew",{
description = "Suspicious Stew",
inventory_image = "suspicious_stew.png",
stack_max = 1,
on_place = regeneration,
groups = { food = 2, eatable = 4, not_in_creative_inventory=0,},
_mcl_saturation = 7.2,
})
minetest.register_craftitem("mcl_mushrooms:night_vision_stew",{
description = "Suspicious Stew",
inventory_image = "suspicious_stew.png",
stack_max = 1,
on_place = night_vision,
groups = { food = 2, eatable = 4, not_in_creative_inventory=0,},
_mcl_saturation = 7.2,
})
-- ____________________________
--______________________________________/ Using mcl_hunger API \______________________
mcl_hunger.register_food("mcl_sus_stew:hunger_stew",6, "mcl_core:bowl", 3.5, 0, 100) -- Register it using mcl_hunger so i can use its poison feature
-- ______________
--_________________________________________/ Crafts \________________________________
minetest.register_craft({
output = "mcl_mushrooms:poison_stew",
recipe = { {"mcl_mushrooms:mushroom_red", "mcl_mushrooms:mushroom_brown"}, {"mcl_core:bowl", "mcl_flowers:tulip_white"} },
})
minetest.register_craft({
output = "mcl_mushrooms:hunger_stew",
recipe = { {"mcl_mushrooms:mushroom_red", "mcl_mushrooms:mushroom_brown"}, {"mcl_core:bowl", "mcl_flowers:blue_orchid"} },
})
minetest.register_craft({
output = "mcl_mushrooms:hunger_stew",
recipe = { {"mcl_mushrooms:mushroom_red", "mcl_mushrooms:mushroom_brown"}, {"mcl_core:bowl", "mcl_flowers:dandelion"} },
})
minetest.register_craft({
output = "mcl_mushrooms:jump_boost_stew",
recipe = { {"mcl_mushrooms:mushroom_red", "mcl_mushrooms:mushroom_brown"}, {"mcl_core:bowl", "mcl_flowers:peony"} },
})
minetest.register_craft({
output = "mcl_mushrooms:regeneration_stew",
recipe = { {"mcl_mushrooms:mushroom_red", "mcl_mushrooms:mushroom_brown"}, {"mcl_core:bowl", "mcl_flowers:oxeye_daisy"} },
})
minetest.register_craft({
output = "mcl_mushrooms:night_vision_stew",
recipe = { {"mcl_mushrooms:mushroom_red", "mcl_mushrooms:mushroom_brown"}, {"mcl_core:bowl", "mcl_flowers:poppy"} },
})