Skip to content

Commit

Permalink
[level-6] q2: tempo clue chop move
Browse files Browse the repository at this point in the history
  • Loading branch information
springcomp committed Jan 24, 2025
1 parent f73db68 commit 0657e2b
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 0 deletions.
28 changes: 28 additions & 0 deletions docs/challenge-questions/level-6-question-2-part-2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
stacks:
- r: 4
- y: 2
- g: 2
- b: 2
- p: 5
players:
- cards:
- type: x
- type: x
- type: x
above:
text:
- Chop
- Move
- type: g3
clue: 3
retouched: true
- cards:
- type: x
- type: x
- type: x
- type: x
- cards:
- type: x
- type: x
- type: x
- type: x
25 changes: 25 additions & 0 deletions docs/challenge-questions/level-6-question-2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
stacks:
- r: 4
- y: 2
- g: 2
- b: 2
- p: 5
players:
- cards:
- type: x
- type: x
- type: x
- type: g3
clue: 3
retouched: true
- clueGiver: true
cards:
- type: x
- type: x
- type: x
- type: x
- cards:
- type: x
- type: x
- type: x
- type: x
34 changes: 34 additions & 0 deletions docs/challenge-questions/level-6.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ title: Level 6 Challenge Questions
---

import Question1 from "./level-6-question-1.yml";
import Question2 from "./level-6-question-2.yml";
import Solution2 from "./level-6-question-2-part-2.yml";

import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem";
Expand Down Expand Up @@ -38,3 +40,35 @@ These questions are for [level 6](../level-6.mdx) strategies.
</Tabs>

<Question1 />

## Question 2

<Tabs
defaultValue="question2"
values={[
{label: 'Question', value: 'question2'},
{label: 'Solution', value: 'solution2'},
]}>
<TabItem value="question2">

- Alice has one clued, but otherwise unknown card in her hand: a green card in slot 4.
- Bob clues 3 to Alice, which touches her card in slot 4 and "fills it in".
- What actions will Alice take on her next turn?

<Question2 />

</TabItem>
<TabItem value="solution2">

- Since Alice card was already "gotten" when Bob clued, this must be a _Tempo Clue_.
- The clue gets a single new card to become playable within the next turn.
- Thus, the clue is not considered to be "valuable" enough; it must have a deeper meaning.
- Alice knows that a non-valuable _Tempo Clue_ actually _Chop Moves_ the card currently on the chop.
- Alice performs the following actions:
- Alice marks her slot 3 card as being _Chop Moved_ with a "cm" note on the card.
- Alice will play the green 3 card from slot 4 on her next turn.

<Solution2 />

</TabItem>
</Tabs>

0 comments on commit 0657e2b

Please sign in to comment.