From c2fa1c82372c85176851455c8e0b89bb2e14e2f6 Mon Sep 17 00:00:00 2001 From: Joshua Thome Date: Tue, 3 Dec 2024 10:03:24 -0600 Subject: [PATCH] Add section to ship log docs page on merging ship log entries --- docs/src/content/docs/guides/ship-log.md | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/docs/src/content/docs/guides/ship-log.md b/docs/src/content/docs/guides/ship-log.md index efcc2d42..55399d2b 100644 --- a/docs/src/content/docs/guides/ship-log.md +++ b/docs/src/content/docs/guides/ship-log.md @@ -542,3 +542,28 @@ Adding an entry location is similar to adding a Reveal Volume: ``` ![entryLocationExample](@/assets/docs-images/ship_log/entry_position.webp) + +## Extending Base Game Entries + +You can add new facts and sub-entries to existing ship log entries by adding a dummy entry to your ship log XML file with the same ID as an existing entry. Any facts and sub-entries will be applied to the existing entry. For example, to extend the "Village" entry on Timber Hearth (which has the internal ID "TH_VILLAGE"): + +```xml title="ExampleShipLog.xml" + + TIMBER_HEARTH + + TH_VILLAGE + + EXAMPLES_VILLAGE + A lot of unfamiliar characters are hanging around the village now. + + + EXAMPLES_DREAM + Wetrock Dream + + EXAMPLES_DREAM_EXPLORED + I dreamed about Wetrock using a green campfire. + + + + +```