From 11c8234d00a8577b09daabc326a051d967ebe97e Mon Sep 17 00:00:00 2001 From: femapj Date: Mon, 9 Aug 2021 23:06:07 +0200 Subject: [PATCH] [D&D 3.5] add User Option to configure default setting for the sheet: - add configuration "spellmode" --- D&D_3-5/charsheet_3-5.html | 6 +++--- D&D_3-5/sheet.json | 15 ++++++++++++++- D&D_3-5/translation.json | 2 ++ 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/D&D_3-5/charsheet_3-5.html b/D&D_3-5/charsheet_3-5.html index bbb56812b0..ef4bd77638 100644 --- a/D&D_3-5/charsheet_3-5.html +++ b/D&D_3-5/charsheet_3-5.html @@ -2861,8 +2861,8 @@
Spells        - Base Mode - Full Mode + Base Mode    + Full Mode
@@ -5613,7 +5613,7 @@ - +
diff --git a/D&D_3-5/sheet.json b/D&D_3-5/sheet.json index e7dac8746b..da5b610b66 100644 --- a/D&D_3-5/sheet.json +++ b/D&D_3-5/sheet.json @@ -5,5 +5,18 @@ "preview": "charsheet_3-5.jpg", "roll20userid": "108188", "instructions": "Roll templates now implemented; see descriptions and other information in new Roll Template section at bottom of sheet. Attack and full attack rolls modifiable in-sheet to allow inclusion of feat- or item-based additions to attacks. Full attack gives 'undefined' error for attacks one does not have a BAB defined for (remove that part of the macro if BAB is not high enough for 2, 3, or 4 attacks/rnd)", - "legacy": true + "legacy": true, + "useroptions": [ + { + "attribute": "spellmode", + "displayname": "Spell mode? ", + "type": "select", + "options": [ + "Base mode|1", + "Full mode|2" + ], + "default": "", + "description": "spell mode This option can be be later changed on individual sheets from the 'Settings-page.'" + } + ] } \ No newline at end of file diff --git a/D&D_3-5/translation.json b/D&D_3-5/translation.json index 0d9b364efa..68279c2653 100644 --- a/D&D_3-5/translation.json +++ b/D&D_3-5/translation.json @@ -1,4 +1,6 @@ { + "whisp-skill-rolls-gm": "Whisper Skill Rolls to GM", + "whisp-skill-rolls-gm-info": "All skill rolls are sent to all players in chat by default. Query Whisper option gives you a prompt with each roll of whether or not the roll should be sent privately only to yourself and the GM. Always Whisper Skill Rolls will send all skill rolls only to yourself and the GM.", "pc": "PC ", "npc": "NPC", "header": "Header",
Spells