mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-03-31 08:02:15 +02:00
🐛 fix PR-373 3rd const
This commit is contained in:
parent
648df21225
commit
2d62d360c7
1 changed files with 2 additions and 2 deletions
|
@ -121846,8 +121846,8 @@ var CardInfo = {
|
||||||
auto: 'onMove',
|
auto: 'onMove',
|
||||||
effect: {
|
effect: {
|
||||||
triggerCondition: function (event) {
|
triggerCondition: function (event) {
|
||||||
return (card.oldZone === this.player.handZone) &&
|
return (event.card.oldZone === this.player.handZone) &&
|
||||||
(card.newZone === this.player.trashZone);
|
(event.card.newZone === this.player.trashZone);
|
||||||
},
|
},
|
||||||
costCondition: function () {
|
costCondition: function () {
|
||||||
return this.player.enoughCost({costBlue: 1}) || this.player.enoughCost({costBlack: 1});
|
return this.player.enoughCost({costBlue: 1}) || this.player.enoughCost({costBlack: 1});
|
||||||
|
|
Loading…
Reference in a new issue