forked from mirrors/webxoss-core
🐛 fix auto effects with wisdom
This commit is contained in:
parent
ce6e63632e
commit
b1498931b1
1 changed files with 7 additions and 7 deletions
14
CardInfo.js
14
CardInfo.js
|
@ -116605,9 +116605,9 @@ var CardInfo = {
|
||||||
"【常】英知=10:このシグニが正面にアタックする場合、このシグニは正面に加えてその隣のシグニゾーン1つにアタックしてもよい。",
|
"【常】英知=10:このシグニが正面にアタックする場合、このシグニは正面に加えてその隣のシグニゾーン1つにアタックしてもよい。",
|
||||||
],
|
],
|
||||||
constEffects: [{
|
constEffects: [{
|
||||||
wisdom: 7,
|
|
||||||
auto: 'onAttack',
|
auto: 'onAttack',
|
||||||
effect: {
|
effect: {
|
||||||
|
wisdom: 7,
|
||||||
actionAsyn: function () {
|
actionAsyn: function () {
|
||||||
this.player.enerCharge(2);
|
this.player.enerCharge(2);
|
||||||
},
|
},
|
||||||
|
@ -116748,17 +116748,17 @@ var CardInfo = {
|
||||||
"【自】英知=6:このシグニがアタックしたとき、あなたのデッキの一番上のカードをエナゾーンに置く。(あなたの場にある<英知>のシグニのレベルの合計がちょうど6であるかぎり有効になる)"
|
"【自】英知=6:このシグニがアタックしたとき、あなたのデッキの一番上のカードをエナゾーンに置く。(あなたの場にある<英知>のシグニのレベルの合計がちょうど6であるかぎり有効になる)"
|
||||||
],
|
],
|
||||||
constEffects: [{
|
constEffects: [{
|
||||||
wisdom: 4,
|
|
||||||
auto: 'onAttack',
|
auto: 'onAttack',
|
||||||
effect: {
|
effect: {
|
||||||
|
wisdom: 4,
|
||||||
actionAsyn: function () {
|
actionAsyn: function () {
|
||||||
this.player.draw(1);
|
this.player.draw(1);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},{
|
},{
|
||||||
wisdom: 6,
|
|
||||||
auto: 'onAttack',
|
auto: 'onAttack',
|
||||||
effect: {
|
effect: {
|
||||||
|
wisdom: 6,
|
||||||
actionAsyn: function () {
|
actionAsyn: function () {
|
||||||
this.player.enerCharge(1);
|
this.player.enerCharge(1);
|
||||||
},
|
},
|
||||||
|
@ -116825,9 +116825,9 @@ var CardInfo = {
|
||||||
"【自】英知=10:このシグニがアタックしたとき、あなたの他のシグニ1体の【自】の【英知】能力1つを発動させる。"
|
"【自】英知=10:このシグニがアタックしたとき、あなたの他のシグニ1体の【自】の【英知】能力1つを発動させる。"
|
||||||
],
|
],
|
||||||
constEffects: [{
|
constEffects: [{
|
||||||
wisdom: 8,
|
|
||||||
auto: 'onAttack',
|
auto: 'onAttack',
|
||||||
effect: {
|
effect: {
|
||||||
|
wisdom: 8,
|
||||||
actionAsyn: function () {
|
actionAsyn: function () {
|
||||||
var filter = function (card) {
|
var filter = function (card) {
|
||||||
return (card.level <= 3);
|
return (card.level <= 3);
|
||||||
|
@ -116839,9 +116839,9 @@ var CardInfo = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},{
|
},{
|
||||||
wisdom: 10,
|
|
||||||
auto: 'onAttack',
|
auto: 'onAttack',
|
||||||
effect: {
|
effect: {
|
||||||
|
wisdom: 10,
|
||||||
actionAsyn: function () {
|
actionAsyn: function () {
|
||||||
var effects = [];
|
var effects = [];
|
||||||
this.player.signis.forEach(function (signi) {
|
this.player.signis.forEach(function (signi) {
|
||||||
|
@ -118225,11 +118225,11 @@ var CardInfo = {
|
||||||
add(this,'onAttack',effect);
|
add(this,'onAttack',effect);
|
||||||
},
|
},
|
||||||
},{
|
},{
|
||||||
wisdom: 11,
|
|
||||||
auto: function (add,effect) {
|
auto: function (add,effect) {
|
||||||
add(this.player.opponent,'onCrash',effect);
|
add(this.player.opponent,'onCrash',effect);
|
||||||
},
|
},
|
||||||
effect: {
|
effect: {
|
||||||
|
wisdom: 11,
|
||||||
costGreen: 2,
|
costGreen: 2,
|
||||||
triggerCondition: function (event) {
|
triggerCondition: function (event) {
|
||||||
return (event.source === this);
|
return (event.source === this);
|
||||||
|
@ -119892,9 +119892,9 @@ var CardInfo = {
|
||||||
set(this,'disableBurst',true);
|
set(this,'disableBurst',true);
|
||||||
},
|
},
|
||||||
},{
|
},{
|
||||||
wisdom: 10,
|
|
||||||
auto: 'onAttack',
|
auto: 'onAttack',
|
||||||
effect: {
|
effect: {
|
||||||
|
wisdom: 10,
|
||||||
actionAsyn: function () {
|
actionAsyn: function () {
|
||||||
var filter = function (card) {
|
var filter = function (card) {
|
||||||
return card.hasClass('英知');
|
return card.hasClass('英知');
|
||||||
|
|
Loading…
Reference in a new issue