I cant... to much stuff changed. I lost track. Everything is in chaos.
Schematics broke... please, help me.
This commit is contained in:
62
mods/ITEMS/pyutest_tools/api.lua
Normal file
62
mods/ITEMS/pyutest_tools/api.lua
Normal file
@@ -0,0 +1,62 @@
|
||||
PyuTest.make_item = function (nsname, desc, groups, wield_image, extra_conf)
|
||||
local conf = {
|
||||
description = Translate(desc),
|
||||
wield_image = wield_image,
|
||||
inventory_image = wield_image,
|
||||
groups = groups
|
||||
}
|
||||
|
||||
if extra_conf ~= nil then
|
||||
for k, v in pairs(extra_conf) do
|
||||
conf[k] = v
|
||||
end
|
||||
end
|
||||
|
||||
minetest.register_craftitem(nsname, conf)
|
||||
end
|
||||
|
||||
PyuTest.make_tool = function (nsname, desc, groups, wield_image, extra_conf)
|
||||
local conf = {
|
||||
description = Translate(desc),
|
||||
wield_image = wield_image,
|
||||
inventory_image = wield_image,
|
||||
groups = PyuTest.util.tableconcat(groups, {
|
||||
tool = 1
|
||||
})
|
||||
}
|
||||
|
||||
if extra_conf ~= nil then
|
||||
for k, v in pairs(extra_conf) do
|
||||
conf[k] = v
|
||||
end
|
||||
end
|
||||
|
||||
minetest.register_tool(nsname, conf)
|
||||
end
|
||||
|
||||
PyuTest.make_sword = function (nsname, desc, texture, damage, durability, atkspeed)
|
||||
PyuTest.make_tool(nsname, desc, {
|
||||
weapon = 1
|
||||
}, texture, {
|
||||
stack_max = 1,
|
||||
tool_capabilities = PyuTest.tool_caps({
|
||||
uses = durability / 2,
|
||||
attack_uses = durability,
|
||||
damage_groups = {fleshy = damage or 3},
|
||||
full_punch_interval = atkspeed or 1
|
||||
})
|
||||
})
|
||||
end
|
||||
|
||||
PyuTest.make_food = function (nsname, desc, wield_image, health_fill, extra_code)
|
||||
local code = extra_code or function()end
|
||||
|
||||
PyuTest.make_item(nsname, desc, {}, wield_image, {
|
||||
on_use = function (itemstack, user, pt)
|
||||
if user == nil then return end
|
||||
minetest.sound_play({name = "eat", gain = 1}, {pos = user:get_pos(), start_time = 1.2})
|
||||
minetest.do_item_eat(health_fill, "", itemstack, user, pt)
|
||||
code()
|
||||
end
|
||||
})
|
||||
end
|
Reference in New Issue
Block a user