Skip to content

Commit

Permalink
text fixes [ULG]
Browse files Browse the repository at this point in the history
  • Loading branch information
xenohedron committed Sep 26, 2023
1 parent b81db2b commit 10f2ae0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Mage.Sets/src/mage/cards/h/HopeAndGlory.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ public HopeAndGlory(UUID ownerId, CardSetInfo setInfo) {

// Untap two target creatures. Each of them gets +1/+1 until end of turn.
this.getSpellAbility().addEffect(new UntapTargetEffect());
this.getSpellAbility().addEffect(new BoostTargetEffect(1, 1, Duration.EndOfTurn));
this.getSpellAbility().addEffect(new BoostTargetEffect(1, 1, Duration.EndOfTurn)
.setText("Each of them gets +1/+1 until end of turn"));
this.getSpellAbility().addTarget(new TargetCreaturePermanent(2));
}

Expand Down
7 changes: 4 additions & 3 deletions Mage.Sets/src/mage/cards/s/SilkNet.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

package mage.cards.s;

import java.util.UUID;
Expand All @@ -22,8 +21,10 @@ public SilkNet(UUID ownerId, CardSetInfo setInfo) {


// Target creature gets +1/+1 and gains reach until end of turn.
this.getSpellAbility().addEffect(new BoostTargetEffect(1, 1, Duration.EndOfTurn));
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(ReachAbility.getInstance(), Duration.EndOfTurn));
this.getSpellAbility().addEffect(new BoostTargetEffect(1, 1, Duration.EndOfTurn)
.setText("target creature gets +1/+1"));
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(ReachAbility.getInstance(), Duration.EndOfTurn)
.setText("and gains reach until end of turn"));
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
}

Expand Down

0 comments on commit 10f2ae0

Please sign in to comment.