You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- function StatBuff(stat, amount, turns) {
- this.stat = stat;
- this.amount = amount;
- this.turns = turns;
- this.alive = true;
- }
-
- StatBuff.prototype.tick = function() {
- this.turns--;
- if (this.turns == 0) {
- this.alive = false;
- }
- };
|