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/House.ts

24 lines
801 B
TypeScript

/// <reference path="./Infrastructure.ts" />
class House extends Infrastructure {
constructor (config: GameConfig) {
super('Houses',
`Provides room to house ${config.formatNumber(config.cfgHouseFollowerCapacity)} followers.`);
this.cost.money = config.cfgHouseStartingCost;
this._costMultiplier.money = config.cfgHouseCostMultiplier;
}
public max: (state: GameState) => number = (state) =>
(state.getResource(ResourceKey.compounds)?.value ?? 0)
* state.config.cfgCompoundHouseCapacity;
public isUnlocked (state: GameState): boolean {
if (this._isUnlocked) return true;
const compounds = state.getResource(ResourceKey.compounds);
if (compounds !== null && compounds.value > 0) {
this._isUnlocked = true;
}
return this._isUnlocked;
}
}