forked from cacklingfiend/lignumis
		
	Add setting for double provisional rocket captacity
This commit is contained in:
		
							parent
							
								
									d99e06166f
								
							
						
					
					
						commit
						8cb2417f6d
					
				
					 3 changed files with 11 additions and 2 deletions
				
			
		|  | @ -184,6 +184,7 @@ lignumis-lumber-mill-more-recipes=Enable more recipes for the lumber mill | ||||||
| lignumis-fulgora-wood=Add wood to Fulgora | lignumis-fulgora-wood=Add wood to Fulgora | ||||||
| lignumis-early-robots=Even earlier personal robots | lignumis-early-robots=Even earlier personal robots | ||||||
| lignumis-vanilla-lab=Keep vanilla lab recipe | lignumis-vanilla-lab=Keep vanilla lab recipe | ||||||
|  | lignumis-double-rocket=Double provisional rocket cargo capacity | ||||||
| 
 | 
 | ||||||
| [mod-setting-description] | [mod-setting-description] | ||||||
| lignumis-belt-progression=Yellow belts will require wood belts to craft. | lignumis-belt-progression=Yellow belts will require wood belts to craft. | ||||||
|  | @ -196,7 +197,8 @@ lignumis-assembler-progression=Assembling machine 1 will require burner assembli | ||||||
| lignumis-lumber-mill-more-recipes=The lumber mill can also craft basic turrets, burner assemblers and burner inserters. Improves balancing wood usage when all progressive recipes are enabled and helps with marathon games. | lignumis-lumber-mill-more-recipes=The lumber mill can also craft basic turrets, burner assemblers and burner inserters. Improves balancing wood usage when all progressive recipes are enabled and helps with marathon games. | ||||||
| lignumis-fulgora-wood=This adds wooden gear wheels to scrap recycling as the main source of wood. Disable this is you have a different source of wood or import everything from other planets. | lignumis-fulgora-wood=This adds wooden gear wheels to scrap recycling as the main source of wood. Disable this is you have a different source of wood or import everything from other planets. | ||||||
| lignumis-early-robots=Personal robots are moved from steam to wood science and are a tiny bit faster. | lignumis-early-robots=Personal robots are moved from steam to wood science and are a tiny bit faster. | ||||||
| lignumis-vanilla-lab=Moves the transport belt recipe to Iron processing so the lab can be crafted with the original recipe without requiring to research logistics | lignumis-vanilla-lab=Moves the transport belt recipe to Iron processing so the lab can be crafted with the original recipe without requiring to research logistics. | ||||||
|  | lignumis-double-rocket=The provisional rocket can carry 80 instead of 40 slots. | ||||||
| 
 | 
 | ||||||
| [autoplace-control-names] | [autoplace-control-names] | ||||||
| lignumis_enemy_base=Lignumis enemy bases | lignumis_enemy_base=Lignumis enemy bases | ||||||
|  |  | ||||||
|  | @ -111,7 +111,7 @@ local silo_ready = { | ||||||
|     icon = silo.icon, |     icon = silo.icon, | ||||||
|     minable = { mining_time = 1, result = nil }, |     minable = { mining_time = 1, result = nil }, | ||||||
|     deconstruction_alternative = "provisional-rocket-silo", |     deconstruction_alternative = "provisional-rocket-silo", | ||||||
|     inventory_size = 40, |     inventory_size = settings.startup["lignumis-double-rocket"].value and 80 or 40, | ||||||
|     inventory_type = "normal", |     inventory_type = "normal", | ||||||
|     quality_affects_inventory_size = false, |     quality_affects_inventory_size = false, | ||||||
|     placeable_by = { item = "provisional-rocket-silo", count = 1 }, |     placeable_by = { item = "provisional-rocket-silo", count = 1 }, | ||||||
|  |  | ||||||
|  | @ -76,6 +76,13 @@ data:extend({ | ||||||
|         default_value = false, |         default_value = false, | ||||||
|         order = "k" |         order = "k" | ||||||
|     }, |     }, | ||||||
|  |     { | ||||||
|  |         type = "bool-setting", | ||||||
|  |         name = "lignumis-double-rocket", | ||||||
|  |         setting_type = "startup", | ||||||
|  |         default_value = false, | ||||||
|  |         order = "l" | ||||||
|  |     }, | ||||||
|     { |     { | ||||||
|         type = "string-setting", |         type = "string-setting", | ||||||
|         name = "lignumis-second-planet", |         name = "lignumis-second-planet", | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Simon Brodtmann
						Simon Brodtmann