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

27 lines
667 B
TypeScript

/// <reference path="./Infrastructure.ts" />
class House extends Infrastructure {
constructor () {
super('Houses',
'Provides room to house 10 followers.');
this.cost.money = 150000;
this._baseMax = 0;
this._costMultiplier.money = 1.1;
}
public max (state: GameState): number {
let max: number = this._baseMax;
max += state.getResource('cmpnd').value * 2;
return max;
}
public isUnlocked (state: GameState): boolean {
if (this._isUnlocked) return true;
const compounds: IResource = state.getResource('cmpnd');
if (compounds.value > 0) {
this._isUnlocked = true;
}
return this._isUnlocked;
}
}