* 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 ConditionalContinousEffect(
new BoostSourceEffect(2, 2, Duration.WhileOnBattlefield), new BoostSourceEffect(2, 2, Duration.WhileOnBattlefield),
new CardsInControllerGraveCondition(7), 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( Effect effect = new ConditionalRestrictionEffect(
new CantBlockSourceEffect(Duration.WhileOnBattlefield), new CantBlockSourceEffect(Duration.WhileOnBattlefield),
new CardsInControllerGraveCondition(7)); new CardsInControllerGraveCondition(7));
effect.setText("and can't block."); effect.setText("and can't block");
thresholdAbility.addEffect(effect); thresholdAbility.addEffect(effect);
this.addAbility(thresholdAbility); this.addAbility(thresholdAbility);
} }