diff options
| author | Florian Fischer <florian.fischer@muhq.space> | 2025-08-21 23:57:41 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fischer@muhq.space> | 2025-08-21 23:57:41 +0200 |
| commit | e81d8437e5a0569dd7a84d85e35e369018b4a6e8 (patch) | |
| tree | d39c49cfb3ca8852840d701d5fe8d80e5cd45429 | |
| parent | 2cdacf8e51d30ca05e2700bff38b2be8c3daaf18 (diff) | |
| download | muhqs-game-e81d8437e5a0569dd7a84d85e35e369018b4a6e8.tar.gz muhqs-game-e81d8437e5a0569dd7a84d85e35e369018b4a6e8.zip | |
fix amount of resource gained for discard 2
| -rw-r--r-- | go/game/action.go | 2 | ||||
| -rw-r--r-- | rules/en/rules.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/go/game/action.go b/go/game/action.go index b8c92712..382eeaae 100644 --- a/go/game/action.go +++ b/go/game/action.go @@ -119,7 +119,7 @@ func (a *FreeDiscardAction) PayCosts(s *LocalState) bool { func (*FreeDiscardAction) CheckTargets(*LocalState) error { return nil } func (a *FreeDiscardAction) resolve(*LocalState) { - a.player.gainResource(2) + a.player.gainResource(1) } func (a *FreeDiscardAction) String() string { diff --git a/rules/en/rules.md b/rules/en/rules.md index 939c78db..5ee54ef6 100644 --- a/rules/en/rules.md +++ b/rules/en/rules.md @@ -312,7 +312,7 @@ packsize = number 4. Cards without **buy cost**: 1. Can not be part of a **store** 2. Can not be part of a **draft** -5. Each player has the **free action** "Discard 2 cards: gain 1 **resource**" +5. Each player has the **free action** "Discard two cards: gain one **resource**" 6. How those characteristics are represented on a card can be seen on the exemplary [explanation card](../../latex-build/en/unit_explanation.png) 7. To track the state of a card's permanent, the card is openly placed on the table |
