mirror of
https://github.com/webxoss/webxoss-core.git
synced 2024-11-20 06:49:53 +01:00
commit
d3ec7909f9
1 changed files with 6 additions and 6 deletions
12
CardInfo.js
12
CardInfo.js
|
@ -123512,8 +123512,8 @@ var CardInfo = {
|
||||||
"【出】手札から緑の<龍獣>のシグニを1枚捨てる:あなたのデッキの上からカードを2枚公開する。その中からすべての<龍獣>のシグニをエナゾーンに置き、残りを好きな順番でデッキの一番上に置く。"
|
"【出】手札から緑の<龍獣>のシグニを1枚捨てる:あなたのデッキの上からカードを2枚公開する。その中からすべての<龍獣>のシグニをエナゾーンに置き、残りを好きな順番でデッキの一番上に置く。"
|
||||||
],
|
],
|
||||||
startUpEffectTexts_zh_CN: [
|
startUpEffectTexts_zh_CN: [
|
||||||
"【出】从手牌将1张绿色的<龙兽>SIGNI舍弃:对战对手的能量区中存在3张以上的卡的场合,对战对手自己从能量区中将1张卡放置到废弃区。",
|
"【出】从手牌将1张红色的<龙兽>SIGNI舍弃:对战对手的能量区中存在3张以上的卡的场合,对战对手自己从能量区中将1张卡放置到废弃区。",
|
||||||
"【出】从手牌将1张红色的<龙兽>SIGNI舍弃:从你的卡组顶将2张卡公开。从中将所有的<龙兽>SIGNI放置到能量区,剩下的按任意顺序放置到卡组最上方。"
|
"【出】从手牌将1张绿色的<龙兽>SIGNI舍弃:从你的卡组顶将2张卡公开。从中将所有的<龙兽>SIGNI放置到能量区,剩下的按任意顺序放置到卡组最上方。"
|
||||||
],
|
],
|
||||||
startUpEffectTexts_en: [
|
startUpEffectTexts_en: [
|
||||||
"[On-Play] Discard 1 red <Dragon Beast> SIGNI from your hand: If there are 3 or more cards in your opponent's Ener Zone, your opponent puts 1 card from their Ener Zone into the trash.",
|
"[On-Play] Discard 1 red <Dragon Beast> SIGNI from your hand: If there are 3 or more cards in your opponent's Ener Zone, your opponent puts 1 card from their Ener Zone into the trash.",
|
||||||
|
@ -123522,12 +123522,12 @@ var CardInfo = {
|
||||||
startUpEffects: [{
|
startUpEffects: [{
|
||||||
costCondition: function () {
|
costCondition: function () {
|
||||||
return this.player.hands.some(function (card) {
|
return this.player.hands.some(function (card) {
|
||||||
return card.hasClass('龍獣') && card.hasColor('green');
|
return card.hasClass('龍獣') && card.hasColor('red');
|
||||||
},this);
|
},this);
|
||||||
},
|
},
|
||||||
costAsyn: function () {
|
costAsyn: function () {
|
||||||
var cards = this.player.hands.filter(function (card) {
|
var cards = this.player.hands.filter(function (card) {
|
||||||
return card.hasClass('龍獣') && card.hasColor('green');
|
return card.hasClass('龍獣') && card.hasColor('red');
|
||||||
},this);
|
},this);
|
||||||
return this.player.selectAsyn('PAY',cards).callback(this,function (card) {
|
return this.player.selectAsyn('PAY',cards).callback(this,function (card) {
|
||||||
if (!card) return;
|
if (!card) return;
|
||||||
|
@ -123545,12 +123545,12 @@ var CardInfo = {
|
||||||
},{
|
},{
|
||||||
costCondition: function () {
|
costCondition: function () {
|
||||||
return this.player.hands.some(function (card) {
|
return this.player.hands.some(function (card) {
|
||||||
return card.hasClass('龍獣') && card.hasColor('red');
|
return card.hasClass('龍獣') && card.hasColor('green');
|
||||||
},this);
|
},this);
|
||||||
},
|
},
|
||||||
costAsyn: function () {
|
costAsyn: function () {
|
||||||
var cards = this.player.hands.filter(function (card) {
|
var cards = this.player.hands.filter(function (card) {
|
||||||
return card.hasClass('龍獣') && card.hasColor('red');
|
return card.hasClass('龍獣') && card.hasColor('green');
|
||||||
},this);
|
},this);
|
||||||
return this.player.selectAsyn('PAY',cards).callback(this,function (card) {
|
return this.player.selectAsyn('PAY',cards).callback(this,function (card) {
|
||||||
if (!card) return;
|
if (!card) return;
|
||||||
|
|
Loading…
Reference in a new issue