10 lines
118 B
Python
10 lines
118 B
Python
|
from language.languages import elvish
|
||
|
from npc import types
|
||
|
|
||
|
|
||
|
class Elf(types.NPC):
|
||
|
language = elvish
|
||
|
|
||
|
|
||
|
NPC = Elf
|