feat: demonstrate multiple NPC defs

This commit is contained in:
Zhongheng Liu 2024-10-23 09:28:52 +03:00
commit de6618970d
Signed by: steven
GPG key ID: DC8F48E7B4C40905

View file

@ -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
}