Skip to content

Commit c2a263c

Browse files
authored
fix: add new special creature case (#93)
1 parent 0e73b20 commit c2a263c

File tree

1 file changed

+27
-24
lines changed

1 file changed

+27
-24
lines changed

src/util.go

Lines changed: 27 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -8,47 +8,50 @@ import (
88
var (
99
// Special creature name cases
1010
specialCreaturesCases = map[string]string{
11-
"cultacolyte": "Acolyte Of The Cult",
12-
"cultadept": "Adept Of The Cult",
13-
"frogazure": "Azure Frog",
14-
"wraith": "Betrayed Wraith",
15-
"ghostlycrawler": "Branchy Crawler",
16-
"degeneratedshaper": "Broken Shaper",
17-
"charlatan": "Corym Charlatan",
18-
"skirmisher": "Corym Skirmisher",
19-
"vanguard": "Corym Vanguard",
20-
"crustaceagigantica": "Crustacea Gigantica",
21-
"carnisylvandark": "Dark Carnisylvan",
22-
"asura": "Dawnfire Asura",
2311
"apparitionofadruid": "Druid's Apparition",
24-
"cultpriest": "Enlightened Of The Cult",
25-
"crystalgolem": "Enraged Crystal Golem",
12+
"asura": "Dawnfire Asura",
13+
"asuranight": "Midnight Asura",
14+
"batface": "Gloom Maws",
2615
"caribbeanbat": "Exotic Bat",
2716
"caribbeancavespider": "Exotic Cave Spider",
28-
"lostsoulweak": "Flimsy Lost Soul",
29-
"lostsoulhard": "Freakish Lost Soul",
17+
"carnisylvandark": "Dark Carnisylvan",
3018
"carnisylvanhulking": "Hulking Carnisylvan",
31-
"knightsapparition": "Knight's Apparition",
32-
"manyfaces": "Many Faces",
19+
"carnisylvanpoisonous": "Poisonous Carnisylvan",
20+
"charlatan": "Corym Charlatan",
21+
"crustaceagigantica": "Crustacea Gigantica",
22+
"crystalgolem": "Enraged Crystal Golem",
23+
"cultacolyte": "Acolyte Of The Cult",
24+
"cultadept": "Adept Of The Cult",
25+
"cultnovice": "Novice Of The Cult",
26+
"cultpriest": "Enlightened Of The Cult",
27+
"degeneratedshaper": "Broken Shaper",
3328
"earthelementalmassive": "Massive Earth Elemental",
3429
"energyelementalmassive": "Massive Energy Elemental",
30+
"frogazure": "Azure Frog",
31+
"ghostlycrawler": "Branchy Crawler",
32+
"girtablilu": "Venerable Girtablilu",
3533
"hellfireelemental": "Massive Fire Elemental",
36-
"waterelementalmassive": "Massive Water Elemental",
37-
"lostsoulmedium": "Mean Lost Soul",
38-
"asuranight": "Midnight Asura",
34+
"knightsapparition": "Knight's Apparition",
3935
"lionmonk": "Monk Of The Order",
36+
"lostsoulhard": "Freakish Lost Soul",
37+
"lostsoulmedium": "Mean Lost Soul",
38+
"lostsoulweak": "Flimsy Lost Soul",
39+
"manyfaces": "Many Faces",
4040
"monksapparition": "Monk's Apparition",
4141
"moohtahwarrior": "Mooh'tah Warrior",
42-
"cultnovice": "Novice Of The Cult",
42+
"norcferatudworc": "Dworc Shadowstalkers",
43+
"norcferatuorclops": "Orclops Bloodbreakers",
4344
"paladinsapparition": "Paladin's Apparition",
44-
"carnisylvanpoisonous": "Poisonous Carnisylvan",
4545
"ragingbrainsquid": "Rage Squid",
46+
"skirmisher": "Corym Skirmisher",
4647
"sorcerersapparition": "Sorcerer's Apparition",
4748
"soulbrokenharbinger": "Soul-broken Harbinger",
4849
"twoheadedturtle": "Two-headed Turtles",
49-
"girtablilu": "Venerable Girtablilu",
50+
"vanguard": "Corym Vanguard",
5051
"viscountmanbat": "Vicious Manbat",
52+
"waterelementalmassive": "Massive Water Elemental",
5153
"whitedeer": "White Deer",
54+
"wraith": "Betrayed Wraith",
5255
}
5356

5457
specialSpellsCases = map[string]string{

0 commit comments

Comments
 (0)