Add documentation

This commit is contained in:
Sigrunixia 2023-09-28 19:19:35 -05:00
parent e3544e814b
commit b0f88294c2
No known key found for this signature in database
GPG key ID: B6B8AAFE8ABC62D2
4 changed files with 27 additions and 2 deletions

View file

View file

@ -0,0 +1,23 @@
# Adding quotes to Granite Plugin
Currently, all quotes are handled in [Quotes,ts](src/quotes/Quotes.ts).
This file is a JSON array of objects, with each section controlling a certain character.
Quotes are grouped under `Base Quotes`, and individual `Character Quotes`.
They are then grouped further by `General`, `Idle`, and `Writing Mode` quotes.
## Adding quotes to an existing character
1. Open up [Quotes.ts](src/quotes/Quotes.ts) and find the character you want to edit.
2. Determine if you are editing a general quote, idle quote, or writing mode quote.
3. In the section that you want to add your line to, use the following formatting to add your line:
```json
`You are a background character in your own life.`,
```
## Adding a new character

File diff suppressed because one or more lines are too long