forked from mirrors/webxoss-core
Fix WX13 Piruluk cards
WX13-049 Text WX13-049 Const2 WX13-003 Arts4
This commit is contained in:
parent
3d0cc329bc
commit
1c5fa570ee
1 changed files with 8 additions and 6 deletions
14
CardInfo.js
14
CardInfo.js
|
@ -94972,7 +94972,9 @@ var CardInfo = {
|
||||||
},{
|
},{
|
||||||
action: function (set,add) {
|
action: function (set,add) {
|
||||||
this.player.hands.forEach(function (card) {
|
this.player.hands.forEach(function (card) {
|
||||||
if (card.hasClass('天使')) set(card,'guardFlag',true);
|
if (card.hasClass('天使')) {
|
||||||
|
set(card,'guardFlag',true);
|
||||||
|
}
|
||||||
},this);
|
},this);
|
||||||
}
|
}
|
||||||
}],
|
}],
|
||||||
|
@ -108052,7 +108054,7 @@ var CardInfo = {
|
||||||
if (!card) return;
|
if (!card) return;
|
||||||
return card.banishAsyn();
|
return card.banishAsyn();
|
||||||
}).callback(this,function () {
|
}).callback(this,function () {
|
||||||
return this.player.discardAsyn();
|
return this.player.discardAsyn(1);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}]
|
}]
|
||||||
|
@ -111370,7 +111372,7 @@ var CardInfo = {
|
||||||
],
|
],
|
||||||
constEffectTexts_zh_CN: [
|
constEffectTexts_zh_CN: [
|
||||||
"【常】:只要你的废弃区中存在3张以上的魔法卡,这只SIGNI就不会因对战对手的效果被驱逐。",
|
"【常】:只要你的废弃区中存在3张以上的魔法卡,这只SIGNI就不会因对战对手的效果被驱逐。",
|
||||||
"【常】:这只SIGNI攻击时,你的废弃区中存在1张以上名字各不相同的<原子>SIGNI的场合,从废弃区将1张魔法卡加入手牌。"
|
"【常】:这只SIGNI攻击时,你的废弃区中存在7张以上名字各不相同的<原子>SIGNI的场合,从废弃区将1张魔法卡加入手牌。"
|
||||||
],
|
],
|
||||||
constEffectTexts_en: [
|
constEffectTexts_en: [
|
||||||
"[Constant]: As long as there are 3 or more spells in your trash, this SIGNI is not banished by your opponent's effects.",
|
"[Constant]: As long as there are 3 or more spells in your trash, this SIGNI is not banished by your opponent's effects.",
|
||||||
|
@ -111394,9 +111396,9 @@ var CardInfo = {
|
||||||
condition: function () {
|
condition: function () {
|
||||||
var cids = [];
|
var cids = [];
|
||||||
this.player.trashZone.cards.forEach(function (card) {
|
this.player.trashZone.cards.forEach(function (card) {
|
||||||
if (!signi.hasClass('原子')) return;
|
if (!card.hasClass('原子')) return;
|
||||||
if (inArr(signi.cid,cids)) return;
|
if (inArr(card.cid,cids)) return;
|
||||||
cids.push(signi.cid);
|
cids.push(card.cid);
|
||||||
},this);
|
},this);
|
||||||
return (cids.length >= 7);
|
return (cids.length >= 7);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue