crunch
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

14 行
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. };