Implemented Order of Midnight

This commit is contained in:
Evan Kranzler 2019-09-05 21:02:04 -04:00
parent 3f31efafcd
commit aa1190ddba
4 changed files with 57 additions and 3 deletions

View file

@ -10,7 +10,7 @@ import java.util.UUID;
*/
public abstract class AdventureCard extends CardImpl {
protected SpellAbility adventureSpellAbility = new SpellAbility(null, null);
protected SpellAbility adventureSpellAbility = new SpellAbility(null, null);
public AdventureCard(UUID ownerId, CardSetInfo setInfo, CardType[] typesLeft, CardType[] typesRight, String costsLeft, String costsRight) {
super(ownerId, setInfo, typesLeft, costsLeft);
@ -19,4 +19,8 @@ public abstract class AdventureCard extends CardImpl {
public AdventureCard(AdventureCard card) {
super(card);
}
public SpellAbility getAdventureSpellAbility() {
return adventureSpellAbility;
}
}