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

56 lines
1.7 KiB
TypeScript

/// <reference path="./Purchasable.ts" />
class Money extends Purchasable {
public readonly resourceType: ResourceType = ResourceType.consumable;
private _lastCollectionTime = 0;
constructor (
public value: number
) {
super('Money', 'Used to purchase goods and services.');
this.clickText = 'Collect Tithes';
this.clickDescription = 'Voluntary contributions from followers.';
this.valueInWholeNumbers = false;
this._isUnlocked = true;
}
public max: (state: GameState) => number = (state: GameState) => {
let max: number = state.config.cfgStartingMoneyMax;
max += state.getResource('cmpnd').value * 500000;
return max;
};
public inc: (state: GameState) => number = (state) => {
let inc = 0;
// crypto currency
inc += state.getResource('crpto').value
* state.config.cfgCryptoReturnAmount;
return inc;
};
protected _purchaseAmount (state: GameState): number {
const plorg: IResource = state.getResource('plorg');
if (plorg.value === 0) {
state.log('You have no followers to collect from!');
return 0;
}
const diff: number = state.now - this._lastCollectionTime;
if (diff < state.config.cfgTimeBetweenTithes) {
const lost: number = state.config.cfgTimeBetweenTithes / diff / 3;
state.getResource('creds').addValue(lost * -1, state);
}
// each follower gives you $10
const tithings: number = plorg.value * state.config.cfgTitheAmount;
this._lastCollectionTime = state.now;
return tithings;
}
protected _purchaseLog (amount: number, state: GameState): string {
const followers: number = state.getResource('plorg').value;
return `You collected $${state.formatNumber(amount)} from ${state.formatNumber(followers)} followers.`;
}
}