1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2025-07-02 16:20:42 +02:00

tweak crop drops #2

This commit is contained in:
tenplus1
2025-04-12 15:43:23 +01:00
parent 701bbb89b5
commit 44e2b1582b
23 changed files with 43 additions and 58 deletions

View File

@ -55,6 +55,11 @@ minetest.register_node("farming:artichoke_3", table.copy(def))
-- stage 4
def.tiles = {"farming_artichoke_4.png"}
def.drop = {
items = {
{items = {"farming:artichoke"}, rarity = 1}
}
}
minetest.register_node("farming:artichoke_4", table.copy(def))
-- stage 5 (final)
@ -97,6 +102,6 @@ minetest.register_decoration({
persist = 0.6
},
y_min = 1, y_max = 13,
decoration = "farming:artichoke_5",
decoration = "farming:artichoke_4",
spawn_by = "group:tree", num_spawn_by = 1
})