mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[STX] Implemented Cram Session
This commit is contained in:
parent
bfd9235bf3
commit
b1b3c13d60
2 changed files with 35 additions and 0 deletions
34
Mage.Sets/src/mage/cards/c/CramSession.java
Normal file
34
Mage.Sets/src/mage/cards/c/CramSession.java
Normal file
|
@ -0,0 +1,34 @@
|
|||
package mage.cards.c;
|
||||
|
||||
import mage.abilities.effects.common.GainLifeEffect;
|
||||
import mage.abilities.effects.common.LearnEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class CramSession extends CardImpl {
|
||||
|
||||
public CramSession(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{B/G}");
|
||||
|
||||
// You gain 4 life.
|
||||
this.getSpellAbility().addEffect(new GainLifeEffect(4));
|
||||
|
||||
// Learn.
|
||||
this.getSpellAbility().addEffect(new LearnEffect().concatBy("<br>"));
|
||||
}
|
||||
|
||||
private CramSession(final CramSession card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CramSession copy() {
|
||||
return new CramSession(this);
|
||||
}
|
||||
}
|
|
@ -56,6 +56,7 @@ public final class StrixhavenSchoolOfMages extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Combat Professor", 11, Rarity.COMMON, mage.cards.c.CombatProfessor.class));
|
||||
cards.add(new SetCardInfo("Confront the Past", 67, Rarity.RARE, mage.cards.c.ConfrontThePast.class));
|
||||
cards.add(new SetCardInfo("Crackle with Power", 95, Rarity.MYTHIC, mage.cards.c.CrackleWithPower.class));
|
||||
cards.add(new SetCardInfo("Cram Session", 170, Rarity.COMMON, mage.cards.c.CramSession.class));
|
||||
cards.add(new SetCardInfo("Creative Outburst", 171, Rarity.UNCOMMON, mage.cards.c.CreativeOutburst.class));
|
||||
cards.add(new SetCardInfo("Culmination of Studies", 173, Rarity.RARE, mage.cards.c.CulminationOfStudies.class));
|
||||
cards.add(new SetCardInfo("Curate", 40, Rarity.COMMON, mage.cards.c.Curate.class));
|
||||
|
|
Loading…
Reference in a new issue