mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-04 17:40:26 +01:00
16fd682ebb
- Added doors:trapdoor_cherry and its craft recipe - Removed useless door textures (not following naming convention, so not used in code since the last mff_game update) - Added missing homedecor_models - Re-added vines:shears needed for vines' roots
16 lines
410 B
Lua
Executable File
16 lines
410 B
Lua
Executable File
minetest.register_tool("vines:shears", {
|
|
description = "Shears for Vines",
|
|
inventory_image = "vines_shears.png",
|
|
wield_image = "vines_shears.png",
|
|
stack_max = 1,
|
|
max_drop_level=3,
|
|
tool_capabilities = {
|
|
full_punch_interval = 1.0,
|
|
max_drop_level=0,
|
|
groupcaps={
|
|
snappy={times={[3]=0.2}, maxwear=0.05, maxlevel=3},
|
|
wool={times={[3]=0.2}, maxwear=0.05, maxlevel=3}
|
|
}
|
|
},
|
|
})
|