images
BIN
apps/web/public/images/combat/icons/charred-looter-128.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
apps/web/public/images/combat/icons/wild-road-dog-128.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
apps/web/public/images/combat/sprites/charred-looter-620.png
Normal file
|
After Width: | Height: | Size: 366 KiB |
BIN
apps/web/public/images/combat/sprites/wild-road-dog-760.png
Normal file
|
After Width: | Height: | Size: 313 KiB |
BIN
apps/web/public/images/monsters/charred-looter.png
Normal file
|
After Width: | Height: | Size: 2.0 MiB |
BIN
apps/web/public/images/monsters/runtime/charred-looter-560.png
Normal file
|
After Width: | Height: | Size: 538 KiB |
BIN
apps/web/public/images/monsters/runtime/wild-road-dog-560.png
Normal file
|
After Width: | Height: | Size: 294 KiB |
BIN
apps/web/public/images/monsters/wild-road-dog.png
Normal file
|
After Width: | Height: | Size: 2.2 MiB |
@@ -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
|
||||||
|
|||||||