mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-09 07:18:57 +07:00
First step into unifying strength bonuses using conditionals (#5345)
This commit is contained in:
@ -89,7 +89,7 @@
|
||||
{
|
||||
"name": "Honor",
|
||||
"era": "Ancient era",
|
||||
"uniques": ["+[33]% Strength vs [Barbarians]", "Earn [100]% of killed [Barbarian] unit's [Strength] as [Culture]",
|
||||
"uniques": ["[+33]% Strength <vs [Barbarian] units>", "Earn [100]% of killed [Barbarian] unit's [Strength] as [Culture]",
|
||||
"Notified of new Barbarian encampments"],
|
||||
"policies": [
|
||||
{
|
||||
|
@ -46,7 +46,7 @@
|
||||
{
|
||||
"name": "Volley",
|
||||
"prerequisites": ["Accuracy I","Barrage I"],
|
||||
"uniques": ["+[50]% Strength vs [City]"],
|
||||
"uniques": ["[+50]% Strength <vs cities>"],
|
||||
"unitTypes": ["Archery","Ranged Gunpowder","Siege"]
|
||||
},
|
||||
{
|
||||
@ -101,25 +101,25 @@
|
||||
{
|
||||
"name": "Charge",
|
||||
"prerequisites": ["Shock II","Drill II"],
|
||||
"uniques": ["+[33]% Strength vs [wounded units]"],
|
||||
"uniques": ["[+33]% Strength <vs [Wounded] units>"],
|
||||
"unitTypes": ["Mounted","Armored"]
|
||||
},
|
||||
{
|
||||
"name": "Besiege", // Not called "Siege" in order to not conflict with siege type units for translations
|
||||
"prerequisites": ["Shock II","Drill II"],
|
||||
"uniques": ["+[50]% Strength vs [City]"],
|
||||
"uniques": ["[+50]% Strength <vs cities>"],
|
||||
"unitTypes": ["Sword","Gunpowder"]
|
||||
},
|
||||
{
|
||||
"name": "Formation I",
|
||||
"prerequisites": ["Shock II","Drill II"], // G&K also has Accuracy II & Barrage II as possible prerequisites for this, but I couldn't find a source for the unittypes
|
||||
"uniques": ["+[33]% Strength vs [Mounted]"],
|
||||
"uniques": ["[+33]% Strength <vs [Mounted] units>"],
|
||||
"unitTypes": ["Sword","Gunpowder","Mounted"]
|
||||
},
|
||||
{
|
||||
"name": "Formation II",
|
||||
"prerequisites": ["Formation I"],
|
||||
"uniques": ["+[33]% Strength vs [Mounted]"],
|
||||
"uniques": ["[+33]% Strength <vs [Mounted] units>"],
|
||||
"unitTypes": ["Sword","Gunpowder","Mounted"]
|
||||
},
|
||||
|
||||
@ -194,56 +194,56 @@
|
||||
// Water melee
|
||||
{
|
||||
"name": "Boarding Party I",
|
||||
"uniques": ["+[15]% Strength vs [water units]"],
|
||||
"uniques": ["[+15]% Strength <vs [Water] units>"],
|
||||
"unitTypes": ["Melee Water"]
|
||||
},
|
||||
{
|
||||
"name": "Boarding Party II",
|
||||
"prerequisites": ["Boarding Party I"],
|
||||
"uniques": ["+[15]% Strength vs [water units]"],
|
||||
"uniques": ["[+15]% Strength <vs [Water] units>"],
|
||||
"unitTypes": ["Melee Water"]
|
||||
},
|
||||
{
|
||||
"name": "Boarding Party III",
|
||||
"prerequisites": ["Boarding Party II"],
|
||||
"uniques": ["+[15]% Strength vs [water units]"],
|
||||
"uniques": ["+[15]% Strength <vs [Water] units>"],
|
||||
"unitTypes": ["Melee Water"]
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Coastal Raider I",
|
||||
"uniques": ["+[20]% Strength vs [City]", "Earn [33]% of the damage done to [City] units as [Gold]"],
|
||||
"uniques": ["[+20]% Strength <vs cities>", "Earn [33]% of the damage done to [City] units as [Gold]"],
|
||||
"unitTypes": ["Melee Water"]
|
||||
},
|
||||
{
|
||||
"name": "Coastal Raider II",
|
||||
"prerequisites": ["Coastal Raider I"],
|
||||
"uniques": ["+[20]% Strength vs [City]", "Earn [33]% of the damage done to [City] units as [Gold]"],
|
||||
"uniques": ["[+20]% Strength <vs cities>", "Earn [33]% of the damage done to [City] units as [Gold]"],
|
||||
"unitTypes": ["Melee Water"]
|
||||
},
|
||||
{
|
||||
"name": "Coastal Raider III",
|
||||
"prerequisites": ["Coastal Raider II"],
|
||||
"uniques": ["+[20]% Strength vs [City]", "Earn [33]% of the damage done to [City] units as [Gold]"],
|
||||
"uniques": ["[+20]% Strength <vs cities>", "Earn [33]% of the damage done to [City] units as [Gold]"],
|
||||
"unitTypes": ["Melee Water"]
|
||||
},
|
||||
|
||||
// Water Ranged
|
||||
{
|
||||
"name": "Targeting I",
|
||||
"uniques": ["+[15]% Strength vs [water units]"],
|
||||
"uniques": ["[+15]% Strength <vs [Water] units>"],
|
||||
"unitTypes": ["Ranged Water"]
|
||||
},
|
||||
{
|
||||
"name": "Targeting II",
|
||||
"prerequisites": ["Targeting I"],
|
||||
"uniques": ["+[15]% Strength vs [water units]"],
|
||||
"uniques": ["[+15]% Strength <vs [Water] units>"],
|
||||
"unitTypes": ["Ranged Water"]
|
||||
},
|
||||
{
|
||||
"name": "Targeting III",
|
||||
"prerequisites": ["Targeting II"],
|
||||
"uniques": ["+[15]% Strength vs [water units]"],
|
||||
"uniques": ["[+15]% Strength <vs [Water] units>"],
|
||||
"unitTypes": ["Ranged Water"]
|
||||
},
|
||||
|
||||
@ -313,19 +313,19 @@
|
||||
// Bomber
|
||||
{
|
||||
"name": "Siege I",
|
||||
"uniques": ["+[33]% Strength vs [City]"],
|
||||
"uniques": ["[+33]% Strength <vs cities>"],
|
||||
"unitTypes": ["Bomber"]
|
||||
},
|
||||
{
|
||||
"name": "Siege II",
|
||||
"prerequisites": ["Siege I"],
|
||||
"uniques": ["+[33]% Strength vs [City]"],
|
||||
"uniques": ["[+33]% Strength <vs cities>"],
|
||||
"unitTypes": ["Bomber"]
|
||||
},
|
||||
{
|
||||
"name": "Siege III",
|
||||
"prerequisites": ["Siege II"],
|
||||
"uniques": ["+[34]% Strength vs [City]"],
|
||||
"uniques": ["[+34]% Strength <vs cities>"],
|
||||
"unitTypes": ["Bomber"]
|
||||
},
|
||||
{
|
||||
@ -376,13 +376,13 @@
|
||||
{
|
||||
"name": "Air Targeting I",
|
||||
"prerequisites": ["Interception I","Dogfighting I", "Siege I","Bombardment I"],
|
||||
"uniques": ["+[33]% Strength vs [water units]"],
|
||||
"uniques": ["[+33]% Strength <vs [Water] units>"],
|
||||
"unitTypes": ["Fighter","Bomber"]
|
||||
},
|
||||
{
|
||||
"name": "Air Targeting II",
|
||||
"prerequisites": ["Air Targeting I"],
|
||||
"uniques": ["+[33]% Strength vs [water units]"],
|
||||
"uniques": ["[+33]% Strength <vs [Water] units>"],
|
||||
"unitTypes": ["Fighter","Bomber"]
|
||||
},
|
||||
|
||||
@ -420,13 +420,13 @@
|
||||
},
|
||||
{
|
||||
"name": "Anti-Armor I",
|
||||
"uniques": ["+[25]% Strength vs [Armored]"],
|
||||
"uniques": ["[+25]% Strength <vs [Armored] units>"],
|
||||
"unitTypes": ["Helicopter"]
|
||||
},
|
||||
{
|
||||
"name": "Anti-Armor II",
|
||||
"prerequisites": ["Anti-Armor I"],
|
||||
"uniques": ["+[25]% Strength vs [Armored]"],
|
||||
"uniques": ["[+25]% Strength <vs [Armored] units>"],
|
||||
"unitTypes": ["Helicopter"]
|
||||
},
|
||||
|
||||
@ -472,13 +472,13 @@
|
||||
|
||||
{
|
||||
"name": "Ambush I",
|
||||
"uniques": ["+[33]% Strength vs [Armored]"],
|
||||
"uniques": ["[+33]% Strength <vs [Armored] units>"],
|
||||
"unitTypes": ["Sword","Gunpowder","Fighter","Bomber"]
|
||||
},
|
||||
{
|
||||
"name": "Ambush II",
|
||||
"prerequisites": ["Ambush I"],
|
||||
"uniques": ["+[33]% Strength vs [Armored]"],
|
||||
"uniques": ["[+33]% Strength <vs [Armored] units>"],
|
||||
"unitTypes": ["Sword","Gunpowder","Fighter","Bomber"]
|
||||
},
|
||||
|
||||
@ -486,26 +486,26 @@
|
||||
// Water ranged and air units
|
||||
{
|
||||
"name": "Bombardment I",
|
||||
"uniques": ["+[33]% Strength vs [land units]"],
|
||||
"uniques": ["[+33]% Strength <vs [Land] units>"],
|
||||
"unitTypes": ["Ranged Water","Fighter","Bomber"]
|
||||
},
|
||||
{
|
||||
"name": "Bombardment II",
|
||||
"prerequisites": ["Bombardment I"],
|
||||
"uniques": ["+[33]% Strength vs [land units]"],
|
||||
"uniques": ["[+33]% Strength <vs [Land] units>"],
|
||||
"unitTypes": ["Ranged Water","Fighter","Bomber"]
|
||||
},
|
||||
{
|
||||
"name": "Bombardment III",
|
||||
"prerequisites": ["Bombardment II"],
|
||||
"uniques": ["+[34]% Strength vs [land units]"],
|
||||
"uniques": ["[+34]% Strength <vs [Land] units>"],
|
||||
"unitTypes": ["Ranged Water","Fighter","Bomber"]
|
||||
},
|
||||
|
||||
// Uniques that should be kept on upgrades
|
||||
{
|
||||
"name": "Morale", // Heroic Epic
|
||||
"uniques": ["+[15]% Combat Strength"]
|
||||
"uniques": ["[+15]% Strength"]
|
||||
},
|
||||
{
|
||||
"name": "Great Generals I", // only for Companion Cavalry, Keshik and their subsequent upgrades
|
||||
|
@ -185,7 +185,7 @@
|
||||
"rangedStrength": 10,
|
||||
"cost": 56,
|
||||
"requiredTech": "Sailing",
|
||||
"uniques": ["Cannot enter ocean tiles", "+[50]% Strength vs [Water] units"],
|
||||
"uniques": ["Cannot enter ocean tiles", "[+50]% Strength <vs [Water] units>"],
|
||||
"upgradesTo": "Galleass",
|
||||
"obsoleteTech": "Astronomy",
|
||||
"attackSound": "arrow"
|
||||
@ -273,7 +273,7 @@
|
||||
"requiredTech": "Bronze Working",
|
||||
"obsoleteTech": "Civil Service",
|
||||
"upgradesTo": "Pikeman",
|
||||
"uniques": ["+[50]% Strength vs [Mounted]"],
|
||||
"uniques": ["[+50]% Strength <vs [Mounted] units>"],
|
||||
"attackSound": "metalhit"
|
||||
},
|
||||
{
|
||||
@ -287,7 +287,7 @@
|
||||
"requiredTech": "Bronze Working",
|
||||
"obsoleteTech": "Civil Service",
|
||||
"upgradesTo": "Pikeman",
|
||||
"uniques": ["+[50]% Strength vs [Mounted]"],
|
||||
"uniques": ["[+50]% Strength <vs [Mounted] units>"],
|
||||
"attackSound": "metalhit"
|
||||
},
|
||||
{
|
||||
@ -301,7 +301,7 @@
|
||||
"requiredTech": "Bronze Working",
|
||||
"obsoleteTech": "Civil Service",
|
||||
"upgradesTo": "Pikeman",
|
||||
"uniques": ["+[50]% Strength vs [Mounted]","[+10] HP when healing"],
|
||||
"uniques": ["[+50]% Strength <vs [Mounted] units>","[+10] HP when healing"],
|
||||
"attackSound": "metalhit"
|
||||
},
|
||||
{
|
||||
@ -315,7 +315,7 @@
|
||||
"requiredTech": "Bronze Working",
|
||||
"obsoleteTech": "Physics",
|
||||
"upgradesTo": "Trebuchet",
|
||||
"uniques": ["+[300]% Strength vs [City]", "No defensive terrain bonus", "+[-33]% Strength when defending",
|
||||
"uniques": ["[+300]% Strength <vs cities>", "No defensive terrain bonus", "+[-33]% Strength when defending",
|
||||
"-[1] Visibility Range", "Can only attack [City] units"],
|
||||
"promotions": ["Cover I"],
|
||||
"attackSound": "throw"
|
||||
@ -330,7 +330,7 @@
|
||||
"requiredTech": "Bronze Working",
|
||||
"obsoleteTech": "Civil Service",
|
||||
"upgradesTo": "Pikeman",
|
||||
"uniques": ["+[50]% Strength vs [Mounted]"],
|
||||
"uniques": ["[+50]% Strength <vs [Mounted] units>"],
|
||||
"attackSound": "metalhit"
|
||||
// Barbarian unique Spearman. Has same icon and name but slightly different 3d texture
|
||||
},
|
||||
@ -347,7 +347,7 @@
|
||||
"requiredResource": "Horses",
|
||||
"upgradesTo": "Knight",
|
||||
"obsoleteTech": "Chivalry",
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","-[33]% Strength vs [City]" ],
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","[-33]% Strength <vs cities>" ],
|
||||
"hurryCostModifier": 20,
|
||||
"attackSound": "horse"
|
||||
},
|
||||
@ -364,7 +364,7 @@
|
||||
"obsoleteTech": "Chivalry",
|
||||
"promotions": ["Great Generals I"],
|
||||
"requiredResource": "Horses",
|
||||
"uniques": ["Can move after attacking", "No defensive terrain bonus", "-[33]% Strength vs [City]"],
|
||||
"uniques": ["Can move after attacking", "No defensive terrain bonus", "[-33]% Strength <vs cities>"],
|
||||
"hurryCostModifier": 20,
|
||||
"attackSound": "horse"
|
||||
},
|
||||
@ -380,7 +380,7 @@
|
||||
"upgradesTo": "Knight",
|
||||
"obsoleteTech": "Chivalry",
|
||||
"promotions": ["Great Generals II"],
|
||||
"uniques": ["Can move after attacking", "No defensive terrain bonus", "-[33]% Strength vs [City]",
|
||||
"uniques": ["Can move after attacking", "No defensive terrain bonus", "[-33]% Strength <vs cities>",
|
||||
"[-10]% Strength for enemy [Military] units in adjacent [All] tiles"],
|
||||
"hurryCostModifier": 20,
|
||||
"attackSound": "elephant"
|
||||
@ -396,7 +396,7 @@
|
||||
"requiredTech": "Horseback Riding",
|
||||
"upgradesTo": "Knight",
|
||||
"obsoleteTech": "Chivalry",
|
||||
"uniques": ["Can move after attacking", "-[25]% Strength vs [City]"],
|
||||
"uniques": ["Can move after attacking", "[-25]% Strength <vs cities>"],
|
||||
"hurryCostModifier": 20,
|
||||
"attackSound": "horse"
|
||||
},
|
||||
@ -410,7 +410,7 @@
|
||||
"requiredTech": "Mathematics",
|
||||
"obsoleteTech": "Physics",
|
||||
"upgradesTo": "Trebuchet",
|
||||
"uniques": ["+[200]% Strength vs [City]", "No defensive terrain bonus",
|
||||
"uniques": ["[+200]% Strength <vs cities>", "No defensive terrain bonus",
|
||||
"Must set up to ranged attack", "Limited Visibility"],
|
||||
"hurryCostModifier": 20,
|
||||
"attackSound": "throw"
|
||||
@ -427,7 +427,7 @@
|
||||
"requiredTech": "Mathematics",
|
||||
"obsoleteTech": "Physics",
|
||||
"upgradesTo": "Trebuchet",
|
||||
"uniques": ["+[200]% Strength vs [City]", "No defensive terrain bonus",
|
||||
"uniques": ["[+200]% Strength <vs cities>", "No defensive terrain bonus",
|
||||
"Must set up to ranged attack", "Limited Visibility"],
|
||||
"hurryCostModifier": 20,
|
||||
"attackSound": "throw"
|
||||
@ -513,7 +513,7 @@
|
||||
"strength": 16,
|
||||
"cost": 90,
|
||||
"requiredTech": "Civil Service",
|
||||
"uniques": ["+[50]% Strength vs [Mounted]"],
|
||||
"uniques": ["[+50]% Strength <vs [Mounted] units>"],
|
||||
"upgradesTo": "Lancer",
|
||||
"obsoleteTech": "Gunpowder",
|
||||
"attackSound": "metalhit"
|
||||
@ -527,7 +527,7 @@
|
||||
"strength": 16,
|
||||
"cost": 45,
|
||||
"requiredTech": "Civil Service",
|
||||
"uniques": ["+[50]% Strength vs [Mounted]", "Can move immediately once bought" ],
|
||||
"uniques": ["[+50]% Strength <vs [Mounted] units>", "Can move immediately once bought" ],
|
||||
"upgradesTo": "Lancer",
|
||||
"obsoleteTech": "Gunpowder",
|
||||
"attackSound": "metalhit"
|
||||
@ -556,7 +556,7 @@
|
||||
"obsoleteTech": "Military Science",
|
||||
"upgradesTo": "Cavalry",
|
||||
"requiredResource": "Horses",
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","-[33]% Strength vs [City]" ],
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","[-33]% Strength <vs cities>" ],
|
||||
"attackSound": "horse"
|
||||
},
|
||||
{
|
||||
@ -604,7 +604,7 @@
|
||||
"requiredTech": "Chivalry",
|
||||
"obsoleteTech": "Military Science",
|
||||
"upgradesTo": "Cavalry",
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","+[50]% Strength vs [Mounted]","-[33]% Strength vs [City]"],
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","[+50]% Strength <vs [Mounted] units>","[-33]% Strength <vs cities>"],
|
||||
"attackSound": "elephant"
|
||||
},
|
||||
{
|
||||
@ -694,7 +694,7 @@
|
||||
"requiredTech": "Physics",
|
||||
"obsoleteTech": "Chemistry",
|
||||
"upgradesTo": "Cannon",
|
||||
"uniques": ["+[200]% Strength vs [City]","No defensive terrain bonus","Must set up to ranged attack","Limited Visibility"],
|
||||
"uniques": ["[+200]% Strength <vs cities>","No defensive terrain bonus","Must set up to ranged attack","Limited Visibility"],
|
||||
"attackSound": "throw"
|
||||
},
|
||||
{
|
||||
@ -852,7 +852,7 @@
|
||||
"requiredTech": "Gunpowder",
|
||||
"upgradesTo": "Rifleman",
|
||||
"obsoleteTech": "Rifling",
|
||||
"uniques": ["+[50]% Strength vs [Mounted]"],
|
||||
"uniques": ["[+50]% Strength <vs [Mounted] units>"],
|
||||
"attackSound": "shot"
|
||||
},
|
||||
{
|
||||
@ -920,7 +920,7 @@
|
||||
"cost": 185,
|
||||
"requiredTech": "Metallurgy",
|
||||
"requiredResource": "Horses",
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","-[33]% Strength vs [City]"],
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","[-33]% Strength <vs cities>"],
|
||||
"promotions": ["Formation I"],
|
||||
"upgradesTo": "Anti-Tank Gun",
|
||||
"obsoleteTech": "Combined Arms",
|
||||
@ -936,7 +936,7 @@
|
||||
"cost": 185,
|
||||
"requiredTech": "Metallurgy",
|
||||
"requiredResource": "Horses",
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","-[33]% Strength vs [City]",
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","[-33]% Strength <vs cities>",
|
||||
"[+1] Visibility Range", "No movement cost to pillage"],
|
||||
"promotions": ["Formation I"],
|
||||
"upgradesTo": "Anti-Tank Gun",
|
||||
@ -953,7 +953,7 @@
|
||||
"cost": 185,
|
||||
"requiredTech": "Metallurgy",
|
||||
"requiredResource": "Horses",
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","-[33]% Strength vs [City]",
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","[-33]% Strength <vs cities>",
|
||||
"Transfer Movement to [Great General]", "[+15]% Strength when stacked with [Great General]"],
|
||||
"promotions": ["Formation I"],
|
||||
"upgradesTo": "Anti-Tank Gun",
|
||||
@ -970,7 +970,7 @@
|
||||
"requiredTech": "Chemistry",
|
||||
"upgradesTo": "Artillery",
|
||||
"obsoleteTech": "Dynamite",
|
||||
"uniques": ["+[200]% Strength vs [City]","No defensive terrain bonus","Must set up to ranged attack","Limited Visibility"],
|
||||
"uniques": ["[+200]% Strength <vs cities>","No defensive terrain bonus","Must set up to ranged attack","Limited Visibility"],
|
||||
"attackSound": "cannon"
|
||||
},
|
||||
|
||||
@ -1043,7 +1043,7 @@
|
||||
"obsoleteTech": "Combustion",
|
||||
"requiredResource": "Horses",
|
||||
"upgradesTo": "Landship",
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","-[33]% Strength vs [City]" ],
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","[-33]% Strength <vs cities>" ],
|
||||
"attackSound": "horse"
|
||||
},
|
||||
{
|
||||
@ -1059,7 +1059,7 @@
|
||||
"requiredResource": "Horses",
|
||||
"upgradesTo": "Landship",
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus",
|
||||
"-[33]% Strength vs [City]", "+[50]% Strength vs [wounded units]"],
|
||||
"[-33]% Strength <vs cities>", "[+50]% Strength <vs [Wounded] units>"],
|
||||
"attackSound": "horse"
|
||||
},
|
||||
{
|
||||
@ -1074,7 +1074,7 @@
|
||||
"obsoleteTech": "Combustion",
|
||||
"requiredResource": "Horses",
|
||||
"upgradesTo": "Landship",
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","-[33]% Strength vs [City]" ,
|
||||
"uniques": ["Can move after attacking","No defensive terrain bonus","[-33]% Strength <vs cities>" ,
|
||||
"[+1] Visibility Range", "[+50]% to Flank Attack bonuses" ],
|
||||
"attackSound": "horse"
|
||||
},
|
||||
@ -1088,7 +1088,7 @@
|
||||
"requiredResource": "Coal",
|
||||
"upgradesTo": "Destroyer",
|
||||
"obsoleteTech": "Combustion",
|
||||
"uniques": ["+[33]% Strength vs [City]","Double movement in [Coast]"],
|
||||
"uniques": ["[+33]% Strength <vs cities>","Double movement in [Coast]"],
|
||||
"attackSound": "shipguns"
|
||||
},
|
||||
{
|
||||
@ -1101,7 +1101,7 @@
|
||||
"cost": 320,
|
||||
"requiredTech": "Dynamite",
|
||||
"upgradesTo": "Rocket Artillery",
|
||||
"uniques": ["+[200]% Strength vs [City]","No defensive terrain bonus",
|
||||
"uniques": ["[+200]% Strength <vs cities>","No defensive terrain bonus",
|
||||
"Must set up to ranged attack","Limited Visibility","Ranged attacks may be performed over obstacles"],
|
||||
"attackSound": "artillery"
|
||||
},
|
||||
@ -1158,7 +1158,7 @@
|
||||
"requiredResource": "Oil",
|
||||
"upgradesTo": "Fighter",
|
||||
"obsoleteTech": "Radar",
|
||||
"uniques": ["[50]% chance to intercept air attacks", "+[150]% Strength vs [Bomber]", "+[150]% Strength vs [Helicopter]"],
|
||||
"uniques": ["[50]% chance to intercept air attacks", "[+150]% Strength <vs [Bomber] units>", "[+150]% Strength <vs [Helicopter] units>"],
|
||||
"attackSound": "machinegun"
|
||||
},
|
||||
{
|
||||
@ -1232,7 +1232,7 @@
|
||||
"requiredTech": "Ballistics",
|
||||
"upgradesTo": "Mobile SAM",
|
||||
"obsoleteTech": "Rocketry",
|
||||
"uniques": ["[100]% chance to intercept air attacks", "+[150]% Strength vs [air units]", "+[150]% Strength vs [Helicopter]"],
|
||||
"uniques": ["[100]% chance to intercept air attacks", "[+150]% Strength <vs [Air] units>", "[+150]% Strength <vs [Helicopter] units>"],
|
||||
"attackSound": "machinegun"
|
||||
},
|
||||
{
|
||||
@ -1257,7 +1257,7 @@
|
||||
"cost": 375,
|
||||
"requiredTech": "Combustion",
|
||||
"uniques": ["Can see invisible [Submarine] units", "[40]% chance to intercept air attacks",
|
||||
"May withdraw before melee ([80]%)", "+[100]% Strength vs [submarine units]"],
|
||||
"May withdraw before melee ([80]%)", "[+100]% Strength <vs [Submarine] units>"],
|
||||
"attackSound": "shipguns"
|
||||
},
|
||||
|
||||
@ -1286,7 +1286,7 @@
|
||||
"requiredTech": "Radar",
|
||||
"requiredResource": "Oil",
|
||||
"upgradesTo": "Jet Fighter",
|
||||
"uniques": ["[100]% chance to intercept air attacks", "+[150]% Strength vs [Bomber]", "+[150]% Strength vs [Helicopter]"],
|
||||
"uniques": ["[100]% chance to intercept air attacks", "[+150]% Strength <vs [Bomber] units>", "[+150]% Strength <vs [Helicopter] units>"],
|
||||
"attackSound": "machinegun"
|
||||
},
|
||||
{
|
||||
@ -1302,8 +1302,8 @@
|
||||
"cost": 375,
|
||||
"requiredTech": "Radar",
|
||||
"upgradesTo": "Jet Fighter",
|
||||
"uniques": ["[100]% chance to intercept air attacks", "+[150]% Strength vs [Bomber]", "+[150]% Strength vs [Helicopter]",
|
||||
"+[33]% Strength vs [Fighter]"],
|
||||
"uniques": ["[100]% chance to intercept air attacks", "[+150]% Strength <vs [Bomber] units>", "[+150]% Strength <vs [Helicopter] units>",
|
||||
"[+33]% Strength <vs [Fighter] units>"],
|
||||
"attackSound": "machinegun"
|
||||
},
|
||||
{
|
||||
@ -1381,7 +1381,7 @@
|
||||
"cost": 300,
|
||||
"requiredTech": "Combined Arms",
|
||||
"upgradesTo": "Helicopter Gunship",
|
||||
"uniques": ["+[100]% Strength vs [Armored]"],
|
||||
"uniques": ["[+100]% Strength <vs [Armored] units>"],
|
||||
"attackSound": "machinegun"
|
||||
},
|
||||
{
|
||||
@ -1411,7 +1411,7 @@
|
||||
"cost": 425,
|
||||
"requiredTech": "Rocketry",
|
||||
"requiredResource": "Aluminum",
|
||||
"uniques": ["+[200]% Strength vs [City]","No defensive terrain bonus",
|
||||
"uniques": ["[+200]% Strength <vs cities>","No defensive terrain bonus",
|
||||
"Limited Visibility","Ranged attacks may be performed over obstacles"],
|
||||
"attackSound": "artillery"
|
||||
},
|
||||
@ -1423,7 +1423,7 @@
|
||||
"strength": 65,
|
||||
"cost": 425,
|
||||
"requiredTech": "Rocketry",
|
||||
"uniques": ["[100]% chance to intercept air attacks", "+[150]% Strength vs [air units]", "+[150]% Strength vs [Helicopter]"],
|
||||
"uniques": ["[100]% chance to intercept air attacks", "[+150]% Strength <vs [Air] units>", "[+150]% Strength <vs [Helicopter] units>"],
|
||||
"attackSound": "missile"
|
||||
},
|
||||
{
|
||||
@ -1460,7 +1460,7 @@
|
||||
"cost": 425,
|
||||
"requiredTech": "Computers",
|
||||
"requiredResource": "Aluminum",
|
||||
"uniques": ["+[100]% Strength vs [Armored]", "No defensive terrain bonus", "Can move after attacking",
|
||||
"uniques": ["[+100]% Strength <vs [Armored] units>", "No defensive terrain bonus", "Can move after attacking",
|
||||
"All tiles cost 1 movement", "Ignores Zone of Control", "Unable to capture cities"],
|
||||
"attackSound": "machinegun"
|
||||
},
|
||||
@ -1499,7 +1499,7 @@
|
||||
"requiredTech": "Robotics",
|
||||
"uniques": ["[100]% chance to intercept air attacks", "Can see invisible [Submarine] units",
|
||||
"Ranged attacks may be performed over obstacles", "Can carry [3] [Missile] units",
|
||||
"+[100]% Strength vs [submarine units]"],
|
||||
"[+100]% Strength <vs [Submarine] units>"],
|
||||
"attackSound": "shipguns"
|
||||
},
|
||||
{
|
||||
@ -1525,7 +1525,7 @@
|
||||
"cost": 425,
|
||||
"requiredTech": "Lasers",
|
||||
"requiredResource": "Aluminum",
|
||||
"uniques": ["[100]% chance to intercept air attacks", "+[150]% Strength vs [Bomber]", "+[150]% Strength vs [Helicopter]"],
|
||||
"uniques": ["[100]% chance to intercept air attacks", "[+150]% Strength <vs [Bomber] units>", "[+150]% Strength <vs [Helicopter] units>"],
|
||||
"attackSound": "jetgun"
|
||||
},
|
||||
{
|
||||
|
Reference in New Issue
Block a user