mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-02-07 14:23:39 +01:00
Fix WX14-050 WX14-023 Const1
This commit is contained in:
parent
35cc522441
commit
9b93ad4bf1
1 changed files with 6 additions and 2 deletions
|
@ -119063,7 +119063,7 @@ var CardInfo = {
|
||||||
],
|
],
|
||||||
constEffects: [{
|
constEffects: [{
|
||||||
action: function (set,add) {
|
action: function (set,add) {
|
||||||
set(this.player,'signiStartUpBanned',true);
|
set(this.player.opponent,'signiStartUpBanned',true);
|
||||||
}
|
}
|
||||||
},{
|
},{
|
||||||
action: function (set,add) {
|
action: function (set,add) {
|
||||||
|
@ -119283,8 +119283,12 @@ var CardInfo = {
|
||||||
source: this,
|
source: this,
|
||||||
description: '1927-const-0',
|
description: '1927-const-0',
|
||||||
optional: true,
|
optional: true,
|
||||||
|
triggerCondition: function (event) {
|
||||||
|
if (evnet.card.type !== 'SIGNI') return false;
|
||||||
|
if (event.card.isEffectFiltered()) return false;
|
||||||
|
return true;
|
||||||
|
},
|
||||||
actionAsyn: function (event) {
|
actionAsyn: function (event) {
|
||||||
if (event.isEffectFiltered()) return;
|
|
||||||
var zones = this.player.opponent.signiZones.filter(function (zone) {
|
var zones = this.player.opponent.signiZones.filter(function (zone) {
|
||||||
return !zone.disabled && (zone !== event.card.zone) && !zone.cards.length;
|
return !zone.disabled && (zone !== event.card.zone) && !zone.cards.length;
|
||||||
},this);
|
},this);
|
||||||
|
|
Loading…
Reference in a new issue