1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-02 17:00:11 -09:00

replaces FILTER_CONTROLLED_CREATURE with FILTER_CONTROLLED_ANOTHER_CREATURE ()

This commit is contained in:
chesse20 2023-04-24 20:10:49 -07:00 committed by GitHub
parent a81a2e6760
commit 2382e4afa4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,7 @@ public final class VraanExecutionerThane extends CardImpl {
// Whenever one or more other creatures you control die, each opponent loses 2 life and you gain 2 life. This ability triggers only once each turn.
Ability ability = new DiesCreatureTriggeredAbility(
new LoseLifeOpponentsEffect(2), false,
StaticFilters.FILTER_CONTROLLED_CREATURE
StaticFilters.FILTER_CONTROLLED_ANOTHER_CREATURE
).setTriggerPhrase("Whenever one or more other creatures you control die, ").setTriggersOnce(true);
ability.addEffect(new GainLifeEffect(2).concatBy("and"));
this.addAbility(ability);