diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html index b70b26679..f315bf2b3 100644 --- a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html +++ b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html @@ -18,6 +18,7 @@ - "Gimli's Battle Axe, Weapon of Erebor" no longer gives vitality bonus (per card text). - "Retribution" now only the owner of the Dwarf gets the option to use the "Retribution" effect, when that Dwarf wins the skirmish. +- "Uruk Brute" has now 9 strength (per card text). 12 Mar. 2013 - "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul. diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_222.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_222.java index 3f07c9e1f..3cc5f4598 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_222.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_222.java @@ -20,7 +20,7 @@ import com.gempukku.lotro.logic.modifiers.StrengthModifier; */ public class Card20_222 extends AbstractMinion { public Card20_222() { - super(4, 8, 2, 5, Race.URUK_HAI, Culture.ISENGARD, "Uruk Brute"); + super(4, 9, 2, 5, Race.URUK_HAI, Culture.ISENGARD, "Uruk Brute"); addKeyword(Keyword.DAMAGE, 1); }