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

14 lines
324 B
TypeScript
Raw Normal View History

/// <reference path="./Purchasable.ts" />
2021-08-20 17:12:32 -05:00
class Money extends Purchasable {
2021-08-20 17:12:32 -05:00
constructor (
public value: number,
public max: number
) {
super('Money', 'Used to purchase goods and services.', null);
this.clickText = 'Beg';
this.clickDescription = 'Alms for the poor.';
this.unlocked = true;
2021-08-20 17:12:32 -05:00
}
}