From 5f6b3b98aeda38948d6fcdec94cd3458b29fb21e Mon Sep 17 00:00:00 2001 From: Sigrunixia Date: Fri, 29 Sep 2023 09:53:37 -0500 Subject: [PATCH] Add Documentation --- docs/Adding-animation-to-plugin-details.md | 0 docs/Adding-quotes-to-Granite.md | 9 +++++++++ 2 files changed, 9 insertions(+) delete mode 100644 docs/Adding-animation-to-plugin-details.md diff --git a/docs/Adding-animation-to-plugin-details.md b/docs/Adding-animation-to-plugin-details.md deleted file mode 100644 index e69de29..0000000 diff --git a/docs/Adding-quotes-to-Granite.md b/docs/Adding-quotes-to-Granite.md index f67575e..f90fe39 100644 --- a/docs/Adding-quotes-to-Granite.md +++ b/docs/Adding-quotes-to-Granite.md @@ -19,8 +19,17 @@ They are grouped further by `General`, `Idle`, and `Writing Mode` quotes. How this may look in its `.json` file: +```json + "general": [ + "You are a background character in your own life.", + ], +``` +Some rules of thumb: +- Every quote line needs to end with a comma `,`. +- Every quote line needs to be surrounded by double quotes `"`. + ## Adding a new character To add a new character into the quotes, you can add the following to the bottom of [Quotes.ts](src/quotes/Quotes.ts):