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

12 lines
265 B
TypeScript

/// <reference path="./Infrastructure.ts" />
class Church extends Infrastructure {
constructor () {
super('Churches',
'Preaching grounds for 2 pastors.');
this.cost.money = 10000;
this._costMultiplier.money = 1.01;
this._baseMax = 2;
}
}