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

25 lines
688 B
TypeScript
Raw Normal View History

2021-09-04 23:16:32 -05:00
/// <reference path="./Research.ts" />
class BuildingPermit extends Research {
public readonly resourceKey = ResourceKey.buildingPermit;
constructor(config: GameConfig) {
super(
2021-09-06 08:51:41 -05:00
'Building Permit',
'building permit',
'building permits',
'Unlocks several new buildings you can build outside of your compounds.'
);
this.cost.money = config.cfgInitialCost.buildingPermit;
2021-09-04 23:16:32 -05:00
}
public isUnlocked = (state: GameState): boolean => {
2021-09-04 23:16:32 -05:00
if (this._isUnlocked) return true;
const compounds = state.resource.compounds;
if (compounds !== undefined && compounds.value > 0) {
2021-09-04 23:16:32 -05:00
this._isUnlocked = true;
}
return this._isUnlocked;
};
2021-09-04 23:16:32 -05:00
}