diff options
| author | workhorse <workhorse@localhost.localdomain> | 2026-06-19 11:51:17 -0400 |
|---|---|---|
| committer | workhorse <workhorse@localhost.localdomain> | 2026-06-19 11:51:17 -0400 |
| commit | 575a71dcfed3b9fa44af244836f638a23df05a9a (patch) | |
| tree | eb5eff16eab86247a3dd93ff4d7fd3781f291b64 /internal/game/action_state.go | |
| parent | 52a3ce6a4b4a254dc5d3067979a09e93c060fa20 (diff) | |
| download | thehouseoficarus-575a71dcfed3b9fa44af244836f638a23df05a9a.tar.gz | |
feat: farming roughly implemented
Diffstat (limited to 'internal/game/action_state.go')
| -rw-r--r-- | internal/game/action_state.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/internal/game/action_state.go b/internal/game/action_state.go index 2dc42ae..61288c9 100644 --- a/internal/game/action_state.go +++ b/internal/game/action_state.go @@ -27,6 +27,11 @@ const ( ActionIdentifying ActionType = "identifying" ActionTriggering ActionType = "triggering" ActionStealing ActionType = "stealing" + ActionPlanting ActionType = "planting" + ActionHarvesting ActionType = "harvesting_crop" + ActionRaking ActionType = "raking" + ActionWatering ActionType = "watering" + ActionCuring ActionType = "curing" ) type ActionState struct { @@ -88,6 +93,16 @@ func (a *ActionState) Description() string { return "triggering " + a.TargetName case ActionStealing: return "stealing from " + a.TargetName + case ActionPlanting: + return "planting " + a.TargetName + case ActionHarvesting: + return "harvesting " + a.TargetName + case ActionRaking: + return "raking a " + a.TargetName + case ActionWatering: + return "watering a " + a.TargetName + case ActionCuring: + return "curing a " + a.TargetName } return "" } |
