diff --git a/vdom/src/com/vdom/core/Cards.java b/vdom/src/com/vdom/core/Cards.java index 5c517599b..acba1a64b 100644 --- a/vdom/src/com/vdom/core/Cards.java +++ b/vdom/src/com/vdom/core/Cards.java @@ -695,7 +695,7 @@ public enum Kind { actionCardsBaseGame.add(market = new CardImpl.Builder(Cards.Kind.Market, 5, Type.Action).addActions(1).addBuys(1).addGold(1).addCards(1).expansion(Expansion.Base).build()); actionCardsBaseGame.add(militia = new CardImpl.Builder(Cards.Kind.Militia, 4, Type.Action, Type.Attack).addGold(2).description("Each other player discards down to 3 cards in hand.").expansion(Expansion.Base).build()); actionCardsBaseGame.add(mine = new CardImpl.Builder(Cards.Kind.Mine, 5, Type.Action).description("You may trash a Treasure from your hand. Gain a Treasure to your hand costing up to (3) Coins more than it.").expansion(Expansion.Base).build()); - actionCardsBaseGame.add(moat = new CardImpl.Builder(Cards.Kind.Moat, 2, Type.Action, Type.Reaction).addCards(2).description("When another player plays an Attack card, you may reveal this from your hand. If you do, you are unaffected by that Attack.").description("When another player plays an Attack card, you may reveal this from your hand. If you do, you are unaffected by that Attack.").expansion(Expansion.Base).build()); + actionCardsBaseGame.add(moat = new CardImpl.Builder(Cards.Kind.Moat, 2, Type.Action, Type.Reaction).addCards(2).description("When another player plays an Attack card, you may reveal this from your hand. If you do, you are unaffected by that Attack.").expansion(Expansion.Base).build()); actionCardsBaseGame.add(moneyLender = new CardImpl.Builder(Cards.Kind.Moneylender, 4, Type.Action).description("You may trash a Copper from your hand for +(3) Coins.").expansion(Expansion.Base).build()); actionCardsBaseGame.add(remodel = new CardImpl.Builder(Cards.Kind.Remodel, 4, Type.Action).trashForced().description("Trash a card from your hand. Gain a card costing up to (2) Coins more than it.").expansion(Expansion.Base).build()); actionCardsBaseGame.add(smithy = new CardImpl.Builder(Cards.Kind.Smithy, 4, Type.Action).addCards(3).expansion(Expansion.Base).build());