M6.14: Single-column card layout with clade/species descriptions

Switch Step 0 (Clade) and Step 1 (Species) from a 3-column card grid
to a 1-column layout, with each card carrying a codex-voice
description paragraph between the meta line and the trait chips.
Rationale: establish the world's tone before mechanics — the player
reads who Canidae or Wolf-Folk *are* before evaluating ability mods
and trait pills. Trade is more vertical scrolling, but the card
content was already going wider than three columns comfortably
allowed once the parchment theme bumped padding.

Schema: CladeDef and SpeciesDef gain a Description field (string,
empty default). Populated for all 7 clades and 19 species, sourced
from the doc's italicized blockquote + a one-sentence summary of
the prose paragraph that follows. Empty descriptions fall through
silently — a species without a description still renders, just
without the paragraph.

UI: MakeGrid in both steps becomes Columns = 1 with ExpandFill;
BuildCard sets card.SizeFlagsHorizontal = ExpandFill (replaces the
fixed CustomMinimumSize 200) and prepends the autowrap description
label after the meta line. Hybrid mode stacks sire and dam single-
column grids vertically — same logic as before, just one card wide
each.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Christopher Wiebe
2026-05-04 21:47:00 -07:00
parent 067038de45
commit 66055f9549
6 changed files with 69 additions and 8 deletions
+6
View File
@@ -16,6 +16,12 @@ public sealed record CladeDef
[JsonPropertyName("name")]
public string Name { get; init; } = "";
/// <summary>Codex-voice clade description: usually the doc's italicized
/// blockquote followed by a one-sentence summary. Surfaced on the
/// Step 0 card to establish the world's tone before mechanics.</summary>
[JsonPropertyName("description")]
public string Description { get; init; } = "";
/// <summary>STR/DEX/CON/INT/WIS/CHA → modifier (typically +1 each on two abilities).</summary>
[JsonPropertyName("ability_mods")]
public Dictionary<string, int> AbilityMods { get; init; } = new();
+6
View File
@@ -18,6 +18,12 @@ public sealed record SpeciesDef
[JsonPropertyName("name")]
public string Name { get; init; } = "";
/// <summary>Codex-voice species description: usually the doc's italicized
/// blockquote followed by a one-sentence physical/cultural summary.
/// Surfaced on the Step 1 card.</summary>
[JsonPropertyName("description")]
public string Description { get; init; } = "";
/// <summary>Body size category, snake_case (small / medium / medium_large / large).</summary>
[JsonPropertyName("size")]
public string Size { get; init; } = "medium";