Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1f8dab7

Browse files
committedNov 8, 2024·
Implemented client and updated README
1 parent efdd681 commit 1f8dab7

File tree

62 files changed

+259
-344
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+259
-344
lines changed
 

‎client/models/equipment.py

Lines changed: 0 additions & 10 deletions
This file was deleted.

‎client/models/hero.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
from typing import Optional
2+
from pydantic import BaseModel
3+
4+
5+
class Hero(BaseModel):
6+
id: str
7+
name: str
8+
race: str
9+
class_: str # Avoids conflict with the Python `class` keyword
10+
level: int
11+
background: Optional[str] = None
12+
alignment: Optional[str] = None
13+
hit_points: int
14+
armor_class: int
15+
speed: int
16+
personality_traits: Optional[str] = None
17+
ideals: Optional[str] = None
18+
bonds: Optional[str] = None
19+
flaws: Optional[str] = None

‎client/models/skill_proficiencies.py

Lines changed: 0 additions & 24 deletions
This file was deleted.
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Please sign in to comment.