From 6353ccce628f05acc6fbbd1c89be7b1948ea2758 Mon Sep 17 00:00:00 2001 From: magenoxx Date: Wed, 11 May 2011 09:39:33 +0400 Subject: [PATCH] Fixed BehemothSledge color. --- Mage.Sets/src/mage/sets/alarareborn/BehemothSledge.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mage.Sets/src/mage/sets/alarareborn/BehemothSledge.java b/Mage.Sets/src/mage/sets/alarareborn/BehemothSledge.java index dd20c1f3d3..837f39500f 100644 --- a/Mage.Sets/src/mage/sets/alarareborn/BehemothSledge.java +++ b/Mage.Sets/src/mage/sets/alarareborn/BehemothSledge.java @@ -55,6 +55,8 @@ public class BehemothSledge extends CardImpl { super(ownerId, 65, "Behemoth Sledge", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT}, "{1}{G}{W}"); this.expansionSetCode = "ARB"; this.subtype.add("Equipment"); + this.color.setGreen(true); + this.color.setWhite(true); this.addAbility(new EquipAbility(Outcome.AddAbility, new GenericManaCost(3))); this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(LifelinkAbility.getInstance(), Constants.AttachmentType.EQUIPMENT))); this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(TrampleAbility.getInstance(), Constants.AttachmentType.EQUIPMENT)));