From 956cc188087fe7298cd5c480c33056fb0bfd722f Mon Sep 17 00:00:00 2001 From: Tobias Lindberg Date: Wed, 23 Jul 2025 08:36:45 +0200 Subject: [PATCH 1/2] chore: sorting special creature map --- src/util.go | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/src/util.go b/src/util.go index be7aee6..3ffb285 100644 --- a/src/util.go +++ b/src/util.go @@ -8,47 +8,47 @@ import ( var ( // Special creature name cases specialCreaturesCases = map[string]string{ - "cultacolyte": "Acolyte Of The Cult", - "cultadept": "Adept Of The Cult", - "frogazure": "Azure Frog", - "wraith": "Betrayed Wraith", - "ghostlycrawler": "Branchy Crawler", - "degeneratedshaper": "Broken Shaper", - "charlatan": "Corym Charlatan", - "skirmisher": "Corym Skirmisher", - "vanguard": "Corym Vanguard", - "crustaceagigantica": "Crustacea Gigantica", - "carnisylvandark": "Dark Carnisylvan", - "asura": "Dawnfire Asura", "apparitionofadruid": "Druid's Apparition", - "cultpriest": "Enlightened Of The Cult", - "crystalgolem": "Enraged Crystal Golem", + "asura": "Dawnfire Asura", + "asuranight": "Midnight Asura", "caribbeanbat": "Exotic Bat", "caribbeancavespider": "Exotic Cave Spider", - "lostsoulweak": "Flimsy Lost Soul", - "lostsoulhard": "Freakish Lost Soul", + "carnisylvandark": "Dark Carnisylvan", "carnisylvanhulking": "Hulking Carnisylvan", - "knightsapparition": "Knight's Apparition", - "manyfaces": "Many Faces", + "carnisylvanpoisonous": "Poisonous Carnisylvan", + "charlatan": "Corym Charlatan", + "crustaceagigantica": "Crustacea Gigantica", + "crystalgolem": "Enraged Crystal Golem", + "cultacolyte": "Acolyte Of The Cult", + "cultadept": "Adept Of The Cult", + "cultnovice": "Novice Of The Cult", + "cultpriest": "Enlightened Of The Cult", + "degeneratedshaper": "Broken Shaper", "earthelementalmassive": "Massive Earth Elemental", "energyelementalmassive": "Massive Energy Elemental", + "frogazure": "Azure Frog", + "ghostlycrawler": "Branchy Crawler", + "girtablilu": "Venerable Girtablilu", "hellfireelemental": "Massive Fire Elemental", - "waterelementalmassive": "Massive Water Elemental", - "lostsoulmedium": "Mean Lost Soul", - "asuranight": "Midnight Asura", + "knightsapparition": "Knight's Apparition", "lionmonk": "Monk Of The Order", + "lostsoulhard": "Freakish Lost Soul", + "lostsoulmedium": "Mean Lost Soul", + "lostsoulweak": "Flimsy Lost Soul", + "manyfaces": "Many Faces", "monksapparition": "Monk's Apparition", "moohtahwarrior": "Mooh'tah Warrior", - "cultnovice": "Novice Of The Cult", "paladinsapparition": "Paladin's Apparition", - "carnisylvanpoisonous": "Poisonous Carnisylvan", "ragingbrainsquid": "Rage Squid", + "skirmisher": "Corym Skirmisher", "sorcerersapparition": "Sorcerer's Apparition", "soulbrokenharbinger": "Soul-broken Harbinger", "twoheadedturtle": "Two-headed Turtles", - "girtablilu": "Venerable Girtablilu", + "vanguard": "Corym Vanguard", "viscountmanbat": "Vicious Manbat", + "waterelementalmassive": "Massive Water Elemental", "whitedeer": "White Deer", + "wraith": "Betrayed Wraith", } specialSpellsCases = map[string]string{ From eebe17f9126edeb5391b4ff5239e733eb3b379f4 Mon Sep 17 00:00:00 2001 From: Tobias Lindberg Date: Wed, 23 Jul 2025 08:37:19 +0200 Subject: [PATCH 2/2] fix: add new special creature cases --- src/util.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/util.go b/src/util.go index 3ffb285..48ec43c 100644 --- a/src/util.go +++ b/src/util.go @@ -11,6 +11,7 @@ var ( "apparitionofadruid": "Druid's Apparition", "asura": "Dawnfire Asura", "asuranight": "Midnight Asura", + "batface": "Gloom Maws", "caribbeanbat": "Exotic Bat", "caribbeancavespider": "Exotic Cave Spider", "carnisylvandark": "Dark Carnisylvan", @@ -38,6 +39,8 @@ var ( "manyfaces": "Many Faces", "monksapparition": "Monk's Apparition", "moohtahwarrior": "Mooh'tah Warrior", + "norcferatudworc": "Dworc Shadowstalkers", + "norcferatuorclops": "Orclops Bloodbreakers", "paladinsapparition": "Paladin's Apparition", "ragingbrainsquid": "Rage Squid", "skirmisher": "Corym Skirmisher",