forked from mirrors/webxoss-core
💩 add missing life bursts
WX16-029 WX16-031 WX16-032 WX16-033
This commit is contained in:
parent
334a5c0020
commit
137f72a679
1 changed files with 70 additions and 1 deletions
71
CardInfo.js
71
CardInfo.js
|
@ -115454,7 +115454,20 @@ var CardInfo = {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
"lifeBurst": "あなたのデッキから<トリック>のシグニ1枚を探して公開し手札に加える。その後、デッキをシャッフルする。"
|
// ======================
|
||||||
|
// 迸发效果
|
||||||
|
// ======================
|
||||||
|
burstEffectTexts: [
|
||||||
|
"【※】:あなたのデッキから<トリック>のシグニ1枚を探して公開し手札に加える。その後、デッキをシャッフルする。"
|
||||||
|
],
|
||||||
|
burstEffect: {
|
||||||
|
actionAsyn: function () {
|
||||||
|
var filter = function (card) {
|
||||||
|
return card.hasClass('トリック')
|
||||||
|
};
|
||||||
|
return this.player.seekAsyn(filter,1);
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
"2260": {
|
"2260": {
|
||||||
"pid": 2260,
|
"pid": 2260,
|
||||||
|
@ -118305,6 +118318,25 @@ var CardInfo = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}],
|
}],
|
||||||
|
// ======================
|
||||||
|
// 迸发效果
|
||||||
|
// ======================
|
||||||
|
burstEffectTexts: [
|
||||||
|
"【※】:あなたのトラッシュから<調理>のシグニ1枚までと《アクセ》を持つシグニ1枚までを手札に加える。"
|
||||||
|
],
|
||||||
|
burstEffect: {
|
||||||
|
actionAsyn: function () {
|
||||||
|
var filter = function (card) {
|
||||||
|
return card.hasClass('調理');
|
||||||
|
};
|
||||||
|
return this.player.pickCardAsyn(filter,0,1).callback(this,function () {
|
||||||
|
var filter = function (card) {
|
||||||
|
return card.acce;
|
||||||
|
};
|
||||||
|
return this.player.pickCardAsyn(filter,0,1);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
"2303": {
|
"2303": {
|
||||||
"pid": 2303,
|
"pid": 2303,
|
||||||
|
@ -118372,6 +118404,23 @@ var CardInfo = {
|
||||||
return this.player.infectZoneAsyn();
|
return this.player.infectZoneAsyn();
|
||||||
},
|
},
|
||||||
}],
|
}],
|
||||||
|
// ======================
|
||||||
|
// 迸发效果
|
||||||
|
// ======================
|
||||||
|
burstEffectTexts: [
|
||||||
|
"【※】:対戦相手の感染状態のシグニ1体をトラッシュに置く。"
|
||||||
|
],
|
||||||
|
burstEffect: {
|
||||||
|
actionAsyn: function () {
|
||||||
|
var filter = function (card) {
|
||||||
|
return card.isInfected();
|
||||||
|
};
|
||||||
|
return this.player.selectOpponentSigniAsyn(filter).callback(this,function (card) {
|
||||||
|
if (!card) return;
|
||||||
|
return card.trashAsyn();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
"2304": {
|
"2304": {
|
||||||
"pid": 2304,
|
"pid": 2304,
|
||||||
|
@ -118430,6 +118479,26 @@ var CardInfo = {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
// ======================
|
||||||
|
// 迸发效果
|
||||||
|
// ======================
|
||||||
|
burstEffectTexts: [
|
||||||
|
"【※】:あなたのシグニ1体をバニッシュする。そうした場合、対戦相手のシグニ1体をトラッシュに置く。"
|
||||||
|
],
|
||||||
|
burstEffect: {
|
||||||
|
actionAsyn: function () {
|
||||||
|
return this.player.selectSelfSigniAsyn().callback(this,function (card) {
|
||||||
|
if (!card) return;
|
||||||
|
return card.banishAsyn().callback(this,function (succ) {
|
||||||
|
if (!succ) return;
|
||||||
|
return this.player.selectOpponentSigniAsyn().callback(this,function (card) {
|
||||||
|
if (!card) return;
|
||||||
|
return card.trashAsyn();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
"2305": {
|
"2305": {
|
||||||
"pid": 2305,
|
"pid": 2305,
|
||||||
|
|
Loading…
Reference in a new issue