forked from External/mage
Implemented Foulmire Knight, added a rudimentary nonfunctional implementation of Adventure cards
This commit is contained in:
parent
a366ec019f
commit
3f31efafcd
4 changed files with 73 additions and 1 deletions
22
Mage/src/main/java/mage/cards/AdventureCard.java
Normal file
22
Mage/src/main/java/mage/cards/AdventureCard.java
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
package mage.cards;
|
||||
|
||||
import mage.abilities.SpellAbility;
|
||||
import mage.constants.CardType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
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) {
|
||||
super(ownerId, setInfo, typesLeft, costsLeft);
|
||||
}
|
||||
|
||||
public AdventureCard(AdventureCard card) {
|
||||
super(card);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue