From 52a3ce6a4b4a254dc5d3067979a09e93c060fa20 Mon Sep 17 00:00:00 2001 From: workhorse Date: Fri, 19 Jun 2026 03:57:06 -0400 Subject: feat: shops and rough assassin skill --- internal/game/action.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'internal/game/action.go') diff --git a/internal/game/action.go b/internal/game/action.go index 2d30010..3cc51c6 100644 --- a/internal/game/action.go +++ b/internal/game/action.go @@ -25,6 +25,8 @@ var verbAliases = map[string]string{ "ask": "talk", "pull": "toggle", "push": "toggle", + "steal": "steal", + "thieve": "steal", } var verbSkill = map[string]string{ @@ -33,6 +35,8 @@ var verbSkill = map[string]string{ "cut": "woodcutting", "fish": "fishing", "shear": "crafting", + "steal": "thieving", + "thieve": "thieving", } func normalizeVerb(v string) string { @@ -235,6 +239,8 @@ func (g *Game) AdvanceActions() { g.advanceSearch(sess, p) case "identify": g.advanceIdentify(sess, p) + case "steal": + g.advanceSteal(sess, p) default: if productionActionTypes[p.Action.Type] { g.advanceProduction(sess, p) -- cgit v1.2.3