mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-08 23:08:35 +07:00
Fix Spaceship production boni (and key binding) (#6247)
* Fix spaceship part boni * Key binding for 'Add part to spaceship'
This commit is contained in:
@ -527,9 +527,7 @@
|
||||
"hurryCostModifier": 25,
|
||||
"requiredNearbyImprovedResources": ["Iron"],
|
||||
"requiredTech": "Metal Casting",
|
||||
// If spaceship parts are changed into units, the spaceship part unique should be changed to
|
||||
// "[+15]% Production when constructing [Spaceship part] units [in this city]"
|
||||
"uniques": ["[+15]% Production when constructing [Spaceship part] buildings [in this city]",
|
||||
"uniques": ["[+15]% Production when constructing [Spaceship part] units [in this city]",
|
||||
"[+15]% Production when constructing [Land] units [in this city]",
|
||||
"[+1 Production] from [Iron] tiles [in this city]"]
|
||||
},
|
||||
@ -1107,10 +1105,8 @@
|
||||
"name": "Hubble Space Telescope",
|
||||
"isWonder": true,
|
||||
"greatPersonPoints": {"Great Scientist": 1},
|
||||
// If spaceship parts are changed into units, the spaceship part unique should be changed to
|
||||
// "[+25]% Production when constructing [Spaceship part] units [in this city]"
|
||||
"uniques": ["[2] free [Great Scientist] units appear",
|
||||
"[+25]% Production when constructing [Spaceship part] buildings [in this city]",
|
||||
"[+25]% Production when constructing [Spaceship part] units [in this city]",
|
||||
"Gain a free [Spaceship Factory] [in this city]"],
|
||||
"requiredTech": "Satellites",
|
||||
"quote": "'The wonder is, not that the field of stars is so vast, but that man has measured it.' - Anatole France"
|
||||
@ -1121,9 +1117,7 @@
|
||||
"requiredResource": "Aluminum",
|
||||
"cost": 360,
|
||||
"requiredBuilding": "Factory",
|
||||
// If spaceship parts are changed into units, this unique should be changed to
|
||||
// "[+50]% Production when constructing [Spaceship part] units [in this city]"
|
||||
"uniques": ["[+50]% Production when constructing [Spaceship part] buildings [in this city]"],
|
||||
"uniques": ["[+50]% Production when constructing [Spaceship part] units [in this city]"],
|
||||
"requiredTech": "Robotics"
|
||||
},
|
||||
// Column 16
|
||||
|
@ -465,9 +465,7 @@
|
||||
"hurryCostModifier": 25,
|
||||
"requiredNearbyImprovedResources": ["Iron"],
|
||||
"requiredTech": "Metal Casting",
|
||||
// If spaceship parts are changed into units, the spaceship part unique should be changed to
|
||||
// "[+15]% Production when constructing [Spaceship part] units [in this city]"
|
||||
"uniques": ["[+15]% Production when constructing [Spaceship part] buildings [in this city]",
|
||||
"uniques": ["[+15]% Production when constructing [Spaceship part] units [in this city]",
|
||||
"[+15]% Production when constructing [Land] units [in this city]",
|
||||
"[+1 Production] from [Iron] tiles [in this city]"]
|
||||
},
|
||||
@ -947,9 +945,7 @@
|
||||
"requiredResource": "Aluminum",
|
||||
"cost": 360,
|
||||
"requiredBuilding": "Factory",
|
||||
// If spaceship parts are changed into units, this unique should be changed to
|
||||
// "[+50]% Production when constructing [Spaceship part] units [in this city]"
|
||||
"uniques": ["[+50]% Production when constructing [Spaceship part] buildings [in this city]"],
|
||||
"uniques": ["[+50]% Production when constructing [Spaceship part] units [in this city]"],
|
||||
"requiredTech": "Robotics"
|
||||
},
|
||||
// Column 16
|
||||
|
@ -141,7 +141,7 @@ enum class UnitActionType(
|
||||
HideAdditionalActions("Back",
|
||||
{ imageGetHideMore() }, KeyCharAndCode(Input.Keys.PAGE_UP)),
|
||||
AddInCapital( "Add in capital",
|
||||
{ ImageGetter.getUnitIcon("SS Cockpit")}, UncivSound.Chimes),
|
||||
{ ImageGetter.getUnitIcon("SS Cockpit")}, 'g', UncivSound.Chimes),
|
||||
;
|
||||
|
||||
// Allow shorter initializations
|
||||
|
Reference in New Issue
Block a user