forked from mirrors/webxoss-core
🐛 fix WX16-028 1st const
This commit is contained in:
parent
bc581c351e
commit
d0423c5ff0
1 changed files with 4 additions and 3 deletions
|
@ -118093,9 +118093,10 @@ var CardInfo = {
|
|||
actionAsyn: function () {
|
||||
return this.player.selectOptionalAsyn('LAUNCH',[this]).callback(this,function (card) {
|
||||
if (!card) return;
|
||||
var cards = this.player.enerCharge(1);
|
||||
card = cards[0];
|
||||
if (!card || !card.trap) return;
|
||||
card = this.player.mainDeck.cards(0);
|
||||
if (!card) return;
|
||||
card.trash();
|
||||
if (!card.trap) return;
|
||||
var signi = this.getOpposingSigni();
|
||||
if (!signi) return;
|
||||
return signi.bounceAsyn();
|
||||
|
|
Loading…
Reference in a new issue