Skip to content

Commit 5448fb5

Browse files
committed
data fix
1 parent 94efbbe commit 5448fb5

20 files changed

+5850
-3
lines changed

CharActor.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: CharActor
3-
Version: 0.1.3
3+
Version: 0.1.4
44
Summary: A module for creating and managing rpg characters.
55
Home-page: https://github.com/primal-coder/CharActor
66
Author: James Evans

CharActor.egg-info/SOURCES.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,21 @@ CharActor/_charactor/actor/_actor/objects/_items/_clothing/clothing.py
4343
CharActor/_charactor/actor/_actor/objects/_items/_weapon/__init__.py
4444
CharActor/_charactor/actor/_actor/objects/_items/_weapon/weapon.py
4545
CharActor/_charactor/dicts/__init__.py
46+
CharActor/_charactor/dicts/alignments.json
47+
CharActor/_charactor/dicts/armor.json
48+
CharActor/_charactor/dicts/backgrounds.json
49+
CharActor/_charactor/dicts/general_items.json
50+
CharActor/_charactor/dicts/kinds.json
51+
CharActor/_charactor/dicts/levels.json
52+
CharActor/_charactor/dicts/race_attributes.json
53+
CharActor/_charactor/dicts/role_attributes.json
54+
CharActor/_charactor/dicts/skills.json
55+
CharActor/_charactor/dicts/spells.json
56+
CharActor/_charactor/dicts/subrace_attributes.json
57+
CharActor/_charactor/dicts/tasks.json
58+
CharActor/_charactor/dicts/trade_items.json
59+
CharActor/_charactor/dicts/traits.json
60+
CharActor/_charactor/dicts/weapons.json
4661
CharActor/_entity/__init__.py
4762
CharActor/_entity/_base_entity.py
4863
CharActor/_entity/_grid_entity.py
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"lawful_good": {
3+
"ethics": "Lawful",
4+
"morals": "Good"
5+
},
6+
"neutral_good": {
7+
"ethics": "Neutral",
8+
"morals": "Good"
9+
},
10+
"chaotic_good": {
11+
"ethics": "Chaotic",
12+
"morals": "Good"
13+
},
14+
"lawful_neutral": {
15+
"ethics": "Lawful",
16+
"morals": "Neutral"
17+
},
18+
"true_neutral": {
19+
"ethics": "Neutral",
20+
"morals": "Neutral"
21+
},
22+
"chaotic_neutral": {
23+
"ethics": "Chaotic",
24+
"morals": "Neutral"
25+
},
26+
"lawful_evil": {
27+
"ethics": "Lawful",
28+
"morals": "Evil"
29+
},
30+
"neutral_evil": {
31+
"ethics": "Neutral",
32+
"morals": "Evil"
33+
},
34+
"chaotic_evil": {
35+
"ethics": "Chaotic",
36+
"morals": "Evil"
37+
},
38+
"unaligned": {
39+
"ethics": "None",
40+
"morals": "None"
41+
}
42+
}

0 commit comments

Comments
 (0)