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,6 +106909,7 @@ var CardInfo = {
(event.newZone === this.player.trashZone); (event.newZone === this.player.trashZone);
}, },
actionAsyn: function () { actionAsyn: function () {
return this.player.showCardsAsyn([this]).callback(this,function () {
return this.player.opponent.showCardsAsyn([this]).callback(this,function () { return this.player.opponent.showCardsAsyn([this]).callback(this,function () {
var cards = this.player.opponent.signis; var cards = this.player.opponent.signis;
return this.player.selectTargetOptionalAsyn(cards).callback(this,function (card) { return this.player.selectTargetOptionalAsyn(cards).callback(this,function (card) {
@ -106916,6 +106917,7 @@ var CardInfo = {
this.game.tillTurnEndAdd(this,card,'power',-2000); this.game.tillTurnEndAdd(this,card,'power',-2000);
}); });
}); });
});
} }
}); });
add(this,'onMove',effect); add(this,'onMove',effect);