This commit is contained in:
Bastian Wagner
2026-08-20 13:23:55 +02:00
parent d174d46fbd
commit d31d064d36
9 changed files with 6 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 366 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 538 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

View File

@@ -1,6 +1,8 @@
const RUNTIME_MONSTER_ARTWORK: Readonly<Record<string, string>> = { const RUNTIME_MONSTER_ARTWORK: Readonly<Record<string, string>> = {
'/images/monsters/ash-rat.png': '/images/monsters/runtime/ash-rat-560.jpg', '/images/monsters/ash-rat.png': '/images/monsters/runtime/ash-rat-560.jpg',
'/images/monsters/road-bandit.png': '/images/monsters/runtime/road-bandit-560.jpg', '/images/monsters/road-bandit.png': '/images/monsters/runtime/road-bandit-560.jpg',
'/images/monsters/wild-road-dog.png': '/images/monsters/runtime/wild-road-dog-560.png',
'/images/monsters/charred-looter.png': '/images/monsters/runtime/charred-looter-560.png',
}; };
export function runtimeMonsterArtworkPath(artworkPath: string): string | undefined { export function runtimeMonsterArtworkPath(artworkPath: string): string | undefined {
@@ -12,11 +14,15 @@ export function runtimeMonsterArtworkPath(artworkPath: string): string | undefin
const MONSTER_CUTOUT: Readonly<Record<string, string>> = { const MONSTER_CUTOUT: Readonly<Record<string, string>> = {
'ash-rat': '/images/combat/sprites/ash-rat-760.png', 'ash-rat': '/images/combat/sprites/ash-rat-760.png',
'road-bandit': '/images/combat/sprites/road-bandit-620.png', 'road-bandit': '/images/combat/sprites/road-bandit-620.png',
'wild-road-dog': '/images/combat/sprites/wild-road-dog-760.png',
'charred-looter': '/images/combat/sprites/charred-looter-620.png',
}; };
const MONSTER_ICON: Readonly<Record<string, string>> = { const MONSTER_ICON: Readonly<Record<string, string>> = {
'ash-rat': '/images/combat/icons/ash-rat-128.png', 'ash-rat': '/images/combat/icons/ash-rat-128.png',
'road-bandit': '/images/combat/icons/road-bandit-128.png', 'road-bandit': '/images/combat/icons/road-bandit-128.png',
'wild-road-dog': '/images/combat/icons/wild-road-dog-128.png',
'charred-looter': '/images/combat/icons/charred-looter-128.png',
}; };
// Share of the battlefield height each monster sprite occupies, so a hulking // Share of the battlefield height each monster sprite occupies, so a hulking