mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
* Fixed Childhood Horror - Removed dots at the end of text (cbt33).
This commit is contained in:
parent
dbc8f60e10
commit
00b4090f55
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue