diff options
| author | historia <[not public]> | 2026-06-19 02:51:05 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-19 02:51:05 -0400 |
| commit | dea4a06764c507699cf9adcd1fd0a572d227aff0 (patch) | |
| tree | 25769809d34db70cf0bec7d8c6d3422c23780a55 /internal/game/action_state.go | |
| parent | 2ae4a052fd1c15c3c6ba0f1dd324d896371aaffc (diff) | |
| download | thehouseoficarus-dea4a06764c507699cf9adcd1fd0a572d227aff0.tar.gz | |
feat: scavenge/scrap system started
Diffstat (limited to 'internal/game/action_state.go')
| -rw-r--r-- | internal/game/action_state.go | 7 |
1 files changed, 5 insertions, 2 deletions
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 "" } |
