mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-02-07 14:23:39 +01:00
Fix WX14-040 WX14-CB04 WX14-028
This commit is contained in:
parent
1ac41ac745
commit
b5bf64e63e
2 changed files with 5 additions and 5 deletions
|
@ -117032,7 +117032,7 @@ var CardInfo = {
|
||||||
return this.player.opponent.discardAsyn(1);
|
return this.player.opponent.discardAsyn(1);
|
||||||
}
|
}
|
||||||
},{
|
},{
|
||||||
costWhite: 1,
|
costBlack: 1,
|
||||||
actionAsyn: function () {
|
actionAsyn: function () {
|
||||||
var cards = this.player.trashZone.cards.filter(function (card) {
|
var cards = this.player.trashZone.cards.filter(function (card) {
|
||||||
return (card.type === 'SIGNI') && card.hasColor('green') && card.canSummon();
|
return (card.type === 'SIGNI') && card.hasColor('green') && card.canSummon();
|
||||||
|
@ -121669,13 +121669,13 @@ var CardInfo = {
|
||||||
source: this,
|
source: this,
|
||||||
description: '1953-const-0',
|
description: '1953-const-0',
|
||||||
actionAsyn: function () {
|
actionAsyn: function () {
|
||||||
this.frameStart();
|
this.game.frameStart();
|
||||||
this.player.signis.forEach(function (signi) {
|
this.player.signis.forEach(function (signi) {
|
||||||
if (signi.hasClass('空獣') || signi.hasClass('地獣')) {
|
if (signi.hasClass('空獣') || signi.hasClass('地獣')) {
|
||||||
this.game.tillTurnEndAdd(this,signi,'power',3000);
|
this.game.tillTurnEndAdd(this,signi,'power',3000);
|
||||||
}
|
}
|
||||||
});
|
},this);
|
||||||
this.frameEnd();
|
this.game.frameEnd();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
add(this,'onAttack',effect);
|
add(this,'onAttack',effect);
|
||||||
|
|
|
@ -946,7 +946,7 @@ Player.prototype.useAttackPhaseArtsAsyn = function () {
|
||||||
};
|
};
|
||||||
|
|
||||||
Player.prototype.useAttackPhaseActionEffect = function () {
|
Player.prototype.useAttackPhaseActionEffect = function () {
|
||||||
var cards = concat(this.signis,this.lrig,this.trashZone.cards).filter(function (card) {
|
var cards = concat(this.signis,this.lrig,this.trashZone.cards,this.hands).filter(function (card) {
|
||||||
return card.actionEffects.some(function (effect) {
|
return card.actionEffects.some(function (effect) {
|
||||||
return this.canUseActionEffect(effect);
|
return this.canUseActionEffect(effect);
|
||||||
},this);
|
},this);
|
||||||
|
|
Loading…
Reference in a new issue