mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
updated Adventure constructor
This commit is contained in:
parent
d792d3dd92
commit
cf59a151c8
6 changed files with 6 additions and 6 deletions
|
@ -16,7 +16,7 @@ import java.util.UUID;
|
|||
public final class EmberethShieldbreaker extends AdventureCard {
|
||||
|
||||
public EmberethShieldbreaker(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, new CardType[]{CardType.SORCERY}, "{1}{R}", "{R}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, new CardType[]{CardType.SORCERY}, "{1}{R}", "Battle Display", "{R}");
|
||||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.KNIGHT);
|
||||
|
|
|
@ -17,7 +17,7 @@ import java.util.UUID;
|
|||
public final class FoulmireKnight extends AdventureCard {
|
||||
|
||||
public FoulmireKnight(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, new CardType[]{CardType.INSTANT}, "{B}", "{2}{B}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, new CardType[]{CardType.INSTANT}, "{B}", "Profane Insight", "{2}{B}");
|
||||
|
||||
this.subtype.add(SubType.ZOMBIE);
|
||||
this.subtype.add(SubType.KNIGHT);
|
||||
|
|
|
@ -27,7 +27,7 @@ import java.util.UUID;
|
|||
public final class LovestruckBeast extends AdventureCard {
|
||||
|
||||
public LovestruckBeast(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, new CardType[]{CardType.SORCERY}, "{2}{G}", "{G}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, new CardType[]{CardType.SORCERY}, "{2}{G}", "Heart's Desire", "{G}");
|
||||
|
||||
this.subtype.add(SubType.BEAST);
|
||||
this.subtype.add(SubType.NOBLE);
|
||||
|
|
|
@ -19,7 +19,7 @@ import java.util.UUID;
|
|||
public final class OrderOfMidnight extends AdventureCard {
|
||||
|
||||
public OrderOfMidnight(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, new CardType[]{CardType.SORCERY}, "{1}{B}", "{1}{B}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, new CardType[]{CardType.SORCERY}, "{1}{B}","Alter Fate", "{1}{B}");
|
||||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.KNIGHT);
|
||||
|
|
|
@ -16,7 +16,7 @@ import java.util.UUID;
|
|||
public final class RosethornAcolyte extends AdventureCard {
|
||||
|
||||
public RosethornAcolyte(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, new CardType[]{CardType.SORCERY}, "{2}{G}", "{G}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, new CardType[]{CardType.SORCERY}, "{2}{G}", "Seasonal Ritual", "{G}");
|
||||
|
||||
this.subtype.add(SubType.ELF);
|
||||
this.subtype.add(SubType.DRUID);
|
||||
|
|
|
@ -12,7 +12,7 @@ public abstract class AdventureCard extends CardImpl {
|
|||
|
||||
protected SpellAbility adventureSpellAbility = new SpellAbility(null, null);
|
||||
|
||||
public AdventureCard(UUID ownerId, CardSetInfo setInfo, CardType[] typesLeft, CardType[] typesRight, String costsLeft, String costsRight) {
|
||||
public AdventureCard(UUID ownerId, CardSetInfo setInfo, CardType[] typesLeft, CardType[] typesRight, String costsLeft, String adventureName, String costsRight) {
|
||||
super(ownerId, setInfo, typesLeft, costsLeft);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue