Added Bomber unit

This commit is contained in:
Yair Morgenstern
2019-07-17 21:33:33 +03:00
parent dd0cdac077
commit 0ba243c5d8
2 changed files with 18 additions and 3 deletions

View File

@ -865,6 +865,8 @@
cost: 325, cost: 325,
requiredTech:"Flight", requiredTech:"Flight",
requiredResource:"Oil", requiredResource:"Oil",
upgradesTo:"Bomber",
obsoleteTech:"Radar",
hurryCostModifier:20, hurryCostModifier:20,
attackSound:"shot" attackSound:"shot"
}, },
@ -948,7 +950,7 @@
name:"Fighter", name:"Fighter",
unitType:"Fighter", unitType:"Fighter",
movement:1, movement:1,
strength:35, strength:45,
rangedStrength:45, rangedStrength:45,
range:8, range:8,
cost: 375, cost: 375,
@ -959,6 +961,19 @@
"6 tiles in every direction always visible"] "6 tiles in every direction always visible"]
attackSound:"shot" 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", name:"Landship",
unitType:"Armor", unitType:"Armor",

View File

@ -21,8 +21,8 @@ android {
applicationId "com.unciv.app" applicationId "com.unciv.app"
minSdkVersion 14 minSdkVersion 14
targetSdkVersion 28 targetSdkVersion 28
versionCode 273 versionCode 274
versionName "2.18.2" versionName "2.18.3"
} }
// Had to add this crap for Travis to build, it wanted to sign the app // Had to add this crap for Travis to build, it wanted to sign the app