aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mknpcs.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/mknpcs.go b/mknpcs.go
index 5dd24c1..4655371 100644
--- a/mknpcs.go
+++ b/mknpcs.go
@@ -14,5 +14,16 @@ func MakeNpcs() []Npc {
},
}
npcs = append(npcs, helper01)
+
+ rulmarc := Npc {
+ Name: "Rulmarc",
+ Ai: NpcAi {
+ PromptCharacterString: "You are a medieval villager called Rulmarc.",
+ QueryFromTableName: "helper",
+ },
+ }
+
+ npcs = append(npcs, rulmarc)
+
return npcs
}