Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

17 righe
251 B

  1. module.exports = {
  2. type: 'holyVengeance',
  3. persist: true,
  4. events: {
  5. afterDealDamage: function ({ damage, target }) {
  6. damage.dealt *= 0.5;
  7. this.obj.stats.getHp({
  8. heal: damage,
  9. source: this.obj,
  10. target: this.obj
  11. });
  12. }
  13. }
  14. };