1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2025-06-28 22:36:45 +02:00

added food groups to make items more compatible with other mods

This commit is contained in:
TenPlus1
2018-03-12 16:45:15 +00:00
parent bb208f8d5b
commit 77198100f3
24 changed files with 44 additions and 15 deletions

View File

@ -20,7 +20,7 @@ else
type = "fixed",
fixed = {-0.2, -0.5, -0.2, 0.2, 0.2, 0.2}
},
groups = {fleshy = 3, dig_immediate = 3, flammable = 2},
groups = {food_banana = 1, fleshy = 3, dig_immediate = 3, flammable = 2},
on_use = minetest.item_eat(2),
sounds = default.node_sound_leaves_defaults(),
})
@ -68,7 +68,7 @@ else
type = "fixed",
fixed = {-0.2, -0.3, -0.2, 0.2, 0.2, 0.2}
},
groups = {fleshy = 3, dig_immediate = 3, flammable = 2},
groups = {food_orange = 1, fleshy = 3, dig_immediate = 3, flammable = 2},
on_use = minetest.item_eat(4),
sounds = default.node_sound_leaves_defaults(),
})
@ -118,6 +118,7 @@ else
description = "Strawberry",
inventory_image = "strawberry.png",
wield_image = "strawberry.png",
groups = {food_strawberry = 1, flammable = 2},
on_use = minetest.item_eat(1),
})