From 9d776771b125df999f7a7235ce0e1f50223317bc Mon Sep 17 00:00:00 2001 From: hypercross Date: Mon, 10 Aug 2026 12:24:40 +0800 Subject: [PATCH] feat: showcase facing states in poker setup Deal the deck facedown and stand two drawn cards on their bottom edge, exercising the back and standing facings alongside the face-up flop. --- games/poker/poker.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/games/poker/poker.md b/games/poker/poker.md index 3d1340f..76f6f6e 100644 --- a/games/poker/poker.md +++ b/games/poker/poker.md @@ -125,8 +125,9 @@ string,number,number,number ## Setup -Deal the whole deck onto the draw pile (`poker:card` expands to every card of -that type), then flip a flop onto the community slots. +Deal the whole deck facedown onto the draw pile (`poker:card` expands to every +card of that type, `facing: back`), then flip a flop onto the community slots +and stand a couple of drawn cards on their bottom edge. ```yaml file=main.yaml role: setup @@ -135,10 +136,17 @@ id: main setup: - path: /deck parts: poker:card + facing: back - path: /community/0 parts: poker:card#as - path: /community/1 parts: poker:card#kh - path: /community/2 parts: poker:card#7d + - path: /community/3 + parts: poker:card#jc + facing: standing + - path: /community/4 + parts: poker:card#2h + facing: standing ```