Skip to content

Commit

Permalink
Fix number of Guard Dogs and Meal Steals
Browse files Browse the repository at this point in the history
  • Loading branch information
jaythomas committed Nov 5, 2017
1 parent b272503 commit 338c455
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ Play these on your turn in place of attacking if you so wish.
- 6 – Dodges
- 5 – Blocks, Uppercuts
- 3 – Mattresses, Grease Buckets, Soups
- 2 – Acid Coffees, Cheap Shots, Gamblin' Mans, Guard Dogs, Insurances, Meal Steals, Mirrors, Siphons, Surgeries, Tires, Wrenches
- 1 – A Gun, Armor, Avalanche, Bulldozer, Crane, Deflector, Diesel Spill, Earthquake, Energy Drink, It’s Getting Windy, Magnet, Sleep, Spare Bolts, Reverse, The Bees, Tire Iron, Toolbox, Whirlwind
- 2 – Acid Coffees, Cheap Shots, Gamblin' Mans, Guard Dogs, Insurances, Mirrors, Siphons, Surgeries, Tires, Wrenches
- 1 – A Gun, Armor, Avalanche, Bulldozer, Crane, Deflector, Diesel Spill, Earthquake, Energy Drink, It’s Getting Windy, Magnet, Meal Steal, Sleep, Spare Bolts, Reverse, The Bees, Tire Iron, Toolbox, Whirlwind

## API

Expand Down
4 changes: 2 additions & 2 deletions src/deck.js
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ const deck = [
{
id: 'guard-dog',
type: 'attack',
copies: 1,
copies: 2,
filter: () => [],
contact: (player, target, cards, game) => {
target.hp -= 4
Expand Down Expand Up @@ -554,7 +554,7 @@ const deck = [
{
id: 'meal-steal',
type: 'attack',
copies: 2,
copies: 1,
filter: () => [],
contact: (player, target, cards, game) => {
const stolenCards = target.hand
Expand Down

0 comments on commit 338c455

Please sign in to comment.