Merge pull request #39 from webxoss/fix

Bug fixs
This commit is contained in:
webxoss 2017-03-12 00:05:16 +08:00 committed by GitHub
commit 96f180deb3

View file

@ -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枚を探してダウン状態で場に出す。その後、デッキをシャッフルする。ターン終了時に、そのシグニを場からトラッシュに置く。"
], ],