Starsector API
Loading...
Searching...
No Matches
LevelBasedEffect.java
Go to the documentation of this file.
1package com.fs.starfarer.api.characters;
2
3public interface LevelBasedEffect {
4 public String getEffectDescription(float level);
6
7
8 public static enum ScopeDescription {
9 PILOTED_SHIP,
10 ALL_SHIPS,
11 ALL_COMBAT_SHIPS,
12 ALL_CARRIERS,
13 //ALL_SHIPS_WITH_FIGHTER_BAYS,
14 ALL_FIGHTERS,
15 SHIP_FIGHTERS,
16 GOVERNED_OUTPOST,
17 ALL_OUTPOSTS,
18 FLEET,
19 CUSTOM,
20 NONE,
21 }
22
23 public ScopeDescription getScopeDescription();
24}