mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
Fix Goldhound card types
This commit is contained in:
parent
be4ac03504
commit
7db8dd11b4
1 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ import java.util.UUID;
|
||||||
public final class Goldhound extends CardImpl {
|
public final class Goldhound extends CardImpl {
|
||||||
|
|
||||||
public Goldhound(UUID ownerId, CardSetInfo setInfo) {
|
public Goldhound(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{R}");
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{R}");
|
||||||
|
|
||||||
this.subtype.add(SubType.TREASURE);
|
this.subtype.add(SubType.TREASURE);
|
||||||
this.subtype.add(SubType.DOG);
|
this.subtype.add(SubType.DOG);
|
||||||
|
@ -35,7 +35,7 @@ public final class Goldhound extends CardImpl {
|
||||||
// Menace
|
// Menace
|
||||||
this.addAbility(new MenaceAbility(true));
|
this.addAbility(new MenaceAbility(true));
|
||||||
|
|
||||||
// {T}, Sacrifice Mimic: Add one mana of any color.
|
// {T}, Sacrifice Goldhound: Add one mana of any color.
|
||||||
Ability ability = new AnyColorManaAbility();
|
Ability ability = new AnyColorManaAbility();
|
||||||
ability.addCost(new SacrificeSourceCost());
|
ability.addCost(new SacrificeSourceCost());
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
|
Loading…
Reference in a new issue