Merge branch 'tui'

This commit is contained in:
Zhongheng Liu 2024-10-23 09:32:11 +03:00
commit d1c96c5afc
Signed by: steven
GPG key ID: DC8F48E7B4C40905
2 changed files with 25 additions and 14 deletions

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
}