diff --git a/docs/battle-map-terrain-atlas-pipeline.md b/docs/battle-map-terrain-atlas-pipeline.md index b7da3ff..1c9ae25 100644 --- a/docs/battle-map-terrain-atlas-pipeline.md +++ b/docs/battle-map-terrain-atlas-pipeline.md @@ -2,7 +2,7 @@ ## Scope -The first ten campaign battles now use the same hand-painted tactical map pipeline. The renderer still reads the original scenario tile coordinates and battle logic; only the map texture asset changes from flat/vector map art to low-contrast raster terrain. +The first eleven campaign battles now use the same hand-painted tactical map pipeline. The renderer still reads the original scenario tile coordinates and battle logic; only the map texture asset changes from flat/vector map art to low-contrast raster terrain. ## Art Direction @@ -27,6 +27,7 @@ python scripts/generate-handpaint-map-sample.py --map seventh --webp-quality 90 python scripts/generate-handpaint-map-sample.py --map eighth --webp-quality 90 python scripts/generate-handpaint-map-sample.py --map ninth --webp-quality 90 python scripts/generate-handpaint-map-sample.py --map tenth --webp-quality 90 +python scripts/generate-handpaint-map-sample.py --map eleventh --webp-quality 90 ``` ## Current Assets @@ -41,6 +42,7 @@ python scripts/generate-handpaint-map-sample.py --map tenth --webp-quality 90 - `src/assets/images/battle/eighth-battle-map.webp` - `src/assets/images/battle/ninth-battle-map.webp` - `src/assets/images/battle/tenth-battle-map.webp` +- `src/assets/images/battle/eleventh-battle-map.webp` ## QA Outputs @@ -62,5 +64,7 @@ python scripts/generate-handpaint-map-sample.py --map tenth --webp-quality 90 - `docs/ninth-battle-map-handpaint-preview.png` - `docs/tenth-battle-map-handpaint-before-after.png` - `docs/tenth-battle-map-handpaint-preview.png` +- `docs/eleventh-battle-map-handpaint-before-after.png` +- `docs/eleventh-battle-map-handpaint-preview.png` Browser screenshots are saved per verification run after build/deploy. diff --git a/docs/eleventh-battle-map-handpaint-before-after.png b/docs/eleventh-battle-map-handpaint-before-after.png new file mode 100644 index 0000000..029c473 Binary files /dev/null and b/docs/eleventh-battle-map-handpaint-before-after.png differ diff --git a/docs/eleventh-battle-map-handpaint-preview.png b/docs/eleventh-battle-map-handpaint-preview.png new file mode 100644 index 0000000..c0dea23 Binary files /dev/null and b/docs/eleventh-battle-map-handpaint-preview.png differ diff --git a/scripts/generate-handpaint-map-sample.py b/scripts/generate-handpaint-map-sample.py index 84e1825..9ad0933 100644 --- a/scripts/generate-handpaint-map-sample.py +++ b/scripts/generate-handpaint-map-sample.py @@ -109,6 +109,15 @@ MAP_CONFIGS = { "before": BATTLE_IMAGE_DIR / "tenth-battle-map.svg", "seed": 240794, }, + "eleventh": { + "slug": "eleventh-battle-map", + "terrain_export": "eleventhBattleMap", + "units_export": "eleventhBattleUnits", + "ally_positions_export": "eleventhBattleAllyPositions", + "out": BATTLE_IMAGE_DIR / "eleventh-battle-map.webp", + "before": BATTLE_IMAGE_DIR / "eleventh-battle-map.svg", + "seed": 240804, + }, } diff --git a/src/assets/images/battle/eleventh-battle-map.svg b/src/assets/images/battle/eleventh-battle-map.svg deleted file mode 100644 index 9b527a3..0000000 --- a/src/assets/images/battle/eleventh-battle-map.svg +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/assets/images/battle/eleventh-battle-map.webp b/src/assets/images/battle/eleventh-battle-map.webp new file mode 100644 index 0000000..48a24f8 Binary files /dev/null and b/src/assets/images/battle/eleventh-battle-map.webp differ diff --git a/src/game/data/battleMapAssets.ts b/src/game/data/battleMapAssets.ts index 501e8d2..ab4630f 100644 --- a/src/game/data/battleMapAssets.ts +++ b/src/game/data/battleMapAssets.ts @@ -1,6 +1,6 @@ import eighthBattleMapUrl from '../../assets/images/battle/eighth-battle-map.webp'; import eighteenthBattleMapUrl from '../../assets/images/battle/eighteenth-battle-map.svg'; -import eleventhBattleMapUrl from '../../assets/images/battle/eleventh-battle-map.svg'; +import eleventhBattleMapUrl from '../../assets/images/battle/eleventh-battle-map.webp'; import fiftiethBattleMapUrl from '../../assets/images/battle/fiftieth-battle-map.svg'; import fiftyFirstBattleMapUrl from '../../assets/images/battle/fifty-first-battle-map.svg'; import fiftySecondBattleMapUrl from '../../assets/images/battle/fifty-second-battle-map.svg';