1
0
Fork 0

Fix WX14-031

This commit is contained in:
WEBXOSS 2016-12-10 00:20:47 +08:00
parent 0c66a0e72c
commit 64e3d8f6a8

View file

@ -116872,14 +116872,15 @@ var CardInfo = {
var effect = this.game.newEffect({ var effect = this.game.newEffect({
source: this, source: this,
description: '1897-const-0', description: '1897-const-0',
triggerCondition: function (event) {
return event.card.hasClass('天使')
},
actionAsyn: function () { actionAsyn: function () {
return this.decreasePowerAsyn(3000); return this.decreasePowerAsyn(3000);
} }
}); });
add(this.player,'onSigniBanished',effect); this.player.signis.forEach(function (signi) {
if (signi === this) return;
if (!signi.hasClass('天使')) return;
add(signi,'onBanish',effect);
});
} }
}], }],
// ====================== // ======================