1
0
Fork 0

Fix WX13 Tama(Arms) cards

WX13-062
  OnPlay
WX13-010
  Text
This commit is contained in:
WEBXOSS 2016-10-30 16:57:05 +08:00
parent 1c5fa570ee
commit 27f74f83bf

View file

@ -108598,7 +108598,7 @@ var CardInfo = {
"从你的卡组中探寻1张白色的SIGNI公开并加入手牌。之后洗切牌组。。" "从你的卡组中探寻1张白色的SIGNI公开并加入手牌。之后洗切牌组。。"
], ],
artsEffectTexts_en: [ artsEffectTexts_en: [
"Encore - White (You may use this card by paying its additional encore cost. If you do, this additionally gets \"Return this card to the LRIG Deck.\")\n" + "Encore - [White] (You may use this card by paying its additional encore cost. If you do, this additionally gets \"Return this card to the LRIG Deck.\")\n" +
"Search your deck for 1 white SIGNI, reveal it, and add it to your hand. Shuffle your deck afterwards." "Search your deck for 1 white SIGNI, reveal it, and add it to your hand. Shuffle your deck afterwards."
], ],
encore: { encore: {
@ -112401,14 +112401,12 @@ var CardInfo = {
"[On-Play]: If you have 3 SIGNI with \"Bow\" in their names on the field, return 1 of your opponent's level 2 or less SIGNI to their hand." "[On-Play]: If you have 3 SIGNI with \"Bow\" in their names on the field, return 1 of your opponent's level 2 or less SIGNI to their hand."
], ],
startUpEffects: [{ startUpEffects: [{
condition: function () { actionAsyn: function () {
var cards = this.player.signis.filter(function (signi) { var cards = this.player.signis.filter(function (signi) {
return (signi.name.indexOf('弓') !== -1); return (signi.name.indexOf('弓') !== -1);
},this); },this);
return (cards.length === 3); if (cards.length !== 3) return;
}, cards = this.player.opponent.signis.filter(function (signi) {
actionAsyn: function () {
var cards = this.player.opponent.signis.filter(function (signi) {
return signi.level <= 2; return signi.level <= 2;
},this); },this);
return this.player.selectTargetAsyn(cards).callback(this,function (card) { return this.player.selectTargetAsyn(cards).callback(this,function (card) {