Workable system, firt step

This commit is contained in:
2026-01-02 20:30:29 +01:00
parent 70d1720176
commit 8a27cef9a4
69 changed files with 6081 additions and 1767 deletions
+52 -1
View File
@@ -23,10 +23,23 @@ export const TAROT_TYPES = {
}
export const TAROT_VALEURS = {
"11": { id: "11", label: "11", value: 11 },
"12": { id: "12", label: "12", value: 12 },
"13": { id: "13", label: "13", value: 13 },
"14": { id: "14", label: "14", value: 14 },
"15": { id: "15", label: "15", value: 15 },
"16": { id: "16", label: "16", value: 16 },
"17": { id: "17", label: "17", value: 17 },
"18": { id: "18", label: "18", value: 18 },
"19": { id: "19", label: "19", value: 19 },
"20": { id: "20", label: "20", value: 20 },
"21": { id: "21", label: "21", value: 21 },
"22": { id: "22", label: "22", value: 22 },
"roi": { id: "roi", label: "Roi", value: 14 },
"reine": { id: "reine", label: "Reine", value: 13 },
"cavalier": { id: "cavalier", label: "Cavalier", value: 12 },
"valet": { id: "valet", label: "Valet", value: 11 },
"lemat": { id: "lemat", label: "Le Mat", value: 23 },
"10": { id: "10", label: "10", value: 10 },
"9": { id: "9", label: "9", value: 9 },
"8": { id: "8", label: "8", value: 8 },
@@ -40,6 +53,7 @@ export const TAROT_VALEURS = {
}
export const DIFFICULTY_CHOICES = {
"soustension_oppose": { id: "soustension_oppose", label: "Sous Tension ou Opposé", standard: null, "soustension": null },
"tresfacile": { id: "tresfacile", label: "Très Facile", standard: 3, "soustension": -4 },
"facile": { id: "facile", label: "Facile", standard: 5, "soustension": -2 },
"moyenne": { id: "moyenne", label: "Moyenne", standard: 7, "soustension": 0 },
@@ -54,7 +68,7 @@ export const WEAPON_TYPES = {
}
export const COMPETENCE_TYPES = {
"generale": { id: "generale", label: "Générale" },
"commune": { id: "commune", label: "Commune" },
"faction": { id: "faction", label: "Faction" },
"peuple": { id: "peuple", label: "Peuple" },
}
@@ -70,6 +84,42 @@ export const SORTILEGE_CATEGORIES = {
"ritual": { id: "ritual", label: "Rituel" },
}
export const NIVEAU_COMPETENCES = {
"inexperimente": {
"name": "Inexpérimenté",
"id": "inexperimente",
"abreviation": "I",
"modificateur": 0,
"cout_acquisition_points": 0,
"description": "Niveau de départ par défaut pour toutes les compétences non apprises."
},
"amateur": {
"name": "Amateur",
"id": "amateur",
"abreviation": "A",
"modificateur": 1,
"cout_acquisition_points": 1,
"description": "Le personnage possède des notions de base dans la compétence."
},
"competent": {
"name": "Compétent",
"id": "competent",
"abreviation": "C",
"modificateur": 3,
"cout_acquisition_points": 3,
"cout_progression_depuis_amateur": 2,
"description": "Le personnage maîtrise la compétence et résiste mieux aux actions adverses."
},
"expert": {
"name": "Expert",
"abreviation": "E",
"modificateur": 5,
"cout_acquisition_points": 5,
"cout_progression_depuis_competent": 2,
"description": "Le personnage est un maître absolu dans son domaine."
}
}
/**
* Include all constant definitions within the SYSTEM global export
* @type {Object}
@@ -84,5 +134,6 @@ export const SYSTEM = {
COMPETENCE_TYPES: COMPETENCE_TYPES,
ENEMY_TYPES: ENEMY_TYPES,
SORTILEGE_CATEGORIES: SORTILEGE_CATEGORIES,
NIVEAU_COMPETENCES: NIVEAU_COMPETENCES,
ASCII
}