From 6f3d21d6e7f01155ce0c461857a053b43d329392 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Sat, 27 Jun 2026 02:29:55 -0400 Subject: feat: recall/home cmd, line break option --- internal/behavior/types.go | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'internal/behavior') diff --git a/internal/behavior/types.go b/internal/behavior/types.go index 3d55d79..1b7ac1a 100644 --- a/internal/behavior/types.go +++ b/internal/behavior/types.go @@ -53,7 +53,8 @@ const ( TypeCraft ActionType = "craft" TypeCombine ActionType = "combine" TypeMix ActionType = "mix" - TypeConstruct ActionType = "construct" + TypeConstruct ActionType = "construct" + TypeTriggerModule ActionType = "trigger_module" ) type Action struct { @@ -183,6 +184,17 @@ type CleanData struct { Filter string } +type ModTriggerStep struct { + Message string `yaml:"message"` + Delay int `yaml:"delay"` +} + +type TriggerModuleData struct { + ModID string + Steps []ModTriggerStep + StepIndex int +} + type DropEntry struct { ItemID string `yaml:"item_id"` Table string `yaml:"table"` -- cgit v1.2.3