This repository has been archived on 2022-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
irreligious/src/model/resource/Credibility.ts

15 lines
381 B
TypeScript

/// <reference path="./Passive.ts" />
class Credibility extends Passive {
constructor () {
super(
'Credibility',
'Affects your ability to recruit and retain followers.');
this.value = 100;
}
public max: (state: GameState) => number = (_state) => 100;
public inc: (state: GameState) => number = (state) =>
state.config.cfgCredibilityRestoreRate;
}