mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Some small fixes.
This commit is contained in:
parent
8bd7131dca
commit
b98a14143c
3 changed files with 4 additions and 7 deletions
|
@ -28,17 +28,14 @@
|
|||
package mage.sets.gatecrash;
|
||||
|
||||
import java.util.UUID;
|
||||
import javax.xml.datatype.Duration;
|
||||
import mage.Constants;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.abilities.Mode;
|
||||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.abilities.effects.common.IndestructibleAllEffect;
|
||||
import mage.abilities.effects.common.continious.GainAbilityAllEffect;
|
||||
import mage.abilities.effects.common.continious.GainAbilityTargetEffect;
|
||||
import mage.abilities.keyword.DoubleStrikeAbility;
|
||||
import mage.abilities.keyword.IndestructibleAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.filter.common.FilterControlledPermanent;
|
||||
import mage.target.TargetPlayer;
|
||||
|
@ -54,8 +51,8 @@ public class BorosCharm extends CardImpl<BorosCharm> {
|
|||
super(ownerId, 148, "Boros Charm", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{R}{W}");
|
||||
this.expansionSetCode = "GTC";
|
||||
|
||||
this.color.setBlue(true);
|
||||
this.color.setGreen(true);
|
||||
this.color.setRed(true);
|
||||
this.color.setWhite(true);
|
||||
|
||||
//Choose one - Boros Charm deals 4 damage to target player
|
||||
this.getSpellAbility().addEffect(new DamageTargetEffect(4));
|
||||
|
|
|
@ -50,8 +50,8 @@ public class SimicCharm extends CardImpl<SimicCharm> {
|
|||
super(ownerId, 195, "Simic Charm", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{B}{U}");
|
||||
this.expansionSetCode = "GTC";
|
||||
|
||||
this.color.setBlack(true);
|
||||
this.color.setBlue(true);
|
||||
this.color.setGreen(true);
|
||||
|
||||
//Choose one - Target creature gets +3/+3 until end of turn
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(3, 3, Constants.Duration.EndOfTurn));
|
||||
|
|
|
@ -7,7 +7,7 @@ import mage.counters.Counter;
|
|||
*
|
||||
* @author Loki
|
||||
*/
|
||||
public class KiCounter extends Counter<LevelCounter> {
|
||||
public class KiCounter extends Counter<KiCounter> {
|
||||
|
||||
public KiCounter() {
|
||||
super("Ki");
|
||||
|
|
Loading…
Reference in a new issue