Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 27 additions & 24 deletions src/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,47 +8,50 @@ 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",
"batface": "Gloom Maws",
"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",
"norcferatudworc": "Dworc Shadowstalkers",
"norcferatuorclops": "Orclops Bloodbreakers",
"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{
Expand Down