A repository for a FoundryVTT plugin for Kingmaker homebrew.

Adding in stock data

+110
+36
src/module/data/charter.json
··· 1 + [ 2 + { 3 + "id": "conquest", 4 + "boosts": [ 5 + "loyalty", 6 + "free" 7 + ] 8 + }, 9 + { 10 + "id": "expansion", 11 + "boosts": [ 12 + "culture", 13 + "free" 14 + ] 15 + }, 16 + { 17 + "id": "exploration", 18 + "boosts": [ 19 + "stability", 20 + "free" 21 + ] 22 + }, 23 + { 24 + "id": "grant", 25 + "boosts": [ 26 + "economy", 27 + "free" 28 + ] 29 + }, 30 + { 31 + "id": "open", 32 + "boosts": [ 33 + "free" 34 + ] 35 + } 36 + ]
+56
src/module/data/governments.json
··· 1 + [ 2 + { 3 + "id": "despotism", 4 + "boosts": [ 5 + "stability", 6 + "economy", 7 + "free" 8 + ], 9 + "feat": "crush-dissent" 10 + }, 11 + { 12 + "id": "feudalism", 13 + "boosts": [ 14 + "stability", 15 + "culture", 16 + "free" 17 + ], 18 + "feat": "fortified-fiefs" 19 + }, 20 + { 21 + "id": "oligarchy", 22 + "boosts": [ 23 + "loyalty", 24 + "economy", 25 + "free" 26 + ], 27 + "feat": "insider-trading" 28 + }, 29 + { 30 + "id": "republic", 31 + "boosts": [ 32 + "stability", 33 + "loyalty", 34 + "free" 35 + ], 36 + "feat": "pull-together" 37 + }, 38 + { 39 + "id": "thaumocracy", 40 + "boosts": [ 41 + "economy", 42 + "culture", 43 + "free" 44 + ], 45 + "feat": "practical-magic" 46 + }, 47 + { 48 + "id": "yeomanry", 49 + "boosts": [ 50 + "loyalty", 51 + "culture", 52 + "free" 53 + ], 54 + "feat": "muddle-through" 55 + } 56 + ]
+18
src/module/data/heartland.json
··· 1 + [ 2 + { 3 + "id": "forest-swamp", 4 + "boost": "culture" 5 + }, 6 + { 7 + "id": "hill-plain", 8 + "boost": "loyalty" 9 + }, 10 + { 11 + "id": "lake-river", 12 + "boost": "economy" 13 + }, 14 + { 15 + "id": "mountain-ruins", 16 + "boost": "stability" 17 + } 18 + ]