Add optional healing for items

Author:    tenplus1
This commit is contained in:
tenplus1 2014-08-05 05:01:24 +02:00 committed by BlockMen
parent bce8036dd4
commit aaf234298f
1 changed files with 22 additions and 9 deletions

View File

@ -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