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

20 lines
535 B
TypeScript

/// <reference path="./Infrastructure.ts" />
class Compound extends Infrastructure {
constructor () {
super('Compounds',
'Provides space for tents, houses, and churches and a place to hide more money.');
this.cost.money = 15000;
this._costMultiplier.money = 1.5;
}
public isUnlocked (state: GameState): boolean {
if (this._isUnlocked) return true;
const tents: IResource = state.getResource('tents');
if (tents.value >= 5) {
this._isUnlocked = true;
}
return this._isUnlocked;
}
}