From 4697c16c3df8cbc32a2e42327066d792c0b1b823 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 8 Jan 2017 10:47:18 +0100 Subject: [PATCH] * Outland Boar - fixed wrong P/T of 3/3 to 4/4. --- Mage.Sets/src/mage/cards/o/OutlandBoar.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/o/OutlandBoar.java b/Mage.Sets/src/mage/cards/o/OutlandBoar.java index 6f27b5d1c67..18b42c630a4 100644 --- a/Mage.Sets/src/mage/cards/o/OutlandBoar.java +++ b/Mage.Sets/src/mage/cards/o/OutlandBoar.java @@ -55,8 +55,8 @@ public class OutlandBoar extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}{G}"); this.subtype.add("Boar"); - this.power = new MageInt(3); - this.toughness = new MageInt(3); + this.power = new MageInt(4); + this.toughness = new MageInt(4); // Outland Boar can't be blocked by creatures with power 2 or less. this.addAbility(new SimpleEvasionAbility(new CantBeBlockedByCreaturesSourceEffect(filter, Duration.WhileOnBattlefield)));