Dreadsylvania/Vampires: Difference between revisions

From A KoL Wiki
imported>Club
placeholder
 
imported>Yatsufusa
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
<!-- I see no reason this could not cover everything about Dreadsylvanian Vampires, but I'm not writing that today. -->
<!-- I see no reason this could not cover everything about Dreadsylvanian Vampires, but I'm not writing that today. -->
This describes how the Vampires in [[Dreadsylvanian Castle]] are named.
*[[Cold vampire]]
*[[Hot vampire]]
*[[Sleaze vampire]]
*[[Spooky vampire]]
*[[Stench vampire]]


==Vampire Name Format==
==Vampire Name Format==
Line 13: Line 21:




The following is unformatted Perl regexp code still to be converted to wiki article.
{| cellpadding=3 border=1 cellspacing=0
 
|-
$vamp_first = qr/(Abraham|Adriana|Agatha|Alastair|Aleister|Alexandra|Alicia|Angelica|Armand|Aurelia|Aurora|Azrael|Barnabas|Belladonna|Bellatrix|Bogdana|Cain|Camelia|Carmella|Cassius|Claudius|Constantine|Cordelia|Cornelia|Cosmina|Damien|Dante|Darius|Delia|Desdemona|Desmond|Dorian|Draco|Drake|Drusilla|Elvira|Emanuelle|Enoch|Erasmus|Evangeline|Gabriel|Ichabod|Isaac|Isabella|Isabelle|Isadora|Jezebelle|Judas|Julian|Julius|Lazarus|Lenore|Lillith|Livia|Lucia|Lucien|Lucifer|Lucinda|Lucius|Lucretia|Luna|Magda|Magdalena|Malachi|Maleficent|Marcellus|Marius|Mina|Minerva|Misery|Misty|Moloch|Mordecai|Morgana|Morticia|Natasha|Obediah|Octavian|Ophelia|Pandora|Pontius|Rasmus|Rasputin|Raven|Remus|Romulus|Rosalynd|Rowena|Scarlet|Sebastian|Shadrach|Shlomo|Tabitha|Uriel|Victoria|Vlad|Vladimir|Zachariah)/;
! colspan=2 | Vampire Title Parts
 
|-
 
! Female !! Male
$vamp_last_pre = qr/(?:Black|Blood|Crypt|Dark|Dire|Dirge|Death|Doom|Drake|Dread|Dusk|Fear|Grim|Night|Raven)/;
|-
 
|
$vamp_last_suf = qr/(?:bane|blade|blood|crest|grip|knife|maw|murder|mist|raven|scare|stein|soul|ula|wind|wing|wyrm)/;
Baroness * Contessa * Countess * Dame * Duchess *
 
Empress * Lady * Madam * Princess * Queen * Tsarina
 
$vamp_last_coldpre = qr/(?:Blizzard|Chill|Freeze|Frigid|Frost|Glacier|Ice|Shiver|Snow|Winter)/;
 
$vamp_last_coldsuf = qr/(?:blain|blizzard|bluster|chill|freeze|frost|rime|shiver|snow|winter)/;
 
$vamp_last_cold = qr/(?:$vamp_last_pre$vamp_last_coldsuf|$vamp_last_coldpre(?:$vamp_last_suf|$vamp_last_coldsuf))/;
 


$vamp_last_hotpre = qr/(?:Boil|Burn|Coal|Fire|Flame|Inferno|Scald|Scorch|Smoke|Steam|Volcano)/;
|
Baron * Count * Duke * Earl * Lord * Marquis *
Prince * Tsar * Viscount


$vamp_last_hotsuf = qr/(?:burn|roast|scorch|steam|scald|boil|inferno|flame|toast)/;
|-
! colspan=2 | Vampire First Names
|-
| colspan=2 |
<!-- todo: separate genders -->
Abraham * Adriana * Agatha * Alastair * Aleister * Alexandra * Alicia * Angelica * Armand * Aurelia * Aurora * Azrael * Barnabas * Belladonna * Bellatrix * Bogdana * Cain * Camelia * Carmella * Cassius * Claudius * Constantine * Cordelia * Cornelia * Cosmina * Damien * Dante * Darius * Delia * Desdemona * Desmond * Dorian * Draco * Drake * Drusilla * Elvira * Emanuelle * Enoch * Erasmus * Evangeline * Gabriel * Ichabod * Isaac * Isabella * Isabelle * Isadora * Jezebelle * Judas * Julian * Julius * Lazarus * Lenore * Lillith * Livia * Lucia * Lucien * Lucifer * Lucinda * Lucius * Lucretia * Luna * Magda * Magdalena * Malachi * Maleficent * Marcellus * Marius * Mina * Minerva * Misery * Misty * Moloch * Mordecai * Morgana * Morticia * Natasha * Obediah * Octavian * Ophelia * Pandora * Pontius * Rasmus * Rasputin * Raven * Remus * Romulus * Rosalynd * Rowena * Scarlet * Sebastian * Shadrach * Shlomo * Tabitha * Uriel * Victoria * Vlad * Vladimir * Zachariah
|}


