mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
text fix
This commit is contained in:
parent
1ee14e1880
commit
ac53e5b518
1 changed files with 5 additions and 3 deletions
|
|
@ -46,9 +46,11 @@ public class ClavilenoFirstOfTheBlessed extends CardImpl {
|
|||
// Whenever you attack, target attacking Vampire that isn't a Demon becomes a Demon in addition to its other types. It gains “When this creature dies, draw a card and create a tapped 4/3 white and black Vampire Demon creature token with flying.”
|
||||
Ability ability = new AttacksWithCreaturesTriggeredAbility(
|
||||
new AddCardSubTypeTargetEffect(SubType.DEMON, Duration.Custom), 1);
|
||||
Ability gainedAbility = new DiesSourceTriggeredAbility(new DrawCardSourceControllerEffect(1), false);
|
||||
gainedAbility.addEffect(new CreateTokenEffect(new VampireDemonToken(), 1, true));
|
||||
ability.addEffect(new GainAbilityTargetEffect(gainedAbility, Duration.Custom));
|
||||
Ability gainedAbility = new DiesSourceTriggeredAbility(new DrawCardSourceControllerEffect(1), false)
|
||||
.setTriggerPhrase("When this creature dies, ");
|
||||
gainedAbility.addEffect(new CreateTokenEffect(new VampireDemonToken(), 1, true).concatBy("and"));
|
||||
ability.addEffect(new GainAbilityTargetEffect(gainedAbility, Duration.Custom)
|
||||
.setText("It gains \"When this creature dies, draw a card and create a tapped 4/3 white and black Vampire Demon creature token with flying.\""));
|
||||
ability.addTarget(new TargetPermanent(filter));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue