forked from mirrors/webxoss-core
fix WX15-039 auto
This commit is contained in:
parent
5e5b66fc36
commit
07e8486f8c
1 changed files with 2 additions and 2 deletions
|
@ -106761,8 +106761,8 @@ var CardInfo = {
|
|||
constEffects: [{
|
||||
auto: 'onAttack',
|
||||
actionAsyn: function () {
|
||||
return this.decreasePowerAsyn(4000).callback(function (card) {
|
||||
if (card.power >= 0) return;
|
||||
return this.decreasePowerAsyn(4000).callback(this,function (card) {
|
||||
if (card.power > 0) return;
|
||||
return this.player.selectOptionalAsyn('BANISH',[this]).callback(this,function (card) {
|
||||
if (!card) return;
|
||||
return this.banishAsyn().callback(this,function (succ) {
|
||||
|
|
Loading…
Reference in a new issue