diff options
-rw-r--r-- | mknpcs.go | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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 } |