From: TheSaminator Date: Mon, 20 Jun 2022 21:50:06 +0000 (-0400) Subject: Reduce Felinae Felices ship costs X-Git-Url: https://gitweb.starshipfights.net/?a=commitdiff_plain;h=4a01dedc645d3dc2d82207f5c88a16a2a95ddd97;p=starship-fights Reduce Felinae Felices ship costs --- diff --git a/src/commonMain/kotlin/net/starshipfights/game/ship_weapons.kt b/src/commonMain/kotlin/net/starshipfights/game/ship_weapons.kt index e7de6dc..9cdff0f 100644 --- a/src/commonMain/kotlin/net/starshipfights/game/ship_weapons.kt +++ b/src/commonMain/kotlin/net/starshipfights/game/ship_weapons.kt @@ -126,7 +126,7 @@ sealed class ShipWeapon { get() = 1750.0 override val addsPointCost: Int - get() = numShots * 10 + get() = numShots * 5 override fun instantiate() = ShipWeaponInstance.ParticleClawLauncher(this) } @@ -141,7 +141,7 @@ sealed class ShipWeapon { get() = 1250.0 override val addsPointCost: Int - get() = numShots * 5 * firingArcs.size + get() = numShots * 5 override fun instantiate() = ShipWeaponInstance.LightningYarn(this) }