You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clarifying precedence from ambiguous TCCM over TCM (#1323)
* tccm over tcm
* chore: format with Prettier
* Made location of the Chop Moved card explicit for clarity
* fixed slots impacted
* moved example to a challenge question
* do not reveal solution in the game state
* Update level-6.mdx
---------
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: James <[email protected]>
@@ -72,3 +74,38 @@ These questions are for [level 6](../level-6.mdx) strategies.
72
74
73
75
</TabItem>
74
76
</Tabs>
77
+
78
+
## Question 3
79
+
80
+
<Tabs
81
+
defaultValue="question3"
82
+
values={[
83
+
{label: 'Question', value: 'question3'},
84
+
{label: 'Solution', value: 'solution3'},
85
+
]}>
86
+
<TabItemvalue="question3">
87
+
88
+
- The red 1 card is played on the stacks.
89
+
- Alice has a red card in slot 3, promised to be a playable red 4.
90
+
- Bob has an unknown 5, saved on chop.
91
+
- Cathy has a red card in slot 2, promised to a a playable red 3.
92
+
- Alice then gives a red clue to Bob, that touches a red card on slot 1 and fills-in the previously unknown red 5 in slot 5.
93
+
- What actions will Bob take on his turn?
94
+
95
+
<Question3 />
96
+
97
+
</TabItem>
98
+
<TabItemvalue="solution3">
99
+
100
+
- In this situation, the focus of the red clue is ambiguous:
101
+
102
+
- If the red clue were focused on the "new" slot 1 card, then the focus would be _Trash_, so the resulting move would be a _Trash Chop Move_ on slots 2, 3 and 4.
103
+
- If the red clue were focused on the already-clued slot 5, then the focus would be the previously-unknown-to-be-playable red 5, so the resulting move would be a _Tempo Clue Chop Move_ on slot 4.
104
+
- Bob also knows that _Tempo Clue Chop Moves_ have precedence over _Trash Chop Moves_.
105
+
- Thus, in this situation, Bob should only _Chop Move_ the card in slot 4.
106
+
- Bob writes "cm" on his slot 4 card and proceeds to give an unrelated clue or discards his slot 1 card.
Copy file name to clipboardexpand all lines: docs/level-6.mdx
+2
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,8 @@ import DiscardModulation from "./level-6/discard-modulation.yml";
52
52
53
53
<TempoClueChopMovePart2 />
54
54
55
+
- If a clue looks like a _Tempo Clue_ and a [_Trash Chop Move_](level-4#the-trash-chop-move-tcm) at the same time, then we agree to treat it as a _Tempo Clue_. (_Tempo Clues_ take precedence because they are the more natural move.)
0 commit comments