Skip to content

Commit cd15185

Browse files
author
Juraj
committed
initial release
0 parents  commit cd15185

Some content is hidden

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

49 files changed

+2843
-0
lines changed

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# General
2+
.DS_Store
3+
.AppleDouble
4+
.LSOverride
5+
6+
# Icon must end with two \r
7+
Icon
8+
9+
# Thumbnails
10+
._*
11+
12+
# Files that might appear in the root of a volume
13+
.DocumentRevisions-V100
14+
.fseventsd
15+
.Spotlight-V100
16+
.TemporaryItems
17+
.Trashes
18+
.VolumeIcon.icns
19+
.com.apple.timemachine.donotpresent
20+
21+
# Directories potentially created on remote AFP share
22+
.AppleDB
23+
.AppleDesktop
24+
Network Trash Folder
25+
Temporary Items
26+
.apdisk

collections.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{
2+
}

entities.json

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
[
2+
{
3+
"name": "Character",
4+
"label": "character",
5+
"collection": {
6+
"label": "characters"
7+
},
8+
"loadable": true,
9+
"role": "friendly"
10+
},
11+
{
12+
"name": "Monster",
13+
"label": "monster",
14+
"collection": {
15+
"label": "monsters"
16+
},
17+
"loadable": true
18+
},
19+
{
20+
"name": "NPC",
21+
"label": "npc",
22+
"extends": "Monster",
23+
"collection": {
24+
"label": "npcs"
25+
},
26+
"loadable": true,
27+
"role": "neutral"
28+
},
29+
{
30+
"name": "Spell",
31+
"label": "spell",
32+
"collection": {
33+
"label": "spells"
34+
},
35+
"loadable": true
36+
},
37+
{
38+
"name": "Item",
39+
"label": "item",
40+
"collection": {
41+
"label": "items"
42+
},
43+
"loadable": true,
44+
"role": "neutral"
45+
},
46+
{
47+
"name": "Class",
48+
"label": "class",
49+
"collection": {
50+
"label": "classes"
51+
}
52+
},
53+
{
54+
"name": "Table",
55+
"label": "table",
56+
"collection": {
57+
"label": "tables"
58+
},
59+
"native": true
60+
}
61+
]

filters.json

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
{
2+
"Monster": {
3+
"params": [
4+
{
5+
"attribute": "data.hd.value",
6+
"title": "Common.HitDice",
7+
"dynamic": true
8+
},
9+
{
10+
"attribute": "data.alignment",
11+
"attributeType": "Alignment",
12+
"title": "Common.Alignment"
13+
},
14+
{
15+
"attribute": "source",
16+
"title": "Common.Source",
17+
"dynamic": true
18+
}
19+
],
20+
"group": [
21+
{
22+
"attribute": "data.hd.value",
23+
"text": "HD {{value}}+",
24+
"title": "Common.HitDice"
25+
},
26+
{
27+
"attribute": "name",
28+
"title": "Common.Name"
29+
}
30+
],
31+
"sort": [
32+
{
33+
"attribute": "name",
34+
"title": "Common.Name"
35+
},
36+
{
37+
"attribute": "data.hd.value",
38+
"title": "Common.HitDice",
39+
}
40+
]
41+
},
42+
"Spell": {
43+
"params": [
44+
{
45+
"attribute": "data.level",
46+
"title": "Spell.Level",
47+
"dynamic": true
48+
},
49+
{
50+
"attribute": "data.classes",
51+
"title": "Entity.Class",
52+
"dynamic": true
53+
},
54+
{
55+
"attribute": "source",
56+
"title": "Common.Source",
57+
"dynamic": true
58+
}
59+
],
60+
"group": [
61+
{
62+
"attribute": "data.level",
63+
"text": "{{value|ordinal}} {{'Spell.Level'|l}}",
64+
"title": "Spell.Level"
65+
},
66+
{
67+
"attribute": "source",
68+
"title": "Common.Source"
69+
},
70+
{
71+
"attribute": "name",
72+
"title": "Common.Name"
73+
}
74+
],
75+
"sort": [
76+
{
77+
"attribute": "name",
78+
"title": "Common.Name"
79+
},
80+
{
81+
"attribute": "data.level",
82+
"title": "Spell.Level"
83+
}
84+
]
85+
},
86+
"Item": {
87+
"params": [
88+
{
89+
"attribute": "data.type",
90+
"attributeType": "ItemType",
91+
"title": "Common.Type"
92+
},
93+
{
94+
"attribute": "source",
95+
"title": "Common.Source",
96+
"dynamic": true
97+
}
98+
],
99+
"group": [
100+
{
101+
"attribute": "data.type",
102+
"attributeType": "ItemType",
103+
"title": "Common.Type"
104+
},
105+
{
106+
"attribute": "name",
107+
"title": "Common.Name"
108+
}
109+
]
110+
},
111+
}

fonts/Council Regular.ttf

60.8 KB
Binary file not shown.

fonts/Futura Condensed Bold.otf

23.7 KB
Binary file not shown.

fonts/LinLibertine-Bold.ttf

815 KB
Binary file not shown.

fonts/LinLibertine-BoldItalic.ttf

583 KB
Binary file not shown.

fonts/LinLibertine-Italic.ttf

833 KB
Binary file not shown.

fonts/LinLibertine-Regular.ttf

886 KB
Binary file not shown.

0 commit comments

Comments
 (0)