diff --git a/docs/battle-map-terrain-atlas-pipeline.md b/docs/battle-map-terrain-atlas-pipeline.md index e45d8d4..85eea32 100644 --- a/docs/battle-map-terrain-atlas-pipeline.md +++ b/docs/battle-map-terrain-atlas-pipeline.md @@ -2,7 +2,7 @@ ## Scope -The first twelve 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 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. ## Art Direction @@ -29,6 +29,7 @@ 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 python scripts/generate-handpaint-map-sample.py --map twelfth --webp-quality 90 +python scripts/generate-handpaint-map-sample.py --map thirteenth --webp-quality 90 ``` ## Current Assets @@ -45,6 +46,7 @@ python scripts/generate-handpaint-map-sample.py --map twelfth --webp-quality 90 - `src/assets/images/battle/tenth-battle-map.webp` - `src/assets/images/battle/eleventh-battle-map.webp` - `src/assets/images/battle/twelfth-battle-map.webp` +- `src/assets/images/battle/thirteenth-battle-map.webp` ## QA Outputs @@ -70,5 +72,7 @@ python scripts/generate-handpaint-map-sample.py --map twelfth --webp-quality 90 - `docs/eleventh-battle-map-handpaint-preview.png` - `docs/twelfth-battle-map-handpaint-before-after.png` - `docs/twelfth-battle-map-handpaint-preview.png` +- `docs/thirteenth-battle-map-handpaint-before-after.png` +- `docs/thirteenth-battle-map-handpaint-preview.png` Browser screenshots are saved per verification run after build/deploy. diff --git a/docs/thirteenth-battle-map-handpaint-before-after.png b/docs/thirteenth-battle-map-handpaint-before-after.png new file mode 100644 index 0000000..e701081 Binary files /dev/null and b/docs/thirteenth-battle-map-handpaint-before-after.png differ diff --git a/docs/thirteenth-battle-map-handpaint-preview.png b/docs/thirteenth-battle-map-handpaint-preview.png new file mode 100644 index 0000000..bc72d42 Binary files /dev/null and b/docs/thirteenth-battle-map-handpaint-preview.png differ diff --git a/scripts/generate-handpaint-map-sample.py b/scripts/generate-handpaint-map-sample.py index e72e916..19ede53 100644 --- a/scripts/generate-handpaint-map-sample.py +++ b/scripts/generate-handpaint-map-sample.py @@ -127,6 +127,15 @@ MAP_CONFIGS = { "before": BATTLE_IMAGE_DIR / "twelfth-battle-map.svg", "seed": 240814, }, + "thirteenth": { + "slug": "thirteenth-battle-map", + "terrain_export": "thirteenthBattleMap", + "units_export": "thirteenthBattleUnits", + "ally_positions_export": "thirteenthBattleAllyPositions", + "out": BATTLE_IMAGE_DIR / "thirteenth-battle-map.webp", + "before": BATTLE_IMAGE_DIR / "thirteenth-battle-map.svg", + "seed": 240824, + }, } diff --git a/src/assets/images/battle/thirteenth-battle-map.svg b/src/assets/images/battle/thirteenth-battle-map.svg deleted file mode 100644 index a2dcc0c..0000000 --- a/src/assets/images/battle/thirteenth-battle-map.svg +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/assets/images/battle/thirteenth-battle-map.webp b/src/assets/images/battle/thirteenth-battle-map.webp new file mode 100644 index 0000000..63e28a6 Binary files /dev/null and b/src/assets/images/battle/thirteenth-battle-map.webp differ diff --git a/src/game/data/battleMapAssets.ts b/src/game/data/battleMapAssets.ts index f6fcc57..d684417 100644 --- a/src/game/data/battleMapAssets.ts +++ b/src/game/data/battleMapAssets.ts @@ -41,7 +41,7 @@ import seventeenthBattleMapUrl from '../../assets/images/battle/seventeenth-batt import sixteenthBattleMapUrl from '../../assets/images/battle/sixteenth-battle-map.svg'; import sixthBattleMapUrl from '../../assets/images/battle/sixth-battle-map.webp'; import tenthBattleMapUrl from '../../assets/images/battle/tenth-battle-map.webp'; -import thirteenthBattleMapUrl from '../../assets/images/battle/thirteenth-battle-map.svg'; +import thirteenthBattleMapUrl from '../../assets/images/battle/thirteenth-battle-map.webp'; import thirtiethBattleMapUrl from '../../assets/images/battle/thirtieth-battle-map.svg'; import thirtyEighthBattleMapUrl from '../../assets/images/battle/thirty-eighth-battle-map.svg'; import thirtyFifthBattleMapUrl from '../../assets/images/battle/thirty-fifth-battle-map.svg';