1
0
Fork 0

🐛 fix WX16-048 spell

This commit is contained in:
WEBXOSS 2017-06-13 23:26:12 +08:00
parent d0423c5ff0
commit 2317096a91

View file

@ -119186,15 +119186,16 @@ var CardInfo = {
}, },
},{ },{
source: this, source: this,
description: '2315-attached-2', description: '2315-attached-3',
actionAsyn: function () { actionAsyn: function () {
var cards = concat(this.player.mainDeck.getTopCards(5),this.player.opponent.mainDeck.getTopCards(5)); var cards = concat(this.player.mainDeck.getTopCards(5),this.player.opponent.mainDeck.getTopCards(5));
this.game.trashCards(cards); this.game.trashCards(cards);
}, },
}]; }];
return this.player.selectSomeAsyn('LAUNCH',effects,1,count).callback(this,function (effect) { return this.player.selectSomeAsyn('LAUNCH',effects,1,count).callback(this,function (effects) {
if (!effect) return; return Callback.forEach(effects,function (effect) {
return effect.actionAsyn.call(this); return effect.actionAsyn.call(this);
},this);
}); });
}); });
}, },