Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup redundant Moat description #599

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vdom/src/com/vdom/core/Cards.java
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down