33 lines
970 B
JavaScript
33 lines
970 B
JavaScript
export const SYSTEM_RDD = 'foundryvtt-reve-de-dragon';
|
|
export const SYSTEM_SOCKET_ID = 'system.foundryvtt-reve-de-dragon';
|
|
export const LOG_HEAD = 'RdD | ';
|
|
|
|
export const HIDE_DICE = 'hide';
|
|
export const SHOW_DICE = 'show';
|
|
|
|
export const ENTITE_INCARNE = 'incarne';
|
|
export const ENTITE_NONINCARNE = 'nonincarne';
|
|
export const ENTITE_BLURETTE = 'blurette';
|
|
|
|
export const RDD_CONFIG = {
|
|
niveauEthylisme : [
|
|
{value: "1", label: "Aucun"},
|
|
{value: "0", label: "Eméché (0)"},
|
|
{value: "-1", label: "Gris (-1)"},
|
|
{value: "-2", label: "Pinté (-2)"},
|
|
{value: "-3", label: "Pas Frais (-3)"},
|
|
{value: "-4", label: "Ivre (-4)"},
|
|
{value: "-5", label: "Bu (-5)"},
|
|
{value: "-6", label: "Complètement fait (-6)"},
|
|
{value: "-7", label: "Ivre mort (-7)"}
|
|
],
|
|
categorieEntite: {
|
|
"cauchemar": "Cauchemar",
|
|
"reve": "Rêve"
|
|
},
|
|
typeEntite: {
|
|
"incarne": "Incarnée",
|
|
"nonincarne": "Non Incarnée",
|
|
"blurette": "Blurette"
|
|
}
|
|
} |