$vamp_last_hot = qr/(?:$vamp_last_pre$vamp_last_hotsuf|$vamp_last_hotpre(?:$vamp_last_suf|$vamp_last_hotsuf))/;


$vamp_last_sleazepre = qr/(?:Bacon|Grease|Grope|Leer|Lick|Ogle|Pinch|Skeeve|Skeeze|Squeeze|Sticky|Wink)/;
{| cellpadding=3 border=1 cellspacing=0
|-
! colspan=3 | Vampire Last Name Parts
|-
! Element !! Prefix !! Suffix
|-
! General
|
*Black
*Blood
*Crypt
*Dark
*Dire
*Dirge
*Death
*Doom
*Drake
*Dread
*Dusk
*Fear
*Grim
*Night
*Raven


$vamp_last_sleazesuf = qr/(?:gaze|grease|grope|grunt|moan|lust|oil|pinch|squeeze|sweat|thrust)/;
|
*bane
*blade
*blood
*crest
*grip
*knife
*maw
*murder
*mist
*raven
*scare
*stein
*soul
*ula
*wind
*wing
*wyrm


$vamp_last_sleaze = qr/(?:$vamp_last_pre$vamp_last_sleazesuf|$vamp_last_sleazepre(?:$vamp_last_suf|$vamp_last_sleazesuf))/;
|-
! Cold
|
*Blizzard
*Chill
*Freeze
*Frigid
*Frost
*Glacier
*Ice
*Shiver
*Snow
*Winter


|
*blain
*blizzard
*bluster
*chill
*freeze
*frost
*rime
*shiver
*snow
*winter


$vamp_last_spookypre = qr/(?:Bone|Corpse|Death|Dirge|Ghost|Grave|Gray|Grey|Oblivion|Tomb)/;
|-
! Hot
|
*Boil
*Burn
*Coal
*Fire
*Flame
*Inferno
*Scald
*Scorch
*Smoke
*Steam
*Volcano


$vamp_last_spookysuf = qr/(?:cadaver|corpse|creep|death|fright|ghost|grave|murder|scare|tomb)/;
|
*burn
*roast
*scorch
*steam
*scald
*boil
*inferno
*flame
*toast


$vamp_last_spooky = qr/(?:$vamp_last_pre$vamp_last_spookysuf|$vamp_last_spookypre(?:$vamp_last_suf|$vamp_last_spookysuf))/;
|-
! Sleaze
|
*Bacon
*Grease
*Grope
*Leer
*Lick
*Ogle
*Pinch
*Skeeve
*Skeeze
*Squeeze
*Sticky
*Wink


|
*gaze
*grease
*grope
*grunt
*moan
*lust
*oil
*pinch
*squeeze
*sweat
*thrust


$vamp_last_stenchpre = qr/(?:Belch|Filth|Foul|Grod|Offal|Rot|Rotten|Stank|Stink|Trash)/;
|-
! Spooky
|
*Bone
*Corpse
*Death
*Dirge
*Ghost
*Grave
*Gray
*Grey
*Oblivion
*Tomb


$vamp_last_stenchsuf = qr/(?:burp|belch|grode|odor|puke|rot|scum|smell|stank|stink)/;
|
*cadaver
*corpse
*creep
*death
*fright
*ghost
*grave
*murder
*scare
*tomb


$vamp_last_stench = qr/(?:$vamp_last_pre$vamp_last_stenchsuf|$vamp_last_stenchpre(?:$vamp_last_suf|$vamp_last_stenchsuf))/;
|-
! Stench
|
*Belch
*Filth
*Foul
*Grod
*Offal
*Rot
*Rotten
*Stank
*Stink
*Trash


|
*burp
*belch
*grode
*odor
*puke
*rot
*scum
*smell
*stank
*stink


$vamp_last  = qr/(?:$vamp_last_hot|$vamp_last_cold|$vamp_last_stench|$vamp_last_sleaze|$vamp_last_spooky)/;
|}


$vamp_title = qr/(?:Baron|Baroness|Contessa|Count|Countess|Dame|Duchess|Duke|Earl|Empress|Lady|Lord|Madam|Marquis|Prince|Princess|Queen|Tsar|Tsarina|Viscount)/;
[[Category:Randomly Generated Monster Names]]

Latest revision as of 17:56, 11 August 2014


This describes how the Vampires in Dreadsylvanian Castle are named.

Vampire Name Format

The vampire names take one of the following forms:

  • <First> <Last>
  • <Single Title> <First> <Last>
  • <Hyphenated-Multi-Title> <First> <Last>

The first names are a simple list, but the last names are compound words of the form:

  • <General prefix><Elemental suffix>
  • <Elemental prefix><Elemental suffix>
  • <Elemental prefix><General suffix>


Vampire Title Parts
Female Male

Baroness * Contessa * Countess * Dame * Duchess * Empress * Lady * Madam * Princess * Queen * Tsarina

Baron * Count * Duke * Earl * Lord * Marquis * Prince * Tsar * Viscount

Vampire First Names

Abraham * Adriana * Agatha * Alastair * Aleister * Alexandra * Alicia * Angelica * Armand * Aurelia * Aurora * Azrael * Barnabas * Belladonna * Bellatrix * Bogdana * Cain * Camelia * Carmella * Cassius * Claudius * Constantine * Cordelia * Cornelia * Cosmina * Damien * Dante * Darius * Delia * Desdemona * Desmond * Dorian * Draco * Drake * Drusilla * Elvira * Emanuelle * Enoch * Erasmus * Evangeline * Gabriel * Ichabod * Isaac * Isabella * Isabelle * Isadora * Jezebelle * Judas * Julian * Julius * Lazarus * Lenore * Lillith * Livia * Lucia * Lucien * Lucifer * Lucinda * Lucius * Lucretia * Luna * Magda * Magdalena * Malachi * Maleficent * Marcellus * Marius * Mina * Minerva * Misery * Misty * Moloch * Mordecai * Morgana * Morticia * Natasha * Obediah * Octavian * Ophelia * Pandora * Pontius * Rasmus * Rasputin * Raven * Remus * Romulus * Rosalynd * Rowena * Scarlet * Sebastian * Shadrach * Shlomo * Tabitha * Uriel * Victoria * Vlad * Vladimir * Zachariah


Vampire Last Name Parts
Element Prefix Suffix
General
  • Black
  • Blood
  • Crypt
  • Dark
  • Dire
  • Dirge
  • Death
  • Doom
  • Drake
  • Dread
  • Dusk
  • Fear
  • Grim
  • Night
  • Raven
  • bane
  • blade
  • blood
  • crest
  • grip
  • knife
  • maw
  • murder
  • mist
  • raven
  • scare
  • stein
  • soul
  • ula
  • wind
  • wing
  • wyrm
Cold
  • Blizzard
  • Chill
  • Freeze
  • Frigid
  • Frost
  • Glacier
  • Ice
  • Shiver
  • Snow
  • Winter
  • blain
  • blizzard
  • bluster
  • chill
  • freeze
  • frost
  • rime
  • shiver
  • snow
  • winter
Hot
  • Boil
  • Burn
  • Coal
  • Fire
  • Flame
  • Inferno
  • Scald
  • Scorch
  • Smoke
  • Steam
  • Volcano
  • burn
  • roast
  • scorch
  • steam
  • scald
  • boil
  • inferno
  • flame
  • toast
Sleaze
  • Bacon
  • Grease
  • Grope
  • Leer
  • Lick
  • Ogle
  • Pinch
  • Skeeve
  • Skeeze
  • Squeeze
  • Sticky
  • Wink
  • gaze
  • grease
  • grope
  • grunt
  • moan
  • lust
  • oil
  • pinch
  • squeeze
  • sweat
  • thrust
Spooky
  • Bone
  • Corpse
  • Death
  • Dirge
  • Ghost
  • Grave
  • Gray
  • Grey
  • Oblivion
  • Tomb
  • cadaver
  • corpse
  • creep
  • death
  • fright
  • ghost
  • grave
  • murder
  • scare
  • tomb
Stench
  • Belch
  • Filth
  • Foul
  • Grod
  • Offal
  • Rot
  • Rotten
  • Stank
  • Stink
  • Trash
  • burp
  • belch
  • grode
  • odor
  • puke
  • rot
  • scum
  • smell
  • stank
  • stink