forked from mirrors/webxoss-core
Fix WX13-038 Const
This commit is contained in:
parent
72e136d985
commit
eb47322c2d
1 changed files with 7 additions and 5 deletions
12
CardInfo.js
12
CardInfo.js
|
@ -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);
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue