1
0
Fork 0

🐛 fix PR-373

This commit is contained in:
WEBXOSS 2017-08-17 22:16:29 +08:00
parent 5470e3e989
commit 0f485f58b9

View file

@ -121862,8 +121862,8 @@ var CardInfo = {
},
effect: {
triggerCondition: function (event) {
return (card.oldZone === this.player.handZone) &&
(card.newZone === this.player.trashZone);
return (event.oldZone === this.player.handZone) &&
(event.newZone === this.player.trashZone);
},
condition: function () {
var card = this.getOpposingSigni();
@ -121879,8 +121879,8 @@ var CardInfo = {
auto: 'onMove',
effect: {
triggerCondition: function (event) {
return (event.card.oldZone === this.player.handZone) &&
(event.card.newZone === this.player.trashZone);
return (event.oldZone === this.player.handZone) &&
(event.newZone === this.player.trashZone);
},
costCondition: function () {
return this.player.enoughCost({costBlue: 1}) || this.player.enoughCost({costBlack: 1});