-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
126 lines (125 loc) · 3.24 KB
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
let races = {
"Gyrstall": {
"talents": {
"force": 5, "moxy": 5, "quickness": 5, "perception": 5, "dexterity": 5, "intelligence": 5, "toughness": 5, "grit": 5,
},
"float": 2,
},
"Harnwulf": {
"talents": {
"force": 6, "moxy": 5, "quickness": 5, "perception": 5, "dexterity": 5, "intelligence": 4, "toughness": 6, "grit": 6,
},
"float": 0,
},
"Iktani": {
"talents": {
"force": 5, "moxy": 5, "quickness": 5, "perception": 6, "dexterity": 6, "intelligence": 5, "toughness": 5, "grit": 5,
},
"float": 0,
},
"Seledhior": {
"talents": {
"force": 5, "moxy": 6, "quickness": 6, "perception": 5, "dexterity": 5, "intelligence": 6, "toughness": 5, "grit": 4,
},
"float": 0,
},
"Coast Vulture": {
"talents": {
"force": 4, "moxy": 5, "quickness": 6, "perception": 5, "dexterity": 6, "intelligence": 5, "toughness": 4, "grit": 6,
},
"float": 1,
},
"Dustcropper": {
"talents": {
"force": 5, "moxy": 5, "quickness": 4, "perception": 5, "dexterity": 5, "intelligence": 5, "toughness": 6, "grit": 6,
},
"float": 1,
},
"Ice Stalker": {
"talents": {
"force": 6, "moxy": 4, "quickness": 6, "perception": 5, "dexterity": 6, "intelligence": 5, "toughness": 5, "grit": 5,
},
"float": 0,
},
};
const variants = {
"Seinwulf": {
"talents": {
"force": 6, "moxy": 5, "quickness": 5, "perception": 6, "dexterity": 5, "intelligence": 4, "toughness": 6, "grit": 5,
},
"float": 0,
},
"Elder-Born Iktani": {
"talents": {
"force": 4, "moxy": 5, "quickness": 5, "perception": 6, "dexterity": 6, "intelligence": 6, "toughness": 4, "grit": 5,
},
"float": 0,
},
"Reef Shark Tribal": {
"talents": {
"force": 5, "moxy": 4, "quickness": 6, "perception": 5, "dexterity": 6, "intelligence": 5, "toughness": 4, "grit": 6,
},
"float": 1,
},
"Frost Hare Tribal": {
"talents": {
"force": 4, "moxy": 5, "quickness": 6, "perception": 5, "dexterity": 6, "intelligence": 6, "toughness": 4, "grit": 5,
},
"float": 1,
},
"Bucket-Shell Tribal": {
"talents": {
"force": 6, "moxy": 5, "quickness": 4, "perception": 5, "dexterity": 4, "intelligence": 5, "toughness": 6, "grit": 6,
},
"float": 1,
},
"Crag-Ram Tribal": {
"talents": {
"force": 5, "moxy": 4, "quickness": 4, "perception": 5, "dexterity": 6, "intelligence": 5, "toughness": 6, "grit": 6,
},
"float": 1,
},
"Black-Eyed Hawk Tribal": {
"talents": {
"force": 5, "moxy": 4, "quickness": 6, "perception": 6, "dexterity": 6, "intelligence": 5, "toughness": 5, "grit": 5,
},
"float": 0,
},
"Blood-Spotted Hyena Tribal": {
"talents": {
"force": 6, "moxy": 5, "quickness": 6, "perception": 5, "dexterity": 6, "intelligence": 5, "toughness": 5, "grit": 4,
},
"float": 0,
},
}
const talents = [
"Force",
"Dexterity",
"Quickness",
"Toughness",
"Moxy",
"Intelligence",
"Perception",
"Grit",
];
const skills = [
"Melee Combat",
"Projectile Weapons",
"Firearms",
"Warfare",
"Athletics",
"Tenacity",
"Stealth",
"Investigation",
"Conveyance",
"Survival",
"Tradesman",
"Deception",
"Inspiration",
"Intimidation",
"Influence",
"Academia",
"Medical",
"Esoterics",
"Attunement",
];