mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
- Reduced the life threshold for healing self with Torgaar.
This commit is contained in:
@@ -176,7 +176,7 @@ public class LifeSetAi extends SpellAbilityAi {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (aiAmount > ai.getLife() && aiLife <= 10) {
|
if (aiAmount > ai.getLife() && aiLife < 5) {
|
||||||
sa.getTargets().add(ai);
|
sa.getTargets().add(ai);
|
||||||
} else if (oppLife > oppAmount) {
|
} else if (oppLife > oppAmount) {
|
||||||
sa.getTargets().add(opponent);
|
sa.getTargets().add(opponent);
|
||||||
|
|||||||
Reference in New Issue
Block a user