mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 20:59:14 -08:00
bugfixes
This commit is contained in:
parent
a986916d6b
commit
2ad97568dd
2 changed files with 3 additions and 2 deletions
|
|
@ -49,8 +49,8 @@ public class Auramancer extends CardImpl<Auramancer> {
|
||||||
private final static FilterCard filter = new FilterCard("enchantment card");
|
private final static FilterCard filter = new FilterCard("enchantment card");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.getSubtype().add("Enchantment");
|
filter.getCardType().add(CardType.ENCHANTMENT);
|
||||||
filter.setScopeSubtype(Filter.ComparisonScope.Any);
|
filter.setScopeCardType(Filter.ComparisonScope.Any);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Auramancer(UUID ownerId) {
|
public Auramancer(UUID ownerId) {
|
||||||
|
|
|
||||||
|
|
@ -53,6 +53,7 @@ public class BloodriteInvoker extends CardImpl<BloodriteInvoker> {
|
||||||
this.expansionSetCode = "ROE";
|
this.expansionSetCode = "ROE";
|
||||||
this.subtype.add("Vampire");
|
this.subtype.add("Vampire");
|
||||||
this.subtype.add("Shaman");
|
this.subtype.add("Shaman");
|
||||||
|
this.color.setBlack(true);
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
this.toughness = new MageInt(1);
|
this.toughness = new MageInt(1);
|
||||||
Ability ability = new SimpleActivatedAbility(Constants.Zone.BATTLEFIELD, new LoseLifeTargetEffect(3), new GenericManaCost(8));
|
Ability ability = new SimpleActivatedAbility(Constants.Zone.BATTLEFIELD, new LoseLifeTargetEffect(3), new GenericManaCost(8));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue