10 lines
126 B
Python
10 lines
126 B
Python
|
from language.languages import dwarvish
|
||
|
from npc import types
|
||
|
|
||
|
|
||
|
class Dwarf(types.NPC):
|
||
|
language = dwarvish
|
||
|
|
||
|
|
||
|
NPC = Dwarf
|