1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-10 17:00:08 -09:00

* Fixed Childhood Horror - Removed dots at the end of text (cbt33).

This commit is contained in:
LevelX2 2013-09-30 10:57:42 +02:00
parent dbc8f60e10
commit 00b4090f55

View file

@ -67,13 +67,13 @@ public class ChildhoodHorror extends CardImpl<ChildhoodHorror> {
new ConditionalContinousEffect(
new BoostSourceEffect(2, 2, Duration.WhileOnBattlefield),
new CardsInControllerGraveCondition(7),
"<i>Threshold</i> - If seven or more cards are in your graveyard, Childhood Horror gets +2/+2."
"<i>Threshold</i> - If seven or more cards are in your graveyard, Childhood Horror gets +2/+2"
));
Effect effect = new ConditionalRestrictionEffect(
new CantBlockSourceEffect(Duration.WhileOnBattlefield),
new CardsInControllerGraveCondition(7));
effect.setText("and can't block.");
effect.setText("and can't block");
thresholdAbility.addEffect(effect);
this.addAbility(thresholdAbility);
}