diff --git a/android/assets/jsons/Units.json b/android/assets/jsons/Units.json index ea1c0866a9..6ef498bf8c 100644 --- a/android/assets/jsons/Units.json +++ b/android/assets/jsons/Units.json @@ -865,6 +865,8 @@ cost: 325, requiredTech:"Flight", requiredResource:"Oil", + upgradesTo:"Bomber", + obsoleteTech:"Radar", hurryCostModifier:20, attackSound:"shot" }, @@ -948,7 +950,7 @@ name:"Fighter", unitType:"Fighter", movement:1, - strength:35, + strength:45, rangedStrength:45, range:8, cost: 375, @@ -959,6 +961,19 @@ "6 tiles in every direction always visible"] attackSound:"shot" }, + { + name:"Bomber", + unitType:"Bomber", + movement:1, + strength:65, + rangedStrength:65, + range:10, + cost: 375, + requiredTech:"Radar", + requiredResource:"Oil", + hurryCostModifier:20, + attackSound:"shot" + }, { name:"Landship", unitType:"Armor", diff --git a/android/build.gradle b/android/build.gradle index 148e927d8b..11e3b34cc8 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -21,8 +21,8 @@ android { applicationId "com.unciv.app" minSdkVersion 14 targetSdkVersion 28 - versionCode 273 - versionName "2.18.2" + versionCode 274 + versionName "2.18.3" } // Had to add this crap for Travis to build, it wanted to sign the app