1
0
Fork 0

Fix WX13-038 Const

This commit is contained in:
WEBXOSS 2016-10-30 14:08:03 +08:00
parent 72e136d985
commit eb47322c2d

View file

@ -106909,11 +106909,13 @@ var CardInfo = {
(event.newZone === this.player.trashZone);
},
actionAsyn: function () {
return this.player.opponent.showCardsAsyn([this]).callback(this,function () {
var cards = this.player.opponent.signis;
return this.player.selectTargetOptionalAsyn(cards).callback(this,function (card) {
if (!card) return;
this.game.tillTurnEndAdd(this,card,'power',-2000);
return this.player.showCardsAsyn([this]).callback(this,function () {
return this.player.opponent.showCardsAsyn([this]).callback(this,function () {
var cards = this.player.opponent.signis;
return this.player.selectTargetOptionalAsyn(cards).callback(this,function (card) {
if (!card) return;
this.game.tillTurnEndAdd(this,card,'power',-2000);
});
});
});
}