调整【义释】ai

This commit is contained in:
157 2024-05-07 11:46:15 +08:00
parent 0abda1569d
commit 342c727731
1 changed files with 4 additions and 3 deletions

View File

@ -7170,10 +7170,11 @@ const skills = {
}, },
check: function (event, player) { check: function (event, player) {
return ( return (
get.damageEffect(event.player, player, player) < 0 || get.damageEffect(event.player, player, player) <= 0 ||
(!event.player.hasSkillTag("noe") && (get.attitude(player, event.player) <= 0 &&
!event.player.hasSkillTag("noe") &&
event.player.hasCard(function (card) { event.player.hasCard(function (card) {
return get.value(card) > 6; return get.value(card) > 9 - event.player.hp;
}, "e")) }, "e"))
); );
}, },