mirror of
https://github.com/minetest/minetest_game.git
synced 2024-11-05 23:33:51 +01:00
Tweak mushroom drops
-> Don't always drop the main mushroom (allowed endless spore generation loop before) -> Drop less spores, before you got lots of spores
This commit is contained in:
parent
6194f9ffea
commit
7066a6a0dd
@ -145,11 +145,12 @@ for _, m in pairs(mushrooms_datas) do
|
||||
buildable_to = true,
|
||||
groups = {snappy = 3, flammable = 3, attached_node = 1},
|
||||
drop = {
|
||||
max_items = 1,
|
||||
items = {
|
||||
{items = {"flowers:mushroom_spores_" .. name}, rarity = 2,},
|
||||
{items = {"flowers:mushroom_spores_" .. name}, rarity = 2,},
|
||||
{items = {"flowers:mushroom_spores_" .. name}, rarity = 2,},
|
||||
{items = {"flowers:mushroom_" .. name},},
|
||||
{items = {"flowers:mushroom_" .. name}, rarity = 2,},
|
||||
{items = {"flowers:mushroom_spores_" .. name}, rarity = 3,},
|
||||
{items = {"flowers:mushroom_spores_" .. name .. " 2"}, rarity = 2,},
|
||||
{items = {"flowers:mushroom_spores_" .. name .. " 3"}, rarity = 2,},
|
||||
},
|
||||
},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
|
Loading…
Reference in New Issue
Block a user