From 14f50d7531252f2765c1f19a3b56a71b2e349f5f Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 18 Jun 2014 13:41:16 +0200 Subject: [PATCH] * Hellkite Hatchling - Fixed wrong P/T of 4/4 to 2/2. --- Mage.Sets/src/mage/sets/conflux/HellkiteHatchling.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/conflux/HellkiteHatchling.java b/Mage.Sets/src/mage/sets/conflux/HellkiteHatchling.java index 077d88e5da5..6a9a3bc396d 100644 --- a/Mage.Sets/src/mage/sets/conflux/HellkiteHatchling.java +++ b/Mage.Sets/src/mage/sets/conflux/HellkiteHatchling.java @@ -56,8 +56,8 @@ public class HellkiteHatchling extends CardImpl { this.color.setRed(true); this.color.setGreen(true); - this.power = new MageInt(4); - this.toughness = new MageInt(4); + this.power = new MageInt(2); + this.toughness = new MageInt(2); // Devour 1 (As this enters the battlefield, you may sacrifice any number of creatures. This creature enters the battlefield with that many +1/+1 counters on it.) this.addAbility(new DevourAbility(DevourFactor.Devour1));