mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-02-13 16:13:26 +01:00
commit
96f180deb3
1 changed files with 13 additions and 9 deletions
22
CardInfo.js
22
CardInfo.js
|
@ -115079,7 +115079,7 @@ var CardInfo = {
|
||||||
"color": "green",
|
"color": "green",
|
||||||
"level": 1,
|
"level": 1,
|
||||||
"limit": 0,
|
"limit": 0,
|
||||||
"power": 2000,
|
"power": 1000,
|
||||||
"limiting": "",
|
"limiting": "",
|
||||||
"imgUrl": "http://www.takaratomy.co.jp/products/wixoss/wxwp/images/card/PR/PR-291.jpg",
|
"imgUrl": "http://www.takaratomy.co.jp/products/wixoss/wxwp/images/card/PR/PR-291.jpg",
|
||||||
"illust": "ときち",
|
"illust": "ときち",
|
||||||
|
@ -117645,12 +117645,16 @@ var CardInfo = {
|
||||||
},{
|
},{
|
||||||
actionAsyn: function () {
|
actionAsyn: function () {
|
||||||
this.game.trashCards(this.player.hands);
|
this.game.trashCards(this.player.hands);
|
||||||
var cards = this.player.trashZone.cards.filter(function (card) {
|
var done = false;
|
||||||
return card.hasClass('毒牙');
|
return Callback.loop(this,2,function () {
|
||||||
},this);
|
if (done) return;
|
||||||
return this.player.selectOptionalAsyn('SUMMON_SIGNI',cards).callback(this,function (card) {
|
var cards = this.player.trashZone.cards.filter(function (card) {
|
||||||
if (!card) return;
|
return card.hasClass('毒牙') && card.canSummon();
|
||||||
return card.summonAsyn();
|
},this);
|
||||||
|
return this.player.selectOptionalAsyn('SUMMON_SIGNI',cards).callback(this,function (card) {
|
||||||
|
if (!card) return done = true;
|
||||||
|
return card.summonAsyn();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}]
|
}]
|
||||||
|
@ -124599,7 +124603,7 @@ var CardInfo = {
|
||||||
return this.upAsyn();
|
return this.upAsyn();
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
this.game.tillTurnEndAdd(this,this.player,'onSigniBanished',effect)
|
this.game.tillTurnEndAdd(this,this.player.opponent,'onSigniBanished',effect)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}],
|
}],
|
||||||
|
@ -124931,7 +124935,7 @@ var CardInfo = {
|
||||||
// ======================
|
// ======================
|
||||||
// 技艺效果
|
// 技艺效果
|
||||||
// ======================
|
// ======================
|
||||||
timmings: ['mainPhase', 'attackPhase'],
|
timmings: ['mainPhase'],
|
||||||
artsEffectTexts: [
|
artsEffectTexts: [
|
||||||
"あなたのデッキから赤のシグニ1枚を探してダウン状態で場に出す。その後、デッキをシャッフルする。ターン終了時に、そのシグニを場からトラッシュに置く。"
|
"あなたのデッキから赤のシグニ1枚を探してダウン状態で場に出す。その後、デッキをシャッフルする。ターン終了時に、そのシグニを場からトラッシュに置く。"
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue