[KTK] Some minor changes.

This commit is contained in:
LevelX2 2014-09-12 17:17:33 +02:00
parent 351cf9b34e
commit 7b8210ba86
6 changed files with 3 additions and 6 deletions

View file

@ -51,7 +51,7 @@ public class AltarOfTheBrood extends CardImpl {
}
public AltarOfTheBrood(UUID ownerId) {
super(ownerId, 216, "Altar of the Brood", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT}, "{1}");
super(ownerId, 216, "Altar of the Brood", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{1}");
this.expansionSetCode = "KTK";
// Whenever another permanent enters the battlefield under your control, each opponent puts the top card of his or her library into his or her graveyard.

View file

@ -58,7 +58,7 @@ import mage.target.common.TargetCreaturePermanent;
public class BribersPurse extends CardImpl {
public BribersPurse(UUID ownerId) {
super(ownerId, 217, "Briber's Purse", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{X}");
super(ownerId, 217, "Briber's Purse", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT}, "{X}");
this.expansionSetCode = "KTK";
// Briber's Purse enters the battlefield with X gem counters on it.

View file

@ -81,7 +81,7 @@ public class HoodedHydra extends CardImpl {
// As Hooded Hydra is turned face up, put five +1/+1 counters on it.
Effect effect = new AddCountersSourceEffect(CounterType.P1P1.createInstance(5));
effect.setText("put five +1/+1 counters on it");
// TODO: Does not work because the ability is still removed from permanent while the effect checks if the ability still exosts.
// TODO: Does not work because the ability is still removed from permanent while the effect checks if the ability still exists.
Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, new AsTurnedFaceUpEffect(effect, false));
ability.setWorksFaceDown(true);
this.addAbility(ability);

View file

@ -49,7 +49,6 @@ import mage.game.permanent.token.Token;
public class KinTreeInvocation extends CardImpl {
public KinTreeInvocation(UUID ownerId) {
// TODO: Check rarity
super(ownerId, 183, "Kin-Tree Invocation", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{B}{G}");
this.expansionSetCode = "KTK";

View file

@ -60,7 +60,6 @@ public class RideDown extends CardImpl {
}
public RideDown(UUID ownerId) {
// TODO: Check Rarity
super(ownerId, 194, "Ride Down", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{R}{W}");
this.expansionSetCode = "KTK";

View file

@ -43,7 +43,6 @@ import mage.constants.Rarity;
public class SnowhornRider extends CardImpl {
public SnowhornRider(UUID ownerId) {
// TODO: Check Rarity
super(ownerId, 201, "Snowhorn Rider", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{3}{G}{U}{R}");
this.expansionSetCode = "KTK";
this.subtype.add("Human");