mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Borborygmos only triggers when damaging a player
This commit is contained in:
parent
46a8ee438a
commit
dafd392649
1 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ package mage.sets.guildpact;
|
|||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.DealsCombatDamageTriggeredAbility;
|
||||
import mage.abilities.common.DealsCombatDamageToAPlayerTriggeredAbility;
|
||||
import mage.abilities.effects.common.counter.AddCountersAllEffect;
|
||||
import mage.abilities.keyword.TrampleAbility;
|
||||
import mage.cards.CardImpl;
|
||||
|
@ -56,7 +56,7 @@ public class Borborygmos extends CardImpl {
|
|||
this.addAbility(TrampleAbility.getInstance());
|
||||
|
||||
// Whenever Borborygmos deals combat damage to a player, put a +1/+1 counter on each creature you control.
|
||||
this.addAbility(new DealsCombatDamageTriggeredAbility(new AddCountersAllEffect(CounterType.P1P1.createInstance(), new FilterControlledCreaturePermanent()), false));
|
||||
this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(new AddCountersAllEffect(CounterType.P1P1.createInstance(), new FilterControlledCreaturePermanent()), false));
|
||||
}
|
||||
|
||||
public Borborygmos(final Borborygmos card) {
|
||||
|
|
Loading…
Reference in a new issue