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,
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",

View File

@ -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