Add Container class with lock/trap detection, corpse drops, and numbered duplicate corpses

This commit is contained in:
KansaiGaijin
2026-07-07 12:13:43 +12:00
parent db4b5cb543
commit 221cb71410
32 changed files with 938 additions and 160 deletions

View File

@@ -39,7 +39,7 @@ class Elf(Race):
speed = {
'Walking': 30
}
darkvision = [30, 60]
darkvision = 60
language = ["Common", "Elvish"]
advantage = []
resistance = []
@@ -155,6 +155,8 @@ class Human(Race):
language, advantage, resistance, proficiency, traits)
Elf = Elf()
Dwarf = Dwarf()
Human = Human()
RACES = {
"Elf": Elf(),
"Dwarf": Dwarf(),
"Human": Human(),
}