fixed a few errors

This commit is contained in:
Evan Kranzler 2020-06-17 21:30:22 -04:00
parent cba0094c20
commit 5801e91f4a
2 changed files with 2 additions and 2 deletions

View file

@ -46,7 +46,7 @@ class TransmogrifyEffect extends OneShotEffect {
public TransmogrifyEffect() {
super(Outcome.PutCreatureInPlay);
staticText = "That creatures controller reveals cards from the top of their library until they reveal a creature card. That player puts that card onto the battlefield, then shuffles the rest into their library";
staticText = "That creature's controller reveals cards from the top of their library until they reveal a creature card. That player puts that card onto the battlefield, then shuffles the rest into their library";
}
public TransmogrifyEffect(final TransmogrifyEffect effect) {

View file

@ -36,7 +36,7 @@ public final class WatcherOfTheSpheres extends CardImpl {
}
public WatcherOfTheSpheres(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{W}{B}");
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{W}{U}");
this.subtype.add(SubType.BIRD);
this.subtype.add(SubType.WIZARD);