mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
General's Kabuto - Fixed wrong casting costs of {2}, corrected to {4} (fixes #529).
This commit is contained in:
parent
af8c5880a1
commit
cd90f043a0
1 changed files with 7 additions and 13 deletions
|
@ -28,26 +28,20 @@
|
|||
|
||||
package mage.sets.championsofkamigawa;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Ludwig
|
||||
*/
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.constants.*;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.effects.PreventionEffectImpl;
|
||||
import mage.abilities.effects.common.PreventAllDamageToAttachedEffect;
|
||||
import mage.abilities.effects.common.continious.GainAbilityAttachedEffect;
|
||||
import mage.abilities.keyword.EquipAbility;
|
||||
import mage.abilities.keyword.ShroudAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.DamageEvent;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.constants.AttachmentType;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.Zone;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -56,7 +50,7 @@ import mage.game.permanent.Permanent;
|
|||
public class GeneralsKabuto extends CardImpl {
|
||||
|
||||
public GeneralsKabuto (UUID ownerId) {
|
||||
super(ownerId, 251, "General's Kabuto", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{2}");
|
||||
super(ownerId, 251, "General's Kabuto", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{4}");
|
||||
this.expansionSetCode = "CHK";
|
||||
this.subtype.add("Equipment");
|
||||
|
||||
|
|
Loading…
Reference in a new issue