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

24 lines
694 B
TypeScript
Raw Normal View History

/// <reference path="./IResource.ts" />
2021-08-18 10:09:19 -05:00
class Religion implements IResource {
public readonly resourceType: ResourceType = ResourceType.Religion;
2021-08-21 12:45:58 -05:00
public readonly clickText: null = null;
public readonly clickDescription: null = null;
2021-08-21 17:06:51 -05:00
public readonly clickAction: null = null;
2021-08-21 12:45:58 -05:00
public readonly advanceAction: null = null;
public readonly cost: null = null;
public readonly max: null = null;
public readonly inc: null = null;
2021-08-22 11:07:49 -05:00
public readonly valueInWholeNumbers: boolean = true;
2021-08-18 10:09:19 -05:00
constructor (
public readonly name: string,
2021-08-18 15:36:02 -05:00
public readonly description: string,
2021-08-20 17:12:32 -05:00
public value: number,
) { }
public isUnlocked (state: GameState): boolean {
return true;
2021-08-18 10:09:19 -05:00
}
}