Skip to content

Commit

Permalink
Use single line for rules text
Browse files Browse the repository at this point in the history
  • Loading branch information
Cguy7777 committed Nov 29, 2024
1 parent 22c3f5c commit f7b0fa1
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions Mage.Sets/src/mage/cards/o/OmnivorousFlytrap.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,7 @@ public OmnivorousFlytrap(UUID ownerId, CardSetInfo setInfo) {
this.power = new MageInt(2);
this.toughness = new MageInt(4);

// Delirium -- Whenever Omnivorous Flytrap enters or attacks,
// if there are four or more card types among cards in your graveyard,
// distribute two +1/+1 counters among one or two target creatures.
// Then if there are six or more card types among cards in your graveyard,
// double the number of +1/+1 counters on those creatures.
// Delirium -- Whenever Omnivorous Flytrap enters or attacks, if there are four or more card types among cards in your graveyard, distribute two +1/+1 counters among one or two target creatures. Then if there are six or more card types among cards in your graveyard, double the number of +1/+1 counters on those creatures.
Ability ability = new EntersBattlefieldOrAttacksSourceTriggeredAbility(
new DistributeCountersEffect(CounterType.P1P1, 2, "one or two target creatures"))
.withInterveningIf(DeliriumCondition.instance);
Expand Down

0 comments on commit f7b0fa1

Please sign in to comment.