Starsector API
Loading...
Searching...
No Matches
DynamicStatsAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api.util;
2
3import java.util.Map;
4
5import com.fs.starfarer.api.combat.MutableStat;
6import com.fs.starfarer.api.combat.StatBonus;
7
21public interface DynamicStatsAPI {
22
28 MutableStat getStat(String id);
29
35 float getValue(String id);
36
37
38 StatBonus getMod(String id);
39 float getValue(String id, float base);
40
41
43
46
47
48 boolean isEmpty();
49
50}
Map< String, StatBonus > getMods()
Map< String, MutableStat > getStats()
float getValue(String id, float base)