1
0
Fork 1
mirror of https://github.com/webxoss/webxoss-core.git synced 2025-04-02 00:49:12 +02:00
This commit is contained in:
WEBXOSS 2016-10-31 23:31:04 +08:00
parent 8aa45b8aad
commit c3dd557d3e
3 changed files with 10 additions and 11 deletions

View file

@ -107190,7 +107190,7 @@ var CardInfo = {
"wxid": "WX13-005B", "wxid": "WX13-005B",
sideA: 1769, sideA: 1769,
name: "白羅星 ニュームーン", name: "白羅星 ニュームーン",
name_zh_CN: "黑幻虫 大王具足虫【HS】", name_zh_CN: "白罗星 新月",
name_en: "New Moon, White Natural Star", name_en: "New Moon, White Natural Star",
"kana": "ハクラセイニュームーン", "kana": "ハクラセイニュームーン",
"rarity": "LR", "rarity": "LR",
@ -107489,7 +107489,7 @@ var CardInfo = {
add(signi,'effectFilters',function (card) { add(signi,'effectFilters',function (card) {
return (card.player === this.player) || (card.type !== 'SIGNI'); return (card.player === this.player) || (card.type !== 'SIGNI');
}); });
}); },this);
} }
}], }],
// ====================== // ======================
@ -108691,9 +108691,9 @@ var CardInfo = {
], ],
artsEffectTexts_zh_CN: [ artsEffectTexts_zh_CN: [
"从以下2项选择1项\n" + "从以下2项选择1项\n" +
"①あなたのデッキから、あなたのシグニ1体のクロス条件に含まれるすべてのシグニを1枚ずつ探して場に出す。その後、デッキをシャッフルする。\n" + "①从你的卡组中找1张被你的场上的一只精灵的【CROSS】条件包含的精灵出场。之后洗切牌组。\n" +
"②你的场上存在CROSS状态的SIGNI的场合将对战对手的1只SIGNI驱逐。", "②你的场上存在CROSS状态的SIGNI的场合将对战对手的1只SIGNI驱逐。",
"あなたのデッキから、あなたのシグニ1体のクロス条件に含まれるすべてのシグニを1枚ずつ探して場に出す。その後、デッキをシャッフルする。", "从你的卡组中找1张被你的场上的一只精灵的【CROSS】条件包含的精灵出场。之后洗切牌组。",
"你的场上存在CROSS状态的SIGNI的场合将对战对手的1只SIGNI驱逐。" "你的场上存在CROSS状态的SIGNI的场合将对战对手的1只SIGNI驱逐。"
], ],
artsEffectTexts_en: [ artsEffectTexts_en: [
@ -114797,7 +114797,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-294.jpg", "imgUrl": "http://www.takaratomy.co.jp/products/wixoss/wxwp/images/card/PR/PR-294.jpg",
"illust": "ときち", "illust": "ときち",
@ -114821,12 +114821,12 @@ var CardInfo = {
// ====================== // ======================
constEffectTexts: [ constEffectTexts: [
"【常時能力】:このシグニは場にあるかぎり、<地獣>でもある。", "【常時能力】:このシグニは場にあるかぎり、<地獣>でもある。",
"【常時能力】:あなたのエナゾーンにカードが7枚以上あるかぎり、このシグニのパワーは8000になる。", "【常時能力】:あなたのエナゾーンにカードが7枚以上あるかぎり、このシグニのパワーは7000になる。",
"【常時能力】:あなたのライフクロス1枚がクラッシュされるたび、あなたのデッキの一番上のカードをエナゾーンに置く。この効果は1ターンに一度しか発動しない。" "【常時能力】:あなたのライフクロス1枚がクラッシュされるたび、あなたのデッキの一番上のカードをエナゾーンに置く。この効果は1ターンに一度しか発動しない。"
], ],
constEffectTexts_zh_CN: [ constEffectTexts_zh_CN: [
"【常】只要这只SIGNI在场上她也是地兽。", "【常】只要这只SIGNI在场上她也是地兽。",
"【常】只要你的能量区中存在7张以上的卡这只SIGNI的力量就变为8000。", "【常】只要你的能量区中存在7张以上的卡这只SIGNI的力量就变为7000。",
"【常】你的1张生命护甲被击溃时将你卡组顶的1张卡放置到能量区。这个效果1回合只能发动1次。" "【常】你的1张生命护甲被击溃时将你卡组顶的1张卡放置到能量区。这个效果1回合只能发动1次。"
], ],
constEffectTexts_en: [ constEffectTexts_en: [
@ -114843,7 +114843,7 @@ var CardInfo = {
return this.player.enerZone.cards.length >= 7; return this.player.enerZone.cards.length >= 7;
}, },
action: function (set,add) { action: function (set,add) {
set(this,'power',8000); set(this,'power',7000);
} }
},{ },{
fixed: true, fixed: true,

View file

@ -45,9 +45,8 @@ Mask.prototype.set = function (reset) {
effect.disabled = true; effect.disabled = true;
},this); },this);
} else { } else {
if (inArr(this.prop,Card.abilityProps)) { if (!reset && inArr(this.prop,Card.abilityProps)) {
// 不能获得新能力 // 不能获得新能力
if (reset) return;
if (target.canNotGainAbility) return; if (target.canNotGainAbility) return;
if (target.player && target.player.canNotGainAbility) return; if (target.player && target.player.canNotGainAbility) return;
} }

@ -1 +1 @@
Subproject commit 5f96f9ee4db2cccba508d49307cd3fc8f28f31af Subproject commit 65663ac38047bea7a8456b005514dae3a9825441