1
0
mirror of https://github.com/mt-mods/plantlife_modpack.git synced 2025-07-20 00:30:30 +02:00

Vines update

This commit is contained in:
bas080
2015-02-15 06:00:57 +01:00
committed by Vanessa Ezekowitz
parent 0c6db75383
commit e049492b59
32 changed files with 433 additions and 441 deletions

15
vines/shear.lua Normal file
View File

@ -0,0 +1,15 @@
minetest.register_tool("vines:shears", {
description = "Shears",
inventory_image = "vines_shears.png",
wield_image = "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}
}
},
})