forked from cacklingfiend/lignumis
Remove randomness from plants
This commit is contained in:
parent
1a30b6dad6
commit
2de7af444b
3 changed files with 9 additions and 4 deletions
|
|
@ -145,8 +145,8 @@ plant.minable = {
|
|||
mining_particle = "copper-ore-particle",
|
||||
mining_time = 2,
|
||||
results = {
|
||||
{ type = "item", name = "moist-stromatolite-remnant", amount_min = 23, amount_max = 37 },
|
||||
{ type = "item", name = "gold-bacteria", amount_min = 13, amount_max = 17 },
|
||||
{ type = "item", name = "moist-stromatolite-remnant", amount = 30 },
|
||||
{ type = "item", name = "gold-bacteria", amount = 15 },
|
||||
{ type = "item", name = "gold-stromatolite-seed", amount_min = 1, amount_max = 3 }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ end
|
|||
|
||||
local tree_plant = data.raw.plant["tree-plant"]
|
||||
tree_plant.growth_ticks = 5 * minute
|
||||
tree_plant.minable.results = { { type = "item", name = "wood", amount_min = 4, amount_max = 6 } }
|
||||
tree_plant.minable.results = { { type = "item", name = "wood", amount = 5 } }
|
||||
tree_plant.minable.count = nil
|
||||
table.insert(tree_plant.autoplace.tile_restriction, "natural-gold-soil")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue