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
|