forked from art-from-the-machine/Mantella
-
Notifications
You must be signed in to change notification settings - Fork 3
Characters
Pathos edited this page Jan 27, 2025
·
2 revisions
Characters in Pantella are stored in the ./characters/ directory under their respective game directories. Each character is stored as a JSON file with the following properties:
-
bio_url(string): The URL to the character's biography. -
bio(string): The biography of the character. -
name(string): The name of the character. -
voice_model(string): The voice model of the character. -
race(string): The race of the character. -
gender(string): The gender of the character. -
species(string): The species of the character. -
ref_id(string): The reference ID of the character. -
base_id(string): The base ID of the character. -
lang_override(string): The language override of the character. -
behavior_blacklist(list): A list of behaviors to blacklist for the character. -
behavior_whitelist(list): A list of behaviors to whitelist for the character. -
notes(string): Any additional notes about the character.
Here is an example of a character JSON file:
{
"bio_url": "/wiki/Jake",
"bio": "Jake is an example character.",
"name": "Jake",
"voice_model": "NordMale",
"race": "Nord",
"gender": "Male",
"species": "Human",
"ref_id": "0001",
"base_id": "0002",
"lang_override": "",
"behavior_blacklist": [],
"behavior_whitelist": [],
"notes": "This is an example character."
}