Corrected the name_adjective for each of the races

This commit is contained in:
kansaigaijin
2025-07-13 16:07:43 +12:00
parent bd53e94ea2
commit 3c34c2c6f5

View File

@@ -27,7 +27,7 @@ class Race:
class Elf(Race): class Elf(Race):
def __init__(self): def __init__(self):
name = "Elf" name = "Elf"
name_adjective = "Elves" name_adjective = "Elven"
description = "Elves are a magical people of otherworldly grace, living in the world but not entirely part\n" \ description = "Elves are a magical people of otherworldly grace, living in the world but not entirely part\n" \
"of it. They live in places of ethereal beauty, in the midst of ancient forests or in silvery\n" \ "of it. They live in places of ethereal beauty, in the midst of ancient forests or in silvery\n" \
"spires glittering with faerie light, where soft music drifts through the air\n" \ "spires glittering with faerie light, where soft music drifts through the air\n" \
@@ -75,7 +75,7 @@ class Elf(Race):
class Dwarf(Race): class Dwarf(Race):
def __init__(self): def __init__(self):
name = "Dwarf" name = "Dwarf"
name_adjective = "Dwarves" name_adjective = "Dwarven"
description = "Kingdoms rich in ancient grandeur, halls carved into the roots of\n" \ description = "Kingdoms rich in ancient grandeur, halls carved into the roots of\n" \
"mountains, the echoing of picks and hammers in deep mines and blazing\n" \ "mountains, the echoing of picks and hammers in deep mines and blazing\n" \
"forges, a commitment to clan and tradition, and a burning hatred of goblins and orcs—these\n" \ "forges, a commitment to clan and tradition, and a burning hatred of goblins and orcs—these\n" \
@@ -120,7 +120,7 @@ class Dwarf(Race):
class Human(Race): class Human(Race):
def __init__(self): def __init__(self):
name = "Human" name = "Human"
name_adjective = "Humans" name_adjective = "Human"
description = "In the reckonings of most worlds, humans are the youngest of the common races, late to arrive " \ description = "In the reckonings of most worlds, humans are the youngest of the common races, late to arrive " \
"on the world scene and short-lived in comparison to dwarves, elves, and dragons. Perhaps it\n" \ "on the world scene and short-lived in comparison to dwarves, elves, and dragons. Perhaps it\n" \
"is because of their shorter lives that they strive to achieve as much as they can in the " \ "is because of their shorter lives that they strive to achieve as much as they can in the " \