Visible costing in many places
This commit is contained in:
@ -68,6 +68,12 @@ class SkillsTable {
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
isAtMinimum(skill: Skill) {
|
||||
let minimumCost = this.get(skill).governing.cost
|
||||
let currentCost = this.computeCost(skill);
|
||||
return currentCost <= minimumCost;
|
||||
}
|
||||
}
|
||||
|
||||
function geomInterpolate(
|
||||
|
Reference in New Issue
Block a user