diff options
| author | historia <[not public]> | 2026-08-03 14:08:09 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-08-03 14:08:09 -0400 |
| commit | 612e429de438821ae8e099d6b54f87c11ff6c1b5 (patch) | |
| tree | ad6f9edf74339b9b50f9c7c2cd314ee7b6e04b2c /data/cards.yaml | |
| parent | f51424c90dbce7191a31b6e675818c985f0f4539 (diff) | |
| download | thehouseoficarus-612e429de438821ae8e099d6b54f87c11ff6c1b5.tar.gz | |
refactor: casino game slop refactor
Diffstat (limited to 'data/cards.yaml')
| -rw-r--r-- | data/cards.yaml | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/data/cards.yaml b/data/cards.yaml new file mode 100644 index 0000000..934e1f5 --- /dev/null +++ b/data/cards.yaml @@ -0,0 +1,59 @@ +# Unicode blackjack card art. Each card may define 5, 7, and 9 line art. +# Keys are rank plus suit: A/K/Q/J/10/2-9 followed by C/D/H/S. +# Missing art uses the generated Unicode card renderer. +# Example override: +# AH: +# 5: ["┌───┐", "│ A │", "│ ♥ │", "│ A │", "└───┘"] +cards: + AC: {} + AD: {} + AH: {} + AS: {} + 2C: {} + 2D: {} + 2H: {} + 2S: {} + 3C: {} + 3D: {} + 3H: {} + 3S: {} + 4C: {} + 4D: {} + 4H: {} + 4S: {} + 5C: {} + 5D: {} + 5H: {} + 5S: {} + 6C: {} + 6D: {} + 6H: {} + 6S: {} + 7C: {} + 7D: {} + 7H: {} + 7S: {} + 8C: {} + 8D: {} + 8H: {} + 8S: {} + 9C: {} + 9D: {} + 9H: {} + 9S: {} + 10C: {} + 10D: {} + 10H: {} + 10S: {} + JC: {} + JD: {} + JH: {} + JS: {} + QC: {} + QD: {} + QH: {} + QS: {} + KC: {} + KD: {} + KH: {} + KS: {} |
