tangled
alpha
login
or
join now
cass.cityboundforest.com
/
kingdom-homebrew
0
fork
atom
A repository for a FoundryVTT plugin for Kingmaker homebrew.
0
fork
atom
overview
issues
pulls
pipelines
Adding in stock data
cass.cityboundforest.com
5 months ago
cf7e4ac5
57e80901
+110
3 changed files
expand all
collapse all
unified
split
src
module
data
charter.json
governments.json
heartland.json
+36
src/module/data/charter.json
···
1
1
+
[
2
2
+
{
3
3
+
"id": "conquest",
4
4
+
"boosts": [
5
5
+
"loyalty",
6
6
+
"free"
7
7
+
]
8
8
+
},
9
9
+
{
10
10
+
"id": "expansion",
11
11
+
"boosts": [
12
12
+
"culture",
13
13
+
"free"
14
14
+
]
15
15
+
},
16
16
+
{
17
17
+
"id": "exploration",
18
18
+
"boosts": [
19
19
+
"stability",
20
20
+
"free"
21
21
+
]
22
22
+
},
23
23
+
{
24
24
+
"id": "grant",
25
25
+
"boosts": [
26
26
+
"economy",
27
27
+
"free"
28
28
+
]
29
29
+
},
30
30
+
{
31
31
+
"id": "open",
32
32
+
"boosts": [
33
33
+
"free"
34
34
+
]
35
35
+
}
36
36
+
]
+56
src/module/data/governments.json
···
1
1
+
[
2
2
+
{
3
3
+
"id": "despotism",
4
4
+
"boosts": [
5
5
+
"stability",
6
6
+
"economy",
7
7
+
"free"
8
8
+
],
9
9
+
"feat": "crush-dissent"
10
10
+
},
11
11
+
{
12
12
+
"id": "feudalism",
13
13
+
"boosts": [
14
14
+
"stability",
15
15
+
"culture",
16
16
+
"free"
17
17
+
],
18
18
+
"feat": "fortified-fiefs"
19
19
+
},
20
20
+
{
21
21
+
"id": "oligarchy",
22
22
+
"boosts": [
23
23
+
"loyalty",
24
24
+
"economy",
25
25
+
"free"
26
26
+
],
27
27
+
"feat": "insider-trading"
28
28
+
},
29
29
+
{
30
30
+
"id": "republic",
31
31
+
"boosts": [
32
32
+
"stability",
33
33
+
"loyalty",
34
34
+
"free"
35
35
+
],
36
36
+
"feat": "pull-together"
37
37
+
},
38
38
+
{
39
39
+
"id": "thaumocracy",
40
40
+
"boosts": [
41
41
+
"economy",
42
42
+
"culture",
43
43
+
"free"
44
44
+
],
45
45
+
"feat": "practical-magic"
46
46
+
},
47
47
+
{
48
48
+
"id": "yeomanry",
49
49
+
"boosts": [
50
50
+
"loyalty",
51
51
+
"culture",
52
52
+
"free"
53
53
+
],
54
54
+
"feat": "muddle-through"
55
55
+
}
56
56
+
]
+18
src/module/data/heartland.json
···
1
1
+
[
2
2
+
{
3
3
+
"id": "forest-swamp",
4
4
+
"boost": "culture"
5
5
+
},
6
6
+
{
7
7
+
"id": "hill-plain",
8
8
+
"boost": "loyalty"
9
9
+
},
10
10
+
{
11
11
+
"id": "lake-river",
12
12
+
"boost": "economy"
13
13
+
},
14
14
+
{
15
15
+
"id": "mountain-ruins",
16
16
+
"boost": "stability"
17
17
+
}
18
18
+
]