1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-14 08:40:23 +02:00
server-nalc/mods/plantlife_modpack/vines/shear.lua
LeMagnesium 16fd682ebb Modified doors, vines, homedecor, etc...
- 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
2015-04-01 21:42:29 +02:00

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}
}
},
})