1208616ab3
# This is the 1st commit message: Rewrite! This is a full rewrite of the npc generator code to use the newly-refactored dnd-name-generator code # This is the commit message #2: bugfixen
10 lines
126 B
Python
10 lines
126 B
Python
from language.languages import orcish
|
|
from npc import types
|
|
|
|
|
|
class HalfOrc(types.NPC):
|
|
language = orcish
|
|
|
|
|
|
NPC = HalfOrc
|