crunch
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.

14 lines
242 B

  1. function StatBuff(stat, amount, turns) {
  2. this.stat = stat;
  3. this.amount = amount;
  4. this.turns = turns;
  5. this.alive = true;
  6. }
  7. StatBuff.prototype.tick = function() {
  8. this.turns--;
  9. if (this.turns == 0) {
  10. this.alive = false;
  11. }
  12. };