diff --git a/android/assets/jsons/Civ V - Vanilla/Units.json b/android/assets/jsons/Civ V - Vanilla/Units.json index 9fb41e1726..beb2b0b6a1 100644 --- a/android/assets/jsons/Civ V - Vanilla/Units.json +++ b/android/assets/jsons/Civ V - Vanilla/Units.json @@ -1235,6 +1235,21 @@ "upgradesTo": "Helicopter Gunship", "uniques": ["Bonus vs Armor 100%"] }, + + { + // "Hovering unit" unique gives ability to get into impassable tiles - and only that (no vision bonus or flying over ocean) + // Unit embarks like any other ground unit and has penalty for attacking over river or from embarked state + "name": "Helicopter Gunship", + "unitType": "Melee", + "movement": 6, + "strength": 60, + "cost": 425, + "requiredTech": "Computers", + "requiredResource": "Aluminum", + "uniques": ["Bonus vs Armor 100%", "No defensive terrain bonus", "Can move after attacking", "All tiles cost 1 movement", + "Can pass through impassable tiles", "Unable to capture cities"], + "attackSound": "shot" + }, { "name": "Rocket Artillery", "unitType": "Siege", @@ -1268,7 +1283,7 @@ "uniques": ["Can move after attacking","No defensive terrain bonus"] }, - /* + /* // THIS STUFF IS COMMENTED OUT!!! // Information Era { "name": "Mobile SAM", @@ -1282,20 +1297,6 @@ "attackSound": "shot" // 65 strength, 3 movement, requiredTech "Rocketry" in expansions }, - { - // "Hovering unit" unique gives ability to get into impassable tiles - and only that (no vision bonus or flying over ocean) - // Unit embarks like any other ground unit and has penalty for attacking over river or from embarked state - "name": "Helicopter Gunship", - "unitType": "Melee", - "movement": 6, - "strength": 60, - "cost": 425, - "requiredTech": "Computers", - "requiredResource": "Aluminum", - "uniques": ["Bonus vs Armor 100%", "No defensive terrain bonus", "Can move after attacking", "All tiles cost 1 movement", - "Can pass through impassable tiles", "Unable to capture cities"], - "attackSound": "shot" - }, { "name": "Jet Fighter", "unitType": "Fighter", diff --git a/buildSrc/src/main/kotlin/BuildConfig.kt b/buildSrc/src/main/kotlin/BuildConfig.kt index ad163508ab..f568efed13 100644 --- a/buildSrc/src/main/kotlin/BuildConfig.kt +++ b/buildSrc/src/main/kotlin/BuildConfig.kt @@ -3,8 +3,8 @@ package com.unciv.build object BuildConfig { const val kotlinVersion = "1.3.71" const val appName = "Unciv" - const val appCodeNumber = 507 - const val appVersion = "3.11.18" + const val appCodeNumber = 508 + const val appVersion = "3.11.18-patch1" const val gdxVersion = "1.9.12" const val roboVMVersion = "2.3.1"