mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
small text update
This commit is contained in:
parent
42132bb852
commit
f96f5bf548
2 changed files with 3 additions and 3 deletions
|
@ -86,7 +86,7 @@ class HofriGhostforgeEffect extends OneShotEffect {
|
|||
super(Outcome.Benefit);
|
||||
staticText = "exile it. If you do, create a token that's a copy of that creature, " +
|
||||
"except it's a Spirit in addition to its other types and it has " +
|
||||
"\"When this creature leaves the battlefield, return the exiled card to your graveyard.\"";
|
||||
"\"When this creature leaves the battlefield, return the exiled card to its owner's graveyard.\"";
|
||||
}
|
||||
|
||||
private HofriGhostforgeEffect(final HofriGhostforgeEffect effect) {
|
||||
|
@ -125,7 +125,7 @@ class HofriGhostforgeReturnEffect extends OneShotEffect {
|
|||
HofriGhostforgeReturnEffect(Card card, Game game) {
|
||||
super(Outcome.Benefit);
|
||||
this.mor = new MageObjectReference(card, game);
|
||||
staticText = "return the exiled card to your graveyard";
|
||||
staticText = "return the exiled card to its owner's graveyard";
|
||||
}
|
||||
|
||||
private HofriGhostforgeReturnEffect(final HofriGhostforgeReturnEffect effect) {
|
||||
|
|
|
@ -50,6 +50,6 @@ public class EntersBattlefieldOrLeavesSourceTriggeredAbility extends TriggeredAb
|
|||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "When {this} enters the battlefield or leaves the battlefield, " + super.getRule();
|
||||
return "When {this} enters or leaves the battlefield, " + super.getRule();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue