dnd-npcs/npc/ancestries/halfling.py
evilchili 1208616ab3 # This is a combination of 2 commits.
# This is the 1st commit message:

Rewrite!

This is a full rewrite of the npc generator code to use the
newly-refactored dnd-name-generator code

# This is the commit message #2:

bugfixen
2023-12-02 18:25:03 -08:00

10 lines
132 B
Python

from language.languages import halfling
from npc import types
class Halfling(types.NPC):
language = halfling
NPC = Halfling