* Fixed minor text bugs of Voice of Provinces and Molten Birth.

This commit is contained in:
LevelX2 2013-07-31 19:02:44 +02:00
parent ffb2724ccd
commit 2e8c856617
2 changed files with 5 additions and 6 deletions

View file

@ -28,15 +28,14 @@
package mage.sets.avacynrestored; package mage.sets.avacynrestored;
import java.util.UUID; import java.util.UUID;
import mage.constants.CardType;
import mage.constants.Rarity;
import mage.MageInt; import mage.MageInt;
import mage.ObjectColor; import mage.ObjectColor;
import mage.abilities.common.EntersBattlefieldTriggeredAbility; import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.effects.common.CreateTokenEffect; import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.keyword.FlyingAbility; import mage.abilities.keyword.FlyingAbility;
import mage.cards.CardImpl; import mage.cards.CardImpl;
import mage.constants.CardType;
import mage.constants.Rarity;
import mage.game.permanent.token.Token; import mage.game.permanent.token.Token;
/** /**
@ -71,7 +70,7 @@ public class VoiceOfTheProvinces extends CardImpl<VoiceOfTheProvinces> {
class HumanToken extends Token { class HumanToken extends Token {
public HumanToken() { public HumanToken() {
super("Human", "a 1/1 white Human creature token"); super("Human", "1/1 white Human creature token");
cardType.add(CardType.CREATURE); cardType.add(CardType.CREATURE);
color = ObjectColor.WHITE; color = ObjectColor.WHITE;
subtype.add("Human"); subtype.add("Human");

View file

@ -94,7 +94,7 @@ class MoltenBirthEffect extends OneShotEffect<MoltenBirthEffect> {
token.putOntoBattlefield(2, game, source.getId(), source.getControllerId()); token.putOntoBattlefield(2, game, source.getId(), source.getControllerId());
if (you.flipCoin(game)) { if (you.flipCoin(game)) {
molten.moveToZone(Zone.HAND, source.getId(), game, true); molten.moveToZone(Zone.HAND, source.getId(), game, true);
game.informPlayers(you.getName() + "won the flip. Molten Birth is returned to" + you.getName() + "hand."); game.informPlayers(new StringBuilder(you.getName()).append(" won the flip. Molten Birth is returned to ").append(you.getName()).append(" hand.").toString());
} }
} }
return false; return false;