From 8fc26baeee7f77fffdf8c91f4776d2b7b609f173 Mon Sep 17 00:00:00 2001 From: TheSaminator Date: Tue, 31 May 2022 13:30:53 -0400 Subject: [PATCH] Make Felinae ships cheaper --- .../kotlin/starshipfights/game/ship_types.kt | 10 +++++----- .../kotlin/starshipfights/game/ship_weapons.kt | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/commonMain/kotlin/starshipfights/game/ship_types.kt b/src/commonMain/kotlin/starshipfights/game/ship_types.kt index be4b766..4dc941b 100644 --- a/src/commonMain/kotlin/starshipfights/game/ship_types.kt +++ b/src/commonMain/kotlin/starshipfights/game/ship_types.kt @@ -56,11 +56,11 @@ enum class ShipWeightClass( GRAND_CRUISER -> 300 COLOSSUS -> 370 - FF_ESCORT -> 100 - FF_DESTROYER -> 150 - FF_CRUISER -> 250 - FF_BATTLECRUISER -> 350 - FF_BATTLESHIP -> 400 + FF_ESCORT -> 50 + FF_DESTROYER -> 100 + FF_CRUISER -> 200 + FF_BATTLECRUISER -> 250 + FF_BATTLESHIP -> 300 AUXILIARY_SHIP -> 50 LIGHT_CRUISER -> 100 diff --git a/src/commonMain/kotlin/starshipfights/game/ship_weapons.kt b/src/commonMain/kotlin/starshipfights/game/ship_weapons.kt index a1b5f79..a54233e 100644 --- a/src/commonMain/kotlin/starshipfights/game/ship_weapons.kt +++ b/src/commonMain/kotlin/starshipfights/game/ship_weapons.kt @@ -127,7 +127,7 @@ sealed class ShipWeapon { get() = 1750.0 override val addsPointCost: Int - get() = numShots * 15 + get() = numShots * 10 override fun instantiate() = ShipWeaponInstance.ParticleClawLauncher(this) } @@ -142,7 +142,7 @@ sealed class ShipWeapon { get() = 1250.0 override val addsPointCost: Int - get() = numShots * 5 * (firingArcs.size + 1) + get() = numShots * 5 * firingArcs.size override fun instantiate() = ShipWeaponInstance.LightningYarn(this) } -- 2.25.1