mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-01-31 09:49:16 +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: [{
|
||||
action: function (set,add) {
|
||||
set(this.player,'signiStartUpBanned',true);
|
||||
set(this.player.opponent,'signiStartUpBanned',true);
|
||||
}
|
||||
},{
|
||||
action: function (set,add) {
|
||||
|
@ -119283,8 +119283,12 @@ var CardInfo = {
|
|||
source: this,
|
||||
description: '1927-const-0',
|
||||
optional: true,
|
||||
triggerCondition: function (event) {
|
||||
if (evnet.card.type !== 'SIGNI') return false;
|
||||
if (event.card.isEffectFiltered()) return false;
|
||||
return true;
|
||||
},
|
||||
actionAsyn: function (event) {
|
||||
if (event.isEffectFiltered()) return;
|
||||
var zones = this.player.opponent.signiZones.filter(function (zone) {
|
||||
return !zone.disabled && (zone !== event.card.zone) && !zone.cards.length;
|
||||
},this);
|
||||
|
|
Loading…
Reference in a new issue