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

33 lines
850 B
TypeScript

/// <reference path="./Purchasable.ts" />
class CryptoCurrency extends Purchasable {
public readonly resourceKey = ResourceKey.cryptoCurrency;
constructor() {
super(
'FaithCoin',
'faithcoin',
'faithcoins',
"A crypto coin that can't be spent directly, but provides a steady stream of passive income.",
true
);
this.valueInWholeNumbers = false;
}
public cost = (state: GameState): ResourceNumber => {
const cost: ResourceNumber = {};
const market = state.resource.cryptoMarket;
if (market !== undefined) {
cost.money = market.value;
} else {
cost.money = state.config.cfgInitialCost.cryptoCurrency;
}
return cost;
};
public isUnlocked = (): boolean => true;
public max = (state: GameState): number =>
state.config.cfgInitialMax.cryptoCurrency ?? 0;
}