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.
 
 
 

15 lines
221 B

  1. module.exports = {
  2. type: 'invulnerability',
  3. events: {
  4. beforeDealDamage: function ({ damage }) {
  5. if (damage)
  6. damage.amount = 0;
  7. },
  8. beforeTakeDamage: function ({ damage }) {
  9. damage.amount = 0;
  10. }
  11. }
  12. };