Starsector API
Loading...
Searching...
No Matches
MineStrikeStationStats.java
Go to the documentation of this file.
1package com.fs.starfarer.api.impl.combat;
2
3import com.fs.starfarer.api.combat.ShipAPI;
4
5
7
8 public static float MINE_RANGE_STATION = 3500;
9
10 @Override
11 public float getMineRange(ShipAPI ship) {
12 //return MINE_RANGE_STATION;
13 if (ship == null) return MINE_RANGE_STATION;
14 return ship.getMutableStats().getSystemRangeBonus().computeEffective(MINE_RANGE_STATION);
15 }
16
17
18}
19
20
21
22
23
24
25
26