forked from mtcontrib/minetest_hudbars
Add optional healing for items
Author: tenplus1
This commit is contained in:
parent
bce8036dd4
commit
aaf234298f
31
hunger.lua
31
hunger.lua
|
@ -18,29 +18,42 @@ local function poisenp(tick, time, time_left, player)
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function hud.item_eat(hunger_change, replace_with_item, poisen)
|
function hud.item_eat(hunger_change, replace_with_item, poisen, heal)
|
||||||
return function(itemstack, user, pointed_thing)
|
return function(itemstack, user, pointed_thing)
|
||||||
if itemstack:take_item() ~= nil and user ~= nil then
|
if itemstack:take_item() ~= nil and user ~= nil then
|
||||||
local name = user:get_player_name()
|
local name = user:get_player_name()
|
||||||
local h = tonumber(hud.hunger[name])
|
local h = tonumber(hud.hunger[name])
|
||||||
h=h+hunger_change
|
local hp = user:get_hp()
|
||||||
if h>30 then h=30 end
|
|
||||||
hud.hunger[name]=h
|
-- Saturation
|
||||||
hud.set_hunger(user)
|
if h < 30 and hunger_change then
|
||||||
itemstack:add_item(replace_with_item) -- note: replace_with_item is optional
|
h = h + hunger_change
|
||||||
--sound:eat
|
if h > 30 then h = 30 end
|
||||||
|
hud.hunger[name] = h
|
||||||
|
hud.set_hunger(user)
|
||||||
|
end
|
||||||
|
-- Healing
|
||||||
|
if hp < 20 and heal then
|
||||||
|
hp = hp + heal
|
||||||
|
if hp > 20 then hp = 20 end
|
||||||
|
user:set_hp(hp)
|
||||||
|
end
|
||||||
|
-- Poison
|
||||||
if poisen then
|
if poisen then
|
||||||
poisenp(1.0, poisen, 0, user)
|
poisenp(1.0, poisen, 0, user)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--sound:eat
|
||||||
|
itemstack:add_item(replace_with_item)
|
||||||
end
|
end
|
||||||
return itemstack
|
return itemstack
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function overwrite(name, hunger_change, replace_with_item, poisen)
|
local function overwrite(name, hunger_change, replace_with_item, poisen, heal)
|
||||||
local tab = minetest.registered_items[name]
|
local tab = minetest.registered_items[name]
|
||||||
if tab == nil then return end
|
if tab == nil then return end
|
||||||
tab.on_use = hud.item_eat(hunger_change, replace_with_item, poisen)
|
tab.on_use = hud.item_eat(hunger_change, replace_with_item, poisen, heal)
|
||||||
minetest.registered_items[name] = tab
|
minetest.registered_items[name] = tab
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user