forked from mirrors/webxoss-core
💫 implement SP27-003
This commit is contained in:
parent
95196a3e68
commit
d8bc1eb796
1 changed files with 5 additions and 12 deletions
15
CardInfo.js
15
CardInfo.js
|
@ -131777,13 +131777,6 @@ var CardInfo = {
|
||||||
"limiting": "",
|
"limiting": "",
|
||||||
"imgUrl": "http://www.takaratomy.co.jp/products/wixoss/wxwp/images/card/SP27/SP27-003.jpg",
|
"imgUrl": "http://www.takaratomy.co.jp/products/wixoss/wxwp/images/card/SP27/SP27-003.jpg",
|
||||||
"illust": "霜月友",
|
"illust": "霜月友",
|
||||||
faqs: [
|
|
||||||
{
|
|
||||||
// TODO: test
|
|
||||||
"q": "相手の場に《原槍 アークエナジェ》と《原槍 エナジェ》があります。こちらは《肆ノ遊姫 ベイゴマ》でアタックし、効果で自分の《惨之遊 †バカラ†》をバニッシュしました。《原槍 アークエナジェ》の常時能力により《惨之遊 †バカラ†》はトラッシュに置かれますが、自動能力は発動しますか?",
|
|
||||||
"a": "はい、発動します。《原槍 アークエナジェ》の常時能力は、バニッシュされる場合の置き場所を変更するだけであり、この場合《惨之遊 †バカラ†》を移動させているのはあなたの《肆ノ遊姫 ベイゴマ》の効果によるものとなります。結果的にあなたの効果で《惨之遊 †バカラ†》が場から直接トラッシュに置かれましたので、自動能力は発動します。"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"classes": [
|
"classes": [
|
||||||
"精武",
|
"精武",
|
||||||
"遊具"
|
"遊具"
|
||||||
|
@ -131813,10 +131806,10 @@ var CardInfo = {
|
||||||
description: '2570-const-0',
|
description: '2570-const-0',
|
||||||
triggerCondition: function (event) {
|
triggerCondition: function (event) {
|
||||||
if (!event.isSigni) return false;
|
if (!event.isSigni) return false;
|
||||||
// TODO: 判断
|
if (event.newZone !== this.player.trashZone) return false;
|
||||||
// 1.是否(因效果)被驱逐
|
var source = this.game.getEffectSource();
|
||||||
// 2.是否从场上放置到废弃区
|
if (!source || source.player !== this.player) return false;
|
||||||
// 3.是否被作为resona的出现条件,作为resona出现条件时不发动
|
return true;
|
||||||
},
|
},
|
||||||
actionAsyn: function () {
|
actionAsyn: function () {
|
||||||
var filter = function (card) {
|
var filter = function (card) {
|
||||||
|
|
Loading…
Reference in a new issue