munch
選択できるのは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. };