mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-01-18 19:56:02 +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);
|
||||
}
|
||||
},{
|
||||
costWhite: 1,
|
||||
costBlack: 1,
|
||||
actionAsyn: function () {
|
||||
var cards = this.player.trashZone.cards.filter(function (card) {
|
||||
return (card.type === 'SIGNI') && card.hasColor('green') && card.canSummon();
|
||||
|
@ -121669,13 +121669,13 @@ var CardInfo = {
|
|||
source: this,
|
||||
description: '1953-const-0',
|
||||
actionAsyn: function () {
|
||||
this.frameStart();
|
||||
this.game.frameStart();
|
||||
this.player.signis.forEach(function (signi) {
|
||||
if (signi.hasClass('空獣') || signi.hasClass('地獣')) {
|
||||
this.game.tillTurnEndAdd(this,signi,'power',3000);
|
||||
}
|
||||
});
|
||||
this.frameEnd();
|
||||
},this);
|
||||
this.game.frameEnd();
|
||||
}
|
||||
});
|
||||
add(this,'onAttack',effect);
|
||||
|
|
|
@ -946,7 +946,7 @@ Player.prototype.useAttackPhaseArtsAsyn = 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 this.canUseActionEffect(effect);
|
||||
},this);
|
||||
|
|
Loading…
Reference in a new issue