10 lines
130 B
Python
10 lines
130 B
Python
|
from language.languages import undercommon
|
||
|
from npc import types
|
||
|
|
||
|
|
||
|
class Drow(types.NPC):
|
||
|
language = undercommon
|
||
|
|
||
|
|
||
|
NPC = Drow
|