forked from External/mage
61 lines
2.4 KiB
Java
61 lines
2.4 KiB
Java
package mage.cards.s;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
|
import mage.abilities.common.SimpleStaticAbility;
|
|
import mage.abilities.common.WerewolfFrontTriggeredAbility;
|
|
import mage.abilities.condition.common.NotTransformedCondition;
|
|
import mage.abilities.decorator.ConditionalContinuousEffect;
|
|
import mage.abilities.dynamicvalue.common.CardsInControllerHandCount;
|
|
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
|
import mage.abilities.effects.common.continuous.SetBasePowerToughnessSourceEffect;
|
|
import mage.abilities.keyword.TransformAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.constants.Zone;
|
|
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
* @author fireshoes
|
|
*/
|
|
public final class SageOfAncientLore extends CardImpl {
|
|
|
|
public SageOfAncientLore(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{G}");
|
|
this.subtype.add(SubType.HUMAN);
|
|
this.subtype.add(SubType.SHAMAN);
|
|
this.subtype.add(SubType.WEREWOLF);
|
|
this.power = new MageInt(0);
|
|
this.toughness = new MageInt(0);
|
|
|
|
this.secondSideCardClazz = mage.cards.w.WerewolfOfAncientHunger.class;
|
|
|
|
// Sage of Ancient Lore's power and toughness are each equal to the number of cards in your hand.
|
|
this.addAbility(new SimpleStaticAbility(
|
|
Zone.ALL,
|
|
new ConditionalContinuousEffect(
|
|
new SetBasePowerToughnessSourceEffect(CardsInControllerHandCount.ANY), NotTransformedCondition.instance,
|
|
"{this}'s power and toughness are each equal to the total number of cards in your hand"
|
|
)
|
|
));
|
|
|
|
// When Sage of Ancient Lore enters the battlefield, draw a card.
|
|
this.addAbility(new EntersBattlefieldTriggeredAbility(new DrawCardSourceControllerEffect(1), false));
|
|
|
|
// At the beginning of each upkeep, if no spells were cast last turn, transform Sage of Ancient Lore.
|
|
this.addAbility(new TransformAbility());
|
|
this.addAbility(new WerewolfFrontTriggeredAbility());
|
|
}
|
|
|
|
private SageOfAncientLore(final SageOfAncientLore card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public SageOfAncientLore copy() {
|
|
return new SageOfAncientLore(this);
|
|
}
|
|
}
|