mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
Some small improvements to text generation
This commit is contained in:
parent
fa587ce7b7
commit
ef5594cdd3
3 changed files with 17 additions and 9 deletions
|
|
@ -57,9 +57,9 @@ public class VaultOfTheArchangel extends CardImpl<VaultOfTheArchangel> {
|
|||
this.addAbility(new ColorlessManaAbility());
|
||||
// {2}{W}{B}, {tap}: Creatures you control gain deathtouch and lifelink until end of turn.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD,
|
||||
new GainAbilityControlledEffect(DeathtouchAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent(), false),
|
||||
new GainAbilityControlledEffect(DeathtouchAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent("Creatures"), false),
|
||||
new ManaCostsImpl("{2}{W}{B}"));
|
||||
ability.addEffect(new GainAbilityControlledEffect(LifelinkAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent(), false));
|
||||
ability.addEffect(new GainAbilityControlledEffect(LifelinkAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent("Creatures"), false));
|
||||
ability.addCost(new TapSourceCost());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
public class CaptivatingVampire extends CardImpl<CaptivatingVampire> {
|
||||
|
||||
private static final FilterCreaturePermanent filter1 = new FilterCreaturePermanent("Vampire creatures");
|
||||
private static final FilterControlledCreaturePermanent filter2 = new FilterControlledCreaturePermanent("untapped Vampire");
|
||||
private static final FilterControlledCreaturePermanent filter2 = new FilterControlledCreaturePermanent("untapped Vampires you control");
|
||||
|
||||
static {
|
||||
filter1.getSubtype().add("Vampire");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue