dnd-npcs/npc/generator/human.py
evilchili 2e5b5556a3 Refactor out langauges
This commmit removes the languages code and takes a dependency on the
rewritten module.
2023-11-22 12:18:50 -05:00

9 lines
168 B
Python

from language.languages.common import common_name
from npc.generator.base import BaseNPC
class NPC(BaseNPC):
ancestry = 'Human'
name_generator = common_name