crunch
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

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