2020-10-09 20:11:21 +02:00
|
|
|
local full_description = "Colorful Pickaxe\nThe best pick."
|
|
|
|
minetest.register_tool("unittests:colorful_pick", {
|
|
|
|
description = full_description,
|
|
|
|
inventory_image = "basetools_mesepick.png",
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 1.0,
|
|
|
|
max_drop_level=3,
|
|
|
|
groupcaps={
|
|
|
|
cracky={times={[1]=2.0, [2]=1.0, [3]=0.5}, uses=20, maxlevel=3},
|
|
|
|
crumbly={times={[1]=2.0, [2]=1.0, [3]=0.5}, uses=20, maxlevel=3},
|
|
|
|
snappy={times={[1]=2.0, [2]=1.0, [3]=0.5}, uses=20, maxlevel=3}
|
|
|
|
},
|
|
|
|
damage_groups = {fleshy=4},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_chatcommand("item_description", {
|
|
|
|
param = "",
|
|
|
|
description = "Show the short and full description of the wielded item.",
|
|
|
|
func = function(name)
|
|
|
|
local player = minetest.get_player_by_name(name)
|
|
|
|
local item = player:get_wielded_item()
|
|
|
|
return true, string.format("short_description: %s\ndescription: %s",
|
|
|
|
item:get_short_description(), item:get_description())
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
2021-12-18 20:36:43 +01:00
|
|
|
local function test_short_desc()
|
2021-02-17 19:53:44 +01:00
|
|
|
local function get_short_description(item)
|
|
|
|
return ItemStack(item):get_short_description()
|
|
|
|
end
|
|
|
|
|
2020-10-09 20:11:21 +02:00
|
|
|
local stack = ItemStack("unittests:colorful_pick")
|
|
|
|
assert(stack:get_short_description() == "Colorful Pickaxe")
|
2021-02-17 19:53:44 +01:00
|
|
|
assert(get_short_description("unittests:colorful_pick") == "Colorful Pickaxe")
|
|
|
|
assert(minetest.registered_items["unittests:colorful_pick"].short_description == nil)
|
2020-10-09 20:11:21 +02:00
|
|
|
assert(stack:get_description() == full_description)
|
|
|
|
assert(stack:get_description() == minetest.registered_items["unittests:colorful_pick"].description)
|
|
|
|
|
|
|
|
stack:get_meta():set_string("description", "Hello World")
|
2021-02-17 19:53:44 +01:00
|
|
|
assert(stack:get_short_description() == "Hello World")
|
2020-10-09 20:11:21 +02:00
|
|
|
assert(stack:get_description() == "Hello World")
|
2021-02-17 19:53:44 +01:00
|
|
|
assert(get_short_description(stack) == "Hello World")
|
|
|
|
assert(get_short_description("unittests:colorful_pick") == "Colorful Pickaxe")
|
2020-10-09 20:11:21 +02:00
|
|
|
|
|
|
|
stack:get_meta():set_string("short_description", "Foo Bar")
|
|
|
|
assert(stack:get_short_description() == "Foo Bar")
|
|
|
|
assert(stack:get_description() == "Hello World")
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
2021-12-18 20:36:43 +01:00
|
|
|
unittests.register("test_short_desc", test_short_desc)
|