1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-29 12:44:20 +00:00
5e-drs/docs/.vuepress/data/stats.js
2020-04-10 16:37:48 +02:00

19 lines
651 B
JavaScript

export const stats = {
abilities: {
for: {label: 'Force', abbr: 'For'},
dex: {label: 'Dextérité', abbr: 'Dex'},
con: {label: 'Constitution', abbr: 'Con'},
int: {label: 'Intelligence', abbr: 'Int'},
sag: {label: 'Sagesse', abbr: 'Sag'},
cha: {label: 'Charisme', abbr: 'Cha'},
},
sizes: {
tp: { label: "Très petit", abbr: "TP", hitDie: 4 },
p: { label: "Petit", abbr: "P", hitDie: 6 },
m: { label: "Moyen", abbr: "M", hitDie: 8 },
g: { label: "Grand", abbr: "G", hitDie: 10 },
tg: { label: "Très grand", abbr: "TG", hitDie: 12 },
gig: { label: "Gigantesque", abbr: "Gig", hitDie: 20 },
}
}