diff --git a/Card.js b/Card.js index 626e6b8..659e3fd 100644 --- a/Card.js +++ b/Card.js @@ -1375,7 +1375,12 @@ Card.prototype.attackAsyn = function () { }); } else { // 伤害 - if (target !== opposingSigni) return; + if (target !== opposingSigni) { + // 攻击非正面的区域 + if (!this.game.getData(card.player,'damageWhenAttackSigniZone')) { + return; + } + } if (event.wontBeDamaged || opponent.wontBeDamaged) return; crashArg.damage = true; if (opponent.lifeClothZone.cards.length) { diff --git a/CardInfo.js b/CardInfo.js index b5db074..1923c31 100644 --- a/CardInfo.js +++ b/CardInfo.js @@ -117749,7 +117749,6 @@ var CardInfo = { ], artsEffect: { actionAsyn: function () { - // TODO: ... this.game.setData(this.player,'damageWhenAttackSigniZone',true); } }