From 4a8883216db9c889a28668221e70e248ff706a99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20Bene=C5=A1?= Date: Sat, 8 Aug 2026 18:35:28 +0200 Subject: [PATCH] A skill you pick, not a skill you spell The Set skill level quick-cheat took the skill as free text, with the description carrying an example because there was nothing else to guide the guess. All sixteen skills are a closed set, so it is a select, and the description no longer has to teach the field. Co-Authored-By: Claude Opus 5 (1M context) --- src/data/quick-cheats.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/quick-cheats.json b/src/data/quick-cheats.json index 6f75de0..3ba118f 100644 --- a/src/data/quick-cheats.json +++ b/src/data/quick-cheats.json @@ -18,9 +18,9 @@ "entries": [ { "label": "Set skill level", - "desc": "Sets a skill to the given level (1–30). Skill name can be partial, e.g. 'marksmanship'.", + "desc": "Sets a skill to the given level (1–30).", "params": [ - { "name": "skill", "type": "string", "default": "marksmanship" }, + { "name": "skill", "type": "select", "options": ["marksmanship", "swords", "heavy", "polearms", "unarmed", "warfare", "defence", "stealth", "thievery", "horsemanship", "alchemy", "craftsmanship", "drinking", "survival", "scholarship", "houndmaster"], "default": "marksmanship" }, { "name": "level", "type": "number", "default": 20 } ], "variants": { "cheatmod": "cheat_set_skill_level any:{skill} level:{level}" }