diff --git a/docs/battle-map-terrain-atlas-pipeline.md b/docs/battle-map-terrain-atlas-pipeline.md index 85eea32..50bd10c 100644 --- a/docs/battle-map-terrain-atlas-pipeline.md +++ b/docs/battle-map-terrain-atlas-pipeline.md @@ -2,7 +2,7 @@ ## Scope -The first thirteen 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 fourteen 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 @@ -30,6 +30,7 @@ python scripts/generate-handpaint-map-sample.py --map tenth --webp-quality 90 python scripts/generate-handpaint-map-sample.py --map eleventh --webp-quality 90 python scripts/generate-handpaint-map-sample.py --map twelfth --webp-quality 90 python scripts/generate-handpaint-map-sample.py --map thirteenth --webp-quality 90 +python scripts/generate-handpaint-map-sample.py --map fourteenth --webp-quality 90 ``` ## Current Assets @@ -47,6 +48,7 @@ python scripts/generate-handpaint-map-sample.py --map thirteenth --webp-quality - `src/assets/images/battle/eleventh-battle-map.webp` - `src/assets/images/battle/twelfth-battle-map.webp` - `src/assets/images/battle/thirteenth-battle-map.webp` +- `src/assets/images/battle/fourteenth-battle-map.webp` ## QA Outputs @@ -74,5 +76,7 @@ python scripts/generate-handpaint-map-sample.py --map thirteenth --webp-quality - `docs/twelfth-battle-map-handpaint-preview.png` - `docs/thirteenth-battle-map-handpaint-before-after.png` - `docs/thirteenth-battle-map-handpaint-preview.png` +- `docs/fourteenth-battle-map-handpaint-before-after.png` +- `docs/fourteenth-battle-map-handpaint-preview.png` Browser screenshots are saved per verification run after build/deploy. diff --git a/docs/fourteenth-battle-map-handpaint-before-after.png b/docs/fourteenth-battle-map-handpaint-before-after.png new file mode 100644 index 0000000..6b01989 Binary files /dev/null and b/docs/fourteenth-battle-map-handpaint-before-after.png differ diff --git a/docs/fourteenth-battle-map-handpaint-preview.png b/docs/fourteenth-battle-map-handpaint-preview.png new file mode 100644 index 0000000..b3a7cb3 Binary files /dev/null and b/docs/fourteenth-battle-map-handpaint-preview.png differ diff --git a/scripts/generate-handpaint-map-sample.py b/scripts/generate-handpaint-map-sample.py index 19ede53..c7efe5d 100644 --- a/scripts/generate-handpaint-map-sample.py +++ b/scripts/generate-handpaint-map-sample.py @@ -136,6 +136,15 @@ MAP_CONFIGS = { "before": BATTLE_IMAGE_DIR / "thirteenth-battle-map.svg", "seed": 240824, }, + "fourteenth": { + "slug": "fourteenth-battle-map", + "terrain_export": "fourteenthBattleMap", + "units_export": "fourteenthBattleUnits", + "ally_positions_export": "fourteenthBattleAllyPositions", + "out": BATTLE_IMAGE_DIR / "fourteenth-battle-map.webp", + "before": BATTLE_IMAGE_DIR / "fourteenth-battle-map.svg", + "seed": 240834, + }, } diff --git a/src/assets/images/battle/fourteenth-battle-map.svg b/src/assets/images/battle/fourteenth-battle-map.svg deleted file mode 100644 index 7c6a2f8..0000000 --- a/src/assets/images/battle/fourteenth-battle-map.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/assets/images/battle/fourteenth-battle-map.webp b/src/assets/images/battle/fourteenth-battle-map.webp new file mode 100644 index 0000000..3781fe7 Binary files /dev/null and b/src/assets/images/battle/fourteenth-battle-map.webp differ diff --git a/src/game/data/battleMapAssets.ts b/src/game/data/battleMapAssets.ts index d684417..09b252c 100644 --- a/src/game/data/battleMapAssets.ts +++ b/src/game/data/battleMapAssets.ts @@ -31,7 +31,7 @@ import fortySecondBattleMapUrl from '../../assets/images/battle/forty-second-bat import fortySeventhBattleMapUrl from '../../assets/images/battle/forty-seventh-battle-map.svg'; import fortySixthBattleMapUrl from '../../assets/images/battle/forty-sixth-battle-map.svg'; import fortyThirdBattleMapUrl from '../../assets/images/battle/forty-third-battle-map.svg'; -import fourteenthBattleMapUrl from '../../assets/images/battle/fourteenth-battle-map.svg'; +import fourteenthBattleMapUrl from '../../assets/images/battle/fourteenth-battle-map.webp'; import fourthBattleMapUrl from '../../assets/images/battle/fourth-battle-map.webp'; import nineteenthBattleMapUrl from '../../assets/images/battle/nineteenth-battle-map.svg'; import ninthBattleMapUrl from '../../assets/images/battle/ninth-battle-map.webp';