From dea4a06764c507699cf9adcd1fd0a572d227aff0 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Fri, 19 Jun 2026 02:51:05 -0400 Subject: feat: scavenge/scrap system started --- internal/game/action_state.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'internal/game/action_state.go') diff --git a/internal/game/action_state.go b/internal/game/action_state.go index 1935703..0dc3d32 100644 --- a/internal/game/action_state.go +++ b/internal/game/action_state.go @@ -22,8 +22,9 @@ const ( ActionProducing ActionType = "producing" ActionFletching ActionType = "fletching" ActionEating ActionType = "eating" - ActionCleaning ActionType = "cleaning" - ActionMixing ActionType = "mixing" + ActionCleaning ActionType = "cleaning" + ActionMixing ActionType = "mixing" + ActionIdentifying ActionType = "identifying" ) type ActionState struct { @@ -79,6 +80,8 @@ func (a *ActionState) Description() string { return "cleaning herbs" case ActionMixing: return "mixing " + a.TargetName + case ActionIdentifying: + return "identifying scrap at " + a.TargetName } return "" } -- cgit v1.2.3