mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Implemented Order of Midnight
This commit is contained in:
parent
3f31efafcd
commit
aa1190ddba
4 changed files with 57 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue