forked from mirrors/webxoss-core
Hot fix WX14-073
This commit is contained in:
parent
60fc70f38b
commit
5c32f5111e
1 changed files with 5 additions and 1 deletions
|
@ -121031,7 +121031,11 @@ var CardInfo = {
|
||||||
return (card.type === 'SPELL');
|
return (card.type === 'SPELL');
|
||||||
},this);
|
},this);
|
||||||
if (cards.length < 3) return;
|
if (cards.length < 3) return;
|
||||||
return this.decreasePowerAsyn(3000,1,1);
|
cards = this.player.opponent.signis;
|
||||||
|
return this.player.selectTargetAsyn(cards).callback(this,function (card) {
|
||||||
|
if (!card) return;
|
||||||
|
this.game.tillTurnEndAdd(this,card,'power',-3000);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}],
|
}],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue