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

18 lines
459 B
TypeScript
Raw Normal View History

2021-09-04 23:16:32 -05:00
/// <reference path="./Purchasable.ts" />
abstract class Research extends Purchasable {
2021-09-05 14:45:37 -05:00
public readonly resourceType: ResourceType = ResourceType.research;
2021-09-04 23:16:32 -05:00
constructor (
public readonly name: string,
public readonly description: string
) {
super(name, description);
this.value = 0;
this.clickText = 'Learn';
2021-09-05 14:45:37 -05:00
this.clickDescription = 'Complete this research.';
2021-09-04 23:16:32 -05:00
}
2021-09-05 14:45:37 -05:00
public max: (_state: GameState) => number = (_state) => 1;
2021-09-04 23:16:32 -05:00
}