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_state.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'internal/game/action_state.go') diff --git a/internal/game/action_state.go b/internal/game/action_state.go index 596eb4e..2dc42ae 100644 --- a/internal/game/action_state.go +++ b/internal/game/action_state.go @@ -26,6 +26,7 @@ const ( ActionMixing ActionType = "mixing" ActionIdentifying ActionType = "identifying" ActionTriggering ActionType = "triggering" + ActionStealing ActionType = "stealing" ) type ActionState struct { @@ -85,6 +86,8 @@ func (a *ActionState) Description() string { return "identifying scrap at " + a.TargetName case ActionTriggering: return "triggering " + a.TargetName + case ActionStealing: + return "stealing from " + a.TargetName } return "" } -- cgit v1.2.3