Remove randomness from plants
This commit is contained in:
		
							parent
							
								
									1a30b6dad6
								
							
						
					
					
						commit
						2de7af444b
					
				
					 3 changed files with 9 additions and 4 deletions
				
			
		| 
						 | 
					@ -1,8 +1,13 @@
 | 
				
			||||||
---------------------------------------------------------------------------------------------------
 | 
					---------------------------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					Version: 0.9.8
 | 
				
			||||||
 | 
					Date: ??.01.2025
 | 
				
			||||||
 | 
					  Bug Fixes:
 | 
				
			||||||
 | 
					    - Remove randomness from plants (thanks Atraxi; https://mods.factorio.com/mod/lignumis/discussion/67933ca99634a9d18f15f5af)
 | 
				
			||||||
 | 
					---------------------------------------------------------------------------------------------------
 | 
				
			||||||
Version: 0.9.7
 | 
					Version: 0.9.7
 | 
				
			||||||
Date: 23.01.2025
 | 
					Date: 23.01.2025
 | 
				
			||||||
  Changes:
 | 
					  Changes:
 | 
				
			||||||
    - Add compatibility for "Metal and Stars" (thanks 5forsilver)
 | 
					    - Add compatibility for "Metal and Stars" (thanks Atraxi)
 | 
				
			||||||
    - Rename "Planet discovery Lignumis" to "Moon discovery Lignumis"
 | 
					    - Rename "Planet discovery Lignumis" to "Moon discovery Lignumis"
 | 
				
			||||||
---------------------------------------------------------------------------------------------------
 | 
					---------------------------------------------------------------------------------------------------
 | 
				
			||||||
Version: 0.9.6
 | 
					Version: 0.9.6
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -145,8 +145,8 @@ plant.minable = {
 | 
				
			||||||
    mining_particle = "copper-ore-particle",
 | 
					    mining_particle = "copper-ore-particle",
 | 
				
			||||||
    mining_time = 2,
 | 
					    mining_time = 2,
 | 
				
			||||||
    results = {
 | 
					    results = {
 | 
				
			||||||
        { type = "item", name = "moist-stromatolite-remnant", amount_min = 23, amount_max = 37 },
 | 
					        { type = "item", name = "moist-stromatolite-remnant", amount = 30 },
 | 
				
			||||||
        { type = "item", name = "gold-bacteria",              amount_min = 13, amount_max = 17 },
 | 
					        { type = "item", name = "gold-bacteria",              amount = 15 },
 | 
				
			||||||
        { type = "item", name = "gold-stromatolite-seed",     amount_min = 1,  amount_max = 3 }
 | 
					        { 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"]
 | 
					local tree_plant = data.raw.plant["tree-plant"]
 | 
				
			||||||
tree_plant.growth_ticks = 5 * minute
 | 
					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
 | 
					tree_plant.minable.count = nil
 | 
				
			||||||
table.insert(tree_plant.autoplace.tile_restriction, "natural-gold-soil")
 | 
					table.insert(tree_plant.autoplace.tile_restriction, "natural-gold-soil")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue