From 458916fb78dcef3ff77cb29b7ba98d9f646819fc Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Fri, 19 Jun 2026 02:08:55 -0400 Subject: feat: rough pharmacy skill added --- internal/game/action_state.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'internal/game/action_state.go') diff --git a/internal/game/action_state.go b/internal/game/action_state.go index 4510afd..1935703 100644 --- a/internal/game/action_state.go +++ b/internal/game/action_state.go @@ -22,6 +22,8 @@ const ( ActionProducing ActionType = "producing" ActionFletching ActionType = "fletching" ActionEating ActionType = "eating" + ActionCleaning ActionType = "cleaning" + ActionMixing ActionType = "mixing" ) type ActionState struct { @@ -73,6 +75,10 @@ func (a *ActionState) Description() string { return "fletching " + a.TargetName case ActionEating: return "eating " + a.TargetName + case ActionCleaning: + return "cleaning herbs" + case ActionMixing: + return "mixing " + a.TargetName } return "" } -- cgit v1.2.3