divanov94

Untitled

Oct 13th, 2020
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const Mage = function (name) {
  2.         [this.name, this.health, this.mana] = [name, 100, 100];
  3.         this.cast = (spell = '') => {
  4.             this.mana -= 1;
  5.             console.log(`${this.name} cast ${spell}`);
  6.         };
  7.     };
Add Comment
Please, Sign In to add comment