fix Kogla, the Titan Ape

This commit is contained in:
xenohedron 2023-10-14 14:42:13 -04:00
parent e1ed85e306
commit 2ce4e8e8a9

View file

@ -51,7 +51,7 @@ public final class KoglaTheTitanApe extends CardImpl {
// When Kogla, the Titan Ape enters the battlefield, it fights up to one target creature you don't control. // When Kogla, the Titan Ape enters the battlefield, it fights up to one target creature you don't control.
Ability ability = new EntersBattlefieldTriggeredAbility(new FightTargetSourceEffect() Ability ability = new EntersBattlefieldTriggeredAbility(new FightTargetSourceEffect()
.setText("it fights up to one target creature you don't control")); .setText("it fights up to one target creature you don't control"));
ability.addTarget(new TargetPermanent(StaticFilters.FILTER_CREATURE_YOU_DONT_CONTROL)); ability.addTarget(new TargetPermanent(0, 1, StaticFilters.FILTER_CREATURE_YOU_DONT_CONTROL));
this.addAbility(ability); this.addAbility(ability);
// Whenever Kogla attacks, destroy target artifact or enchantment defending player controls. // Whenever Kogla attacks, destroy target artifact or enchantment defending player controls.