Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- 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;
- }
- };
|