diff --git a/build.gradle b/build.gradle index 76513de25..dae7f5f6a 100644 --- a/build.gradle +++ b/build.gradle @@ -55,6 +55,7 @@ allprojects { } json { target "src/**/*.json" + targetExclude "src/**/sound_info.json" gson() .indentWithSpaces(2) .sortByKeys() diff --git a/src/main/java/com/wynnvp/wynncraftvp/ModCore.java b/src/main/java/com/wynnvp/wynncraftvp/ModCore.java index 1ec1303ae..0e5995714 100644 --- a/src/main/java/com/wynnvp/wynncraftvp/ModCore.java +++ b/src/main/java/com/wynnvp/wynncraftvp/ModCore.java @@ -5,6 +5,7 @@ package com.wynnvp.wynncraftvp; import com.wynnvp.wynncraftvp.config.VOWAutoConfig; +import com.wynnvp.wynncraftvp.core.Managers; import com.wynnvp.wynncraftvp.logging.VowLogger; import com.wynnvp.wynncraftvp.sound.SoundPlayer; import com.wynnvp.wynncraftvp.sound.SoundsHandler; @@ -21,19 +22,23 @@ public class ModCore implements ModInitializer { public static final String MODID = "wynnvp"; public static final String NAME = "Wynncraft Voice Project"; public static final String VERSION = "1.8.2"; + public static boolean inLiveWynnServer = false; public static boolean isUsingClothApi = false; + public SoundsHandler soundsHandler; public static ModCore instance; public SoundPlayer soundPlayer; - public static final Logger LOGGER = LoggerFactory.getLogger("wynnvp"); + public static ChatHandler3 chatHandler; public static VOWAutoConfig config; - public static ChatHandler3 chatHandler; + public static final Logger LOGGER = LoggerFactory.getLogger(MODID); @Override public void onInitialize() { + Managers.initialize(); + instance = this; chatHandler = new ChatHandler3(); @@ -58,4 +63,24 @@ public void onInitialize() { chatHandler.onTick(); }); } + + public static void error(String msg) { + LOGGER.error(msg); + } + + public static void error(String msg, Throwable t) { + LOGGER.error(msg, t); + } + + public static void warn(String msg) { + LOGGER.warn(msg); + } + + public static void warn(String msg, Throwable t) { + LOGGER.warn(msg, t); + } + + public static void info(String msg) { + LOGGER.info(msg); + } } diff --git a/src/main/java/com/wynnvp/wynncraftvp/core/Manager.java b/src/main/java/com/wynnvp/wynncraftvp/core/Manager.java new file mode 100644 index 000000000..16593d973 --- /dev/null +++ b/src/main/java/com/wynnvp/wynncraftvp/core/Manager.java @@ -0,0 +1,23 @@ +/* + * Copyright © Team-VoW 2024. + * This file is released under AGPLv3. See LICENSE for full license details. + */ +package com.wynnvp.wynncraftvp.core; + +import java.util.List; + +/** + * Managers are classes that manage a specific aspect of the mod. + * This can be parsing and handling events from an aspect of Minecraft, + * or holding data that is used throughout the mod. + */ +public abstract class Manager { + /** + * Create a manager with certain dependencies. + * @param dependencies The list of managers that this manager depends on. + * A manager only needs to declare dependency on another manager, + * if it is used during initialization. + * (Dependency does not matter when everything is initialized) + */ + protected Manager(List dependencies) {} +} diff --git a/src/main/java/com/wynnvp/wynncraftvp/core/Managers.java b/src/main/java/com/wynnvp/wynncraftvp/core/Managers.java new file mode 100644 index 000000000..27e7b0758 --- /dev/null +++ b/src/main/java/com/wynnvp/wynncraftvp/core/Managers.java @@ -0,0 +1,21 @@ +/* + * Copyright © Team-VoW 2024. + * This file is released under AGPLv3. See LICENSE for full license details. + */ +package com.wynnvp.wynncraftvp.core; + +import com.wynnvp.wynncraftvp.managers.json.JsonManager; +import com.wynnvp.wynncraftvp.managers.sound.SoundManager; + +public final class Managers { + // Managers with no dependencies, kept in alphabetical order + public static final JsonManager Json = new JsonManager(); + public static final SoundManager Sound = new SoundManager(); + + // Managers with dependencies, kept in dependency order (then alphabetical) + + // Initialization method for all managers + public static void initialize() { + // no-op, class loading this class will initialize all managers + } +} diff --git a/src/main/java/com/wynnvp/wynncraftvp/managers/json/JsonManager.java b/src/main/java/com/wynnvp/wynncraftvp/managers/json/JsonManager.java new file mode 100644 index 000000000..d4392854e --- /dev/null +++ b/src/main/java/com/wynnvp/wynncraftvp/managers/json/JsonManager.java @@ -0,0 +1,25 @@ +/* + * Copyright © Team-VoW 2024. + * This file is released under AGPLv3. See LICENSE for full license details. + */ +package com.wynnvp.wynncraftvp.managers.json; + +import com.google.gson.Gson; +import com.google.gson.GsonBuilder; +import com.wynnvp.wynncraftvp.core.Manager; +import com.wynnvp.wynncraftvp.managers.sound.dialogue.DialogueHolder; +import com.wynnvp.wynncraftvp.managers.sound.dialogue.json.DialogueHolderDeserializer; +import java.util.List; + +public class JsonManager extends Manager { + public static final Gson GSON = new GsonBuilder() + .registerTypeAdapter(DialogueHolder.class, new DialogueHolderDeserializer()) + .enableComplexMapKeySerialization() + .setPrettyPrinting() + .serializeNulls() + .create(); + + public JsonManager() { + super(List.of()); + } +} diff --git a/src/main/java/com/wynnvp/wynncraftvp/managers/sound/SoundManager.java b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/SoundManager.java new file mode 100644 index 000000000..fb274d860 --- /dev/null +++ b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/SoundManager.java @@ -0,0 +1,66 @@ +/* + * Copyright © Team-VoW 2024. + * This file is released under AGPLv3. See LICENSE for full license details. + */ +package com.wynnvp.wynncraftvp.managers.sound; + +import com.wynnvp.wynncraftvp.ModCore; +import com.wynnvp.wynncraftvp.core.Manager; +import com.wynnvp.wynncraftvp.core.Managers; +import com.wynnvp.wynncraftvp.managers.sound.dialogue.DialogueHolder; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.util.List; +import net.minecraft.core.Registry; +import net.minecraft.core.registries.BuiltInRegistries; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.sounds.SoundEvent; + +public class SoundManager extends Manager { + // The path of the file that contains the sound information, currently as a bundled resource + private static final String SOUND_INFO_FILE = "/assets/wynnvp/sound_info.json"; + + private DialogueHolder dialogueHolder = DialogueHolder.EMPTY; + + public SoundManager() { + super(List.of()); + + // Load the sound info from the json file + loadSounds(); + + // Register the sounds as sound events + registerSounds(); + } + + private void loadSounds() { + try (InputStream resourceAsStream = SoundManager.class.getResourceAsStream(SOUND_INFO_FILE)) { + if (resourceAsStream == null) { + ModCore.error("Could not find bundled sound info file, sounds will not be loaded."); + return; + } + + DialogueHolder dialogueHolder = + Managers.Json.GSON.fromJson(new InputStreamReader(resourceAsStream), DialogueHolder.class); + + if (dialogueHolder == null) { + ModCore.error("Could not load sound info file, sounds will not be loaded."); + return; + } + + this.dialogueHolder = dialogueHolder; + ModCore.info("Loaded %d dialogue sounds." + .formatted(dialogueHolder.dialogues().count())); + } catch (Exception e) { + ModCore.error("Error loading sound info file: " + e.getMessage()); + } + } + + private void registerSounds() { + dialogueHolder.dialogues().forEach(dialogueData -> { + ResourceLocation resourceLocation = + ResourceLocation.fromNamespaceAndPath(ModCore.MODID, dialogueData.dialogueId()); + SoundEvent soundEvent = SoundEvent.createVariableRangeEvent(resourceLocation); + Registry.register(BuiltInRegistries.SOUND_EVENT, resourceLocation, soundEvent); + }); + } +} diff --git a/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/ContextDialogueHolder.java b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/ContextDialogueHolder.java new file mode 100644 index 000000000..1dc501d37 --- /dev/null +++ b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/ContextDialogueHolder.java @@ -0,0 +1,9 @@ +/* + * Copyright © Team-VoW 2024. + * This file is released under AGPLv3. See LICENSE for full license details. + */ +package com.wynnvp.wynncraftvp.managers.sound.dialogue; + +import java.util.List; + +public record ContextDialogueHolder(List dialogues) {} diff --git a/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueContextHolder.java b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueContextHolder.java new file mode 100644 index 000000000..f227e7ea1 --- /dev/null +++ b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueContextHolder.java @@ -0,0 +1,15 @@ +/* + * Copyright © Team-VoW 2024. + * This file is released under AGPLv3. See LICENSE for full license details. + */ +package com.wynnvp.wynncraftvp.managers.sound.dialogue; + +import java.util.LinkedHashMap; +import java.util.List; +import java.util.stream.Stream; + +public record DialogueContextHolder(LinkedHashMap contexts) { + public Stream dialogues() { + return contexts.values().stream().map(ContextDialogueHolder::dialogues).flatMap(List::stream); + } +} diff --git a/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueData.java b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueData.java new file mode 100644 index 000000000..0f13165a7 --- /dev/null +++ b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueData.java @@ -0,0 +1,36 @@ +/* + * Copyright © Team-VoW 2024. + * This file is released under AGPLv3. See LICENSE for full license details. + */ +package com.wynnvp.wynncraftvp.managers.sound.dialogue; + +import java.util.Locale; + +/** + * A record to hold all data for a dialogue line. + * + * @param dialogueInfo The unique information about the dialogue + * @param lineInfo The information about the line itself, including the NPC and the line numbers + * @param soundSettings The sound settings for the dialogue + */ +public record DialogueData( + DialogueInfo dialogueInfo, DialogueLineInfo lineInfo, ResolvedDialogueSoundSettings soundSettings) { + /** + * Get the dialogue ID for the dialogue line. This ID is also the file name for the sound file, and the key for the + * sound event. + * @return The dialogue ID + */ + public String dialogueId() { + if (dialogueInfo.fileOverride() != null) { + return dialogueInfo.fileOverride(); + } + + return ("%s-%s-%s-%d" + .formatted( + dialogueInfo.content(), + dialogueInfo.context(), + lineInfo.npc(), + lineInfo.line().current())) + .toLowerCase(Locale.ROOT); + } +} diff --git a/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueHolder.java b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueHolder.java new file mode 100644 index 000000000..cabaa4a9d --- /dev/null +++ b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueHolder.java @@ -0,0 +1,35 @@ +/* + * Copyright © Team-VoW 2024. + * This file is released under AGPLv3. See LICENSE for full license details. + */ +package com.wynnvp.wynncraftvp.managers.sound.dialogue; + +import java.util.Optional; +import java.util.TreeMap; +import java.util.stream.Stream; +import org.joml.Vector3f; + +public record DialogueHolder(TreeMap content) { + public static final DialogueHolder EMPTY = new DialogueHolder(new TreeMap<>()); + + public static final DialogueSoundSettings DEFAULT_SETTINGS = new DialogueSoundSettings() { + @Override + public Optional followPlayer() { + return Optional.of(false); + } + + @Override + public Optional falloff() { + return Optional.of(0); + } + + @Override + public Optional position() { + return Optional.of(new Vector3f()); + } + }; + + public Stream dialogues() { + return content.values().stream().flatMap(DialogueContextHolder::dialogues); + } +} diff --git a/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueInfo.java b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueInfo.java new file mode 100644 index 000000000..f8a10332b --- /dev/null +++ b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueInfo.java @@ -0,0 +1,17 @@ +/* + * Copyright © Team-VoW 2024. + * This file is released under AGPLv3. See LICENSE for full license details. + */ +package com.wynnvp.wynncraftvp.managers.sound.dialogue; + +/** + * A record to hold generic information about a dialogue line, which is used to identify the dialogue, making it a key + * for identifying the sound to play. + * + * @param content The content the dialogue is from + * @param context The dialogue context, which identifies the current dialogue (e.g. "caravanCrashed" in tutorial). + * This can also be numbered from 1 to n, in the order the NPC says them + * (mainly used for porting the old names to the new system). + * @param fileOverride The file to use instead of using the default file for the dialogue + */ +public record DialogueInfo(String content, String context, String fileOverride) {} diff --git a/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueLineInfo.java b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueLineInfo.java new file mode 100644 index 000000000..22be3e3e1 --- /dev/null +++ b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueLineInfo.java @@ -0,0 +1,17 @@ +/* + * Copyright © Team-VoW 2024. + * This file is released under AGPLv3. See LICENSE for full license details. + */ +package com.wynnvp.wynncraftvp.managers.sound.dialogue; + +import com.wynnvp.wynncraftvp.utils.type.CappedValue; + +/** + * @param npc The NPC the dialogue is from, using the name it appears as text in the game. + * This value is optional and can be null, if the NPC is not known. + * @param line The current/total number of the dialogue in the context. + * (e.g 2/5, if the current dialogue is "[2/5]" in the game) + * This value is optional and can be null, if the line is not specified. + * @param dialogue The voiced dialogue line itself + */ +public record DialogueLineInfo(String npc, CappedValue line, String dialogue) {} diff --git a/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueSoundSettings.java b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueSoundSettings.java new file mode 100644 index 000000000..4ddb5f692 --- /dev/null +++ b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/DialogueSoundSettings.java @@ -0,0 +1,20 @@ +/* + * Copyright © Team-VoW 2024. + * This file is released under AGPLv3. See LICENSE for full license details. + */ +package com.wynnvp.wynncraftvp.managers.sound.dialogue; + +import java.util.Optional; +import org.joml.Vector3f; + +/** + * An interface for providing sound settings for a dialogue line. + * For more information, see {@link ResolvedDialogueSoundSettings}. + */ +public interface DialogueSoundSettings { + Optional followPlayer(); + + Optional falloff(); + + Optional position(); +} diff --git a/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/ResolvedDialogueSoundSettings.java b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/ResolvedDialogueSoundSettings.java new file mode 100644 index 000000000..5cd28ea56 --- /dev/null +++ b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/ResolvedDialogueSoundSettings.java @@ -0,0 +1,17 @@ +/* + * Copyright © Team-VoW 2024. + * This file is released under AGPLv3. See LICENSE for full license details. + */ +package com.wynnvp.wynncraftvp.managers.sound.dialogue; + +import org.joml.Vector3f; + +/** + * A record to hold the sound settings for a dialogue line. + * This class' fields should match {@link DialogueSoundSettings}. + * + * @param followPlayer Whether the sound should follow the player or not + * @param falloff The falloff of the sound + * @param position The position of the sound + */ +public record ResolvedDialogueSoundSettings(boolean followPlayer, int falloff, Vector3f position) {} diff --git a/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/json/DialogueHolderDeserializer.java b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/json/DialogueHolderDeserializer.java new file mode 100644 index 000000000..532fc0ec6 --- /dev/null +++ b/src/main/java/com/wynnvp/wynncraftvp/managers/sound/dialogue/json/DialogueHolderDeserializer.java @@ -0,0 +1,137 @@ +/* + * Copyright © Team-VoW 2024. + * This file is released under AGPLv3. See LICENSE for full license details. + */ +package com.wynnvp.wynncraftvp.managers.sound.dialogue.json; + +import com.google.gson.JsonDeserializationContext; +import com.google.gson.JsonDeserializer; +import com.google.gson.JsonElement; +import com.google.gson.JsonParseException; +import com.wynnvp.wynncraftvp.managers.sound.dialogue.ContextDialogueHolder; +import com.wynnvp.wynncraftvp.managers.sound.dialogue.DialogueContextHolder; +import com.wynnvp.wynncraftvp.managers.sound.dialogue.DialogueData; +import com.wynnvp.wynncraftvp.managers.sound.dialogue.DialogueHolder; +import com.wynnvp.wynncraftvp.managers.sound.dialogue.DialogueInfo; +import com.wynnvp.wynncraftvp.managers.sound.dialogue.DialogueLineInfo; +import com.wynnvp.wynncraftvp.managers.sound.dialogue.DialogueSoundSettings; +import com.wynnvp.wynncraftvp.managers.sound.dialogue.ResolvedDialogueSoundSettings; +import java.lang.reflect.Type; +import java.util.ArrayList; +import java.util.LinkedHashMap; +import java.util.Map; +import java.util.Optional; +import java.util.TreeMap; +import org.joml.Vector3f; + +public class DialogueHolderDeserializer implements JsonDeserializer { + @Override + public DialogueHolder deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) + throws JsonParseException { + JsonDialogueHolder jsonHolder = context.deserialize(json, JsonDialogueHolder.class); + + TreeMap content = new TreeMap<>(); + for (Map.Entry contentEntry : jsonHolder.content.entrySet()) { + JsonDialogueContextHolder jsonContextHolder = contentEntry.getValue(); + + LinkedHashMap contexts = new LinkedHashMap<>(); + + for (Map.Entry contextEntry : jsonContextHolder.contexts.entrySet()) { + JsonContextDialogueHolder jsonContextDialogueHolder = contextEntry.getValue(); + + ArrayList dialogues = jsonContextDialogueHolder.dialogues; + + // Convert JsonDialogue to DialogueData + ArrayList dialogueData = new ArrayList<>(); + for (JsonDialogue jsonDialogue : dialogues) { + DialogueInfo dialogueInfo = + new DialogueInfo(contentEntry.getKey(), contextEntry.getKey(), jsonDialogue.fileOverride()); + DialogueLineInfo lineInfo = jsonDialogue.lineInfo; + ResolvedDialogueSoundSettings soundSettings = resolveSoundSettings( + jsonHolder.settings, + jsonContextHolder.settings, + jsonContextDialogueHolder.settings, + jsonDialogue.settings); + + dialogueData.add(new DialogueData(dialogueInfo, lineInfo, soundSettings)); + } + + contexts.put(contextEntry.getKey(), new ContextDialogueHolder(dialogueData)); + } + + content.put(contentEntry.getKey(), new DialogueContextHolder(contexts)); + } + + return new DialogueHolder(content); + } + + // Resolve sound settings for a dialogue line, always preferring the most specific settings + // (dialogue > context > content > global > default) + // Setting values are inherited as specific fields, + // not as full objects (so it's possible to override only one field) + private ResolvedDialogueSoundSettings resolveSoundSettings( + JsonDialogueSoundSettings globalSettings, + JsonDialogueSoundSettings contentSettings, + JsonDialogueSoundSettings contextSettings, + JsonDialogueSoundSettings dialogueSettings) { + Boolean followPlayer = Optional.ofNullable(dialogueSettings) + .flatMap(JsonDialogueSoundSettings::followPlayer) + .or(() -> Optional.ofNullable(contextSettings).flatMap(JsonDialogueSoundSettings::followPlayer)) + .or(() -> Optional.ofNullable(contentSettings).flatMap(JsonDialogueSoundSettings::followPlayer)) + .or(() -> Optional.ofNullable(globalSettings).flatMap(JsonDialogueSoundSettings::followPlayer)) + .orElse(DialogueHolder.DEFAULT_SETTINGS.followPlayer().get()); + + Integer falloff = Optional.ofNullable(dialogueSettings) + .flatMap(JsonDialogueSoundSettings::falloff) + .or(() -> Optional.ofNullable(contextSettings).flatMap(JsonDialogueSoundSettings::falloff)) + .or(() -> Optional.ofNullable(contentSettings).flatMap(JsonDialogueSoundSettings::falloff)) + .or(() -> Optional.ofNullable(globalSettings).flatMap(JsonDialogueSoundSettings::falloff)) + .orElse(DialogueHolder.DEFAULT_SETTINGS.falloff().get()); + + Vector3f position = Optional.ofNullable(dialogueSettings) + .flatMap(JsonDialogueSoundSettings::position) + .or(() -> Optional.ofNullable(contextSettings).flatMap(JsonDialogueSoundSettings::position)) + .or(() -> Optional.ofNullable(contentSettings).flatMap(JsonDialogueSoundSettings::position)) + .or(() -> Optional.ofNullable(globalSettings).flatMap(JsonDialogueSoundSettings::position)) + .orElse(DialogueHolder.DEFAULT_SETTINGS.position().get()); + + return new ResolvedDialogueSoundSettings(followPlayer, falloff, position); + } + + private record JsonDialogueHolder( + TreeMap content, JsonDialogueSoundSettings settings) {} + + private record JsonDialogueContextHolder( + LinkedHashMap contexts, JsonDialogueSoundSettings settings) {} + + private record JsonContextDialogueHolder(ArrayList dialogues, JsonDialogueSoundSettings settings) {} + + private record JsonDialogue(DialogueLineInfo lineInfo, JsonDialogueSoundSettings settings, String fileOverride) {} + + private static class JsonDialogueSoundSettings implements DialogueSoundSettings { + private final Boolean followPlayer; + private final Integer falloff; + private final Vector3f position; + + private JsonDialogueSoundSettings(Boolean followPlayer, Integer falloff, Vector3f position) { + this.followPlayer = followPlayer; + this.falloff = falloff; + this.position = position; + } + + @Override + public Optional followPlayer() { + return Optional.ofNullable(followPlayer); + } + + @Override + public Optional falloff() { + return Optional.ofNullable(falloff); + } + + @Override + public Optional position() { + return Optional.ofNullable(position); + } + } +} diff --git a/src/main/java/com/wynnvp/wynncraftvp/sound/SoundsHandler.java b/src/main/java/com/wynnvp/wynncraftvp/sound/SoundsHandler.java index c782e06b6..da1de602a 100644 --- a/src/main/java/com/wynnvp/wynncraftvp/sound/SoundsHandler.java +++ b/src/main/java/com/wynnvp/wynncraftvp/sound/SoundsHandler.java @@ -9,9 +9,7 @@ import com.wynnvp.wynncraftvp.ModCore; import com.wynnvp.wynncraftvp.sound.line.LineData; import java.util.HashMap; -import java.util.HashSet; import java.util.Optional; -import java.util.Set; import net.minecraft.core.Registry; import net.minecraft.core.registries.BuiltInRegistries; import net.minecraft.resources.ResourceLocation; @@ -19,14 +17,9 @@ import org.joml.Vector3f; public class SoundsHandler { - // private final List sounds; - private final HashMap sounds; - private final Set npcNames; + private final HashMap sounds = new HashMap<>(); public SoundsHandler() { - sounds = new HashMap<>(); - npcNames = new HashSet<>(); - Sounds.register(this); } @@ -56,26 +49,14 @@ public void addSound(String message, String id, boolean movingSound, Vector3f po } public void addSound(String message, String id, boolean movingSound, int fallOff) { - LineData lineData = formatToLineData(message); - npcNames.add(lineData.getNPCName()); - message = lineData.getSoundLine(); - sounds.put( - message, - new SoundObject( - lineData.getNPCName(), - id, - new CustomSoundClass(registerSound(id), movingSound), - null, - fallOff)); + addSound(message, id, movingSound, null, fallOff); } // If position is 0 null use default. If falloff is 0 use default public void addSound(String message, String id, boolean movingSound, Vector3f position, int fallOff) { LineData lineData = formatToLineData(message); - npcNames.add(lineData.getNPCName()); - message = lineData.getSoundLine(); sounds.put( - message, + lineData.getSoundLine(), new SoundObject( lineData.getNPCName(), id, @@ -84,10 +65,6 @@ public void addSound(String message, String id, boolean movingSound, Vector3f po fallOff)); } - public boolean containsName(String rawName) { - return npcNames.contains(rawName); - } - public Optional get(String message) { return Optional.ofNullable(sounds.get(message)); } diff --git a/src/main/java/com/wynnvp/wynncraftvp/utils/type/CappedValue.java b/src/main/java/com/wynnvp/wynncraftvp/utils/type/CappedValue.java new file mode 100644 index 000000000..7862edb3c --- /dev/null +++ b/src/main/java/com/wynnvp/wynncraftvp/utils/type/CappedValue.java @@ -0,0 +1,13 @@ +/* + * Copyright © Team-VoW 2024. + * This file is released under AGPLv3. See LICENSE for full license details. + */ +package com.wynnvp.wynncraftvp.utils.type; + +public record CappedValue(int current, int max) { + public static final CappedValue EMPTY = new CappedValue(0, 0); + + public boolean atMax() { + return current >= max; + } +} diff --git a/src/main/resources/assets/wynnvp/sound_info.json b/src/main/resources/assets/wynnvp/sound_info.json new file mode 100644 index 000000000..1cd079720 --- /dev/null +++ b/src/main/resources/assets/wynnvp/sound_info.json @@ -0,0 +1,150607 @@ +{ + "content": { + "???": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "questionmark-computer-1", + "lineInfo": { + "dialogue": ">All systems online." + } + }, + { + "fileOverride": "questionmark-computer-2", + "lineInfo": { + "dialogue": ">Teleporter activating..." + } + }, + { + "fileOverride": "questionmark-computer-3", + "lineInfo": { + "dialogue": ">Warp chamber now ready for use." + } + }, + { + "fileOverride": "questionmark-computer-4", + "lineInfo": { + "dialogue": ">Commencing warp sequence..." + } + }, + { + "fileOverride": "questionmark-computer-5", + "lineInfo": { + "dialogue": ">Starting up..." + } + }, + { + "fileOverride": "questionmark-computer-6", + "lineInfo": { + "dialogue": ">Permissions update requested. Beginning process..." + } + }, + { + "fileOverride": "questionmark-computer-7", + "lineInfo": { + "dialogue": ">Processes complete. Permissions successfully updated." + } + } + ], + "settings": { + "followPlayer": true + } + }, + "2": { + "dialogues": [ + { + "fileOverride": "questionmark-computer-8", + "lineInfo": { + "dialogue": "Systems overloading!", + "npc": ">WARNING" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "3": { + "dialogues": [ + { + "fileOverride": "questionmark-computer-9", + "lineInfo": { + "dialogue": ">All systems online." + } + }, + { + "fileOverride": "questionmark-computer-10", + "lineInfo": { + "dialogue": ">Bring the keys to where madman dwells." + } + } + ], + "settings": { + "followPlayer": true + } + }, + "4": { + "dialogues": [ + { + "fileOverride": "questionmark-wynntron-1", + "lineInfo": { + "dialogue": "wynntronversion900114\nresettingsystemsloadingunbeatableaipreset" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "5": { + "dialogues": [ + { + "fileOverride": "questionmark-wynntron-3", + "lineInfo": { + "dialogue": "9ERrOr.4 ]", + "npc": "[ Wynntron | Version" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "6": { + "dialogues": [ + { + "fileOverride": "questionmark-wynntron-4", + "lineInfo": { + "dialogue": "wynntronversion9error4\nerroreror3rr0runbeatableaierlollotem" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "7": { + "dialogues": [ + { + "fileOverride": "questionmark-computer-11", + "lineInfo": { + "dialogue": ">Commencing warp to Lab N..." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "questionmark-computer-12", + "lineInfo": { + "dialogue": ">Warping..." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "questionmark-computer-13", + "lineInfo": { + "dialogue": ">Permissions updated." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "questionmark-computer-14", + "lineInfo": { + "dialogue": ">Too few users detected. The user minimum is 4!" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "questionmark-computer-15", + "lineInfo": { + "dialogue": ">Now accepting user input. Jump to reset configurations." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "questionmark-computer-16", + "lineInfo": { + "dialogue": ">Sealing capsule..." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "questionmark-computer-17", + "lineInfo": { + "dialogue": ">Systems starting up..." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "questionmark-computer-18", + "lineInfo": { + "dialogue": ">Calculating destination..." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "questionmark-mehme-1", + "lineInfo": { + "dialogue": "Welcome to my wonderful wooden home!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Mehme" + } + } + ] + } + } + }, + "A Grave Mistake": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "agravemistake-skeleton-1", + "lineInfo": { + "dialogue": "Oh, my arm.. It's ba...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "XXXXXXX" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "agravemistake-alem-1", + "lineInfo": { + "dialogue": "Leave.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Alem" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "agravemistake-alem-2", + "lineInfo": { + "dialogue": "You might want to leave.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Alem" + } + }, + { + "fileOverride": "agravemistake-alem-3", + "lineInfo": { + "dialogue": "There is nothing in this graveyard.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Alem" + } + }, + { + "fileOverride": "agravemistake-alem-4", + "lineInfo": { + "dialogue": "This place is private.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Alem" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "agravemistake-alem-5", + "lineInfo": { + "dialogue": "I have warned you...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Alem" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "agravemistake-alem-6", + "lineInfo": { + "dialogue": "You were warned not to enter this forsaken place.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + }, + { + "fileOverride": "agravemistake-alem-7", + "lineInfo": { + "dialogue": "But since you have made it thusfar, I suppose I shall show you the truth...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "agravemistake-alem-8", + "lineInfo": { + "dialogue": "Do you understand now?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Mael" + } + }, + { + "fileOverride": "agravemistake-alem-9", + "lineInfo": { + "dialogue": "Then leave, and forget the horrors you have witnessed here today...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Mael" + } + }, + { + "fileOverride": "agravemistake-alem-10", + "lineInfo": { + "dialogue": "They are safer here.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Mael" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "agravemistake-alem-11", + "lineInfo": { + "dialogue": "I have nothing more to say. Take these.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Alem" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "agravemistake-alem-12", + "lineInfo": { + "dialogue": "Keep in mind what you have learned.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Alem" + } + } + ] + } + } + }, + "A Hunter's Calling": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-gatekeeper-1", + "lineInfo": { + "dialogue": "...you arrive. You search... To what end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-2", + "lineInfo": { + "dialogue": "You wonder. What do we speak of? To what end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-3", + "lineInfo": { + "dialogue": "You panic. We know you. How? We can provide no answer.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-4", + "lineInfo": { + "dialogue": "For answers... You search. To an end you seek. May we offer an end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-5", + "lineInfo": { + "dialogue": "The besieged origin. To end, one must begin.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-bakal-1", + "lineInfo": { + "dialogue": "We destroy Ragni today. The great fortress will fall.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-2", + "lineInfo": { + "dialogue": "I will find their protector, Bob. You each will engage the guards and city dwellers. 10 citizens.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-3", + "lineInfo": { + "dialogue": "If each of you kills 10 citizens, then the city will run empty. So, you shall make it run empty.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-4", + "lineInfo": { + "dialogue": "Go!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Bak'al" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-gatekeeper-6", + "lineInfo": { + "dialogue": "You anger. Viewing needless destruction. To what end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-7", + "lineInfo": { + "dialogue": "You distrust. We are dark. Are we? You believe it so.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-8", + "lineInfo": { + "dialogue": "You prepare. You would attack us. To what end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-9", + "lineInfo": { + "dialogue": "There is no end. Of what you wish, there is none. But may we offer an end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-10", + "lineInfo": { + "dialogue": "The unrighteous sought it. The noble hid it. The one seeking answers found more questions. Another beginning...to a new end.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-amadel-1", + "lineInfo": { + "dialogue": "Hey, little miss. Don't go spacing out on me like that.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Amadel" + } + }, + { + "fileOverride": "ahunterscalling-amadel-2", + "lineInfo": { + "dialogue": "Now that you're acquainted with the new laws we'll want to introduce, I've got a job for you to do.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Amadel" + } + }, + { + "fileOverride": "ahunterscalling-amadel-3", + "lineInfo": { + "dialogue": "The current mayor is human. He'll inevitably veto the laws. The deputy on the other hand, is a villager, and on our side. See what I'm getting at.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Amadel" + } + }, + { + "fileOverride": "ahunterscalling-amadel-4", + "lineInfo": { + "dialogue": "Another employee has already been sent out to get things started. He'll know what you need to do, so meet up with him, would you?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Amadel" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-citizen-1", + "lineInfo": { + "dialogue": "Oh, yeah I saw the mayor not too long ago.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Citizen" + } + }, + { + "fileOverride": "ahunterscalling-citizen-2", + "lineInfo": { + "dialogue": "He was headed towards the bank. Why're you wondering, miss Villager?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Citizen" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-employee-1", + "lineInfo": { + "dialogue": "You are here for the job, aren't you? I have to apologize. It's going to be trickier than I'd wanted for you.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Employee" + } + }, + { + "fileOverride": "ahunterscalling-employee-2", + "lineInfo": { + "dialogue": "So our mission is to assassinate the mayor. Amadel told you about the laws. We have a puppet in the running who'll rubberstamp them.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Employee" + } + }, + { + "fileOverride": "ahunterscalling-employee-3", + "lineInfo": { + "dialogue": "I've got the trap set up inside the bank. It was entirely too tricky, but it worked out. Your job is to trigger the trap.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Employee" + } + }, + { + "fileOverride": "ahunterscalling-employee-4", + "lineInfo": { + "dialogue": "Climb up the tree behind me and look through the window, you should be able to see it from there.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Employee" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-bodyguard-1", + "lineInfo": { + "dialogue": "No one enters when the mayor is doing his errands, sorry. You'll have to wait for your transaction.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bodyguard" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-employee-5", + "lineInfo": { + "dialogue": "Can you see the mayor? I had to stay totally out of sight while setting this all up, so...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Employee" + } + }, + { + "fileOverride": "ahunterscalling-employee-6", + "lineInfo": { + "dialogue": "...the only way to get to the trap is to jump across the hanging lamps in the ceiling.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Employee" + } + }, + { + "fileOverride": "ahunterscalling-employee-7", + "lineInfo": { + "dialogue": "You can absolutely not be spotted. The way up to the ceiling is on the opposite side of the bank. Just keep on walking past the guards, play it cool.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Employee" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-employee-8", + "lineInfo": { + "dialogue": "Quickly, back to the camp. Before we're noticed.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Employee" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-amadel-5", + "lineInfo": { + "dialogue": "Aha, you two are back.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Amadel" + } + }, + { + "fileOverride": "ahunterscalling-amadel-6", + "lineInfo": { + "dialogue": "Is everything taken care of?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Amadel" + } + }, + { + "fileOverride": "ahunterscalling-employee-9", + "lineInfo": { + "dialogue": "Yes sir, everything went smoothly, playerName did a great thing for the company.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Employee" + } + }, + { + "fileOverride": "ahunterscalling-employee-10", + "lineInfo": { + "dialogue": "We can send in Miss Wuna at any time now, and she'll give us the clearance to start the excavation in a snap.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Employee" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-gatekeeper-11", + "lineInfo": { + "dialogue": "...you rage. Aided the ignoble. To what end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-12", + "lineInfo": { + "dialogue": "You misinterpret. What you see... Is it true? How?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-13", + "lineInfo": { + "dialogue": "The answer... It will not bring you the end.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-14", + "lineInfo": { + "dialogue": "You see. Yet you do not understand. So, may we offer an end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-15", + "lineInfo": { + "dialogue": "The cruel. The kind. The selfish. The just. He who travelled life with confliction. Who faced eternity served cold. To his end.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-bakal-5", + "lineInfo": { + "dialogue": "You have been made for a single purpose, peon. The wizard, Theorick, is endangering our cause.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-6", + "lineInfo": { + "dialogue": "He is capable of halting our advance with his damnable ice. Kill him.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-7", + "lineInfo": { + "dialogue": "I send you in my place. He will expect me. He will not expect one that looks as human as you.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-8", + "lineInfo": { + "dialogue": "If you fail, it will set us back greatly. It will give them a chance. Do not let them get that chance.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-9", + "lineInfo": { + "dialogue": "Nesaak is behind me. Move.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Bak'al" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-kotham-1", + "lineInfo": { + "dialogue": "Listen, I understand the discontent, but we must start rationing! The corruption is consuming our arable fields.", + "line": { + "current": 1, + "max": 13 + }, + "npc": "Kotham" + } + }, + { + "fileOverride": "ahunterscalling-kotham-2", + "lineInfo": { + "dialogue": "Who knows if we'll even have water soon? We need to save up as much as we can!", + "line": { + "current": 2, + "max": 13 + }, + "npc": "Kotham" + } + }, + { + "fileOverride": "ahunterscalling-citizen-3", + "lineInfo": { + "dialogue": "Yeah, and what does Theorick have to say on the topic? How will he think of that?", + "line": { + "current": 3, + "max": 13 + }, + "npc": "Citizen" + } + }, + { + "fileOverride": "ahunterscalling-citizen-4", + "lineInfo": { + "dialogue": "He will be here shortly to discuss this problem in more detai-", + "line": { + "current": 4, + "max": 13 + }, + "npc": "Citizen" + } + }, + { + "fileOverride": "ahunterscalling-theorick-1", + "lineInfo": { + "dialogue": "Everyone, hush and listen to what Kotham is saying!", + "line": { + "current": 5, + "max": 13 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "ahunterscalling-theorick-2", + "lineInfo": { + "dialogue": "As the mayor said, all of you need to start rationing what you eat and drink. I cannot be here every waking moment!", + "line": { + "current": 6, + "max": 13 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "ahunterscalling-theorick-3", + "lineInfo": { + "dialogue": "In addition, I've figured something very important out. I'm developing a way to cease the spread of corruption. So I need to concentrate on that.", + "line": { + "current": 7, + "max": 13 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "ahunterscalling-theorick-4", + "lineInfo": { + "dialogue": "...hm. Something... Something is off.", + "line": { + "current": 8, + "max": 13 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "ahunterscalling-theorick-5", + "lineInfo": { + "dialogue": "...someone among you... I can feel a horrendous strength...", + "line": { + "current": 9, + "max": 13 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "ahunterscalling-theorick-6", + "lineInfo": { + "dialogue": "Kotham! Get everyone to safety! NOW! MOVE, GO!", + "line": { + "current": 10, + "max": 13 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "ahunterscalling-theorick-7", + "lineInfo": { + "dialogue": "You! Sent by Bak'al, I assume? What, is he too much of a coward to face me himself?", + "line": { + "current": 11, + "max": 13 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "ahunterscalling-theorick-8", + "lineInfo": { + "dialogue": "What purpose do you have for doing this? This destruction is needless! Nesaak and all of Wynn have suffered enough!", + "line": { + "current": 12, + "max": 13 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "ahunterscalling-theorick-9", + "lineInfo": { + "dialogue": "I'll freeze you solid, just like the rest of the corruption, you foul THING!", + "line": { + "current": 13, + "max": 13 + }, + "npc": "Theorick" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-theorick-10", + "lineInfo": { + "dialogue": "This way, no one else gets hurt. Only one will leave from here alive.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Theorick" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-bakal-10", + "lineInfo": { + "dialogue": "The Twains fall away. The peon has done his job well.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-11", + "lineInfo": { + "dialogue": "The corruptive influence will spread. I will see this place desolate.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Bak'al" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-gatekeeper-16", + "lineInfo": { + "dialogue": "...you fear. Does the dark become you?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-17", + "lineInfo": { + "dialogue": "The answer...", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-18", + "lineInfo": { + "dialogue": "No. You remain whole. You do not change.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-19", + "lineInfo": { + "dialogue": "So, you wonder. To what end? The question brings dread.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-20", + "lineInfo": { + "dialogue": "Yet, an end is what you seek. So, may we offer an end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-21", + "lineInfo": { + "dialogue": "An end, ousted by further action. An end, brought to six. An end, to the surety of the haughty. An end, of the world...in some fashion.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-bakal-12", + "lineInfo": { + "dialogue": "Peon. You have been created for one purpose. You will ensure the fall of Troms.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-13", + "lineInfo": { + "dialogue": "The Corrupter of Worlds was trapped within this cave. The fool decimated my army when I laid siege last.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-14", + "lineInfo": { + "dialogue": "Since then, he has been sealed in. The magic of the Twains is strong here. He cannot escape.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-15", + "lineInfo": { + "dialogue": "You will release him from this cave. Whether you die afterwards is irrelevant. He will destroy Troms of his own accord.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-16", + "lineInfo": { + "dialogue": "Venture through the cave. Break the Twains' seal. And ensure he has a way to escape.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Bak'al" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-bakal-17", + "lineInfo": { + "dialogue": "Defend yourself. He is too far gone to control. You will be attacked.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bak'al" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-bakal-18", + "lineInfo": { + "dialogue": "Move faster. He will notice your presence soon.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-19", + "lineInfo": { + "dialogue": "I do not have the time to create another peon for this job. Do not fail.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Bak'al" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-bakal-20", + "lineInfo": { + "dialogue": "The Corrupteds are malleable. Create some kind of bridge with them. Answer how for yourself.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bak'al" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-bakal-21", + "lineInfo": { + "dialogue": "The Corrupter is awake. And he is close. Move, peon! You still must break the seal.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bak'al" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-bakal-22", + "lineInfo": { + "dialogue": "I am unfamiliar with Twain magic. Use the intellect I have given you. Break the seal.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bak'al" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-bakal-23", + "lineInfo": { + "dialogue": "Your job is done... And you survived. I will save you for another mission, should I need you. Now...watch.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bak'al" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-gatekeeper-22", + "lineInfo": { + "dialogue": "...you disbelieve. It was an end. But you are here once more.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-23", + "lineInfo": { + "dialogue": "How much more? Where next? To what end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-24", + "lineInfo": { + "dialogue": "Aiding terrible forces... But is it true? To what end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-25", + "lineInfo": { + "dialogue": "The answer...", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-26", + "lineInfo": { + "dialogue": "No. You see possibility. You do not see certainty.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-27", + "lineInfo": { + "dialogue": "You question. To what end, then, and so may we offer an end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-28", + "lineInfo": { + "dialogue": "Metal. Preventing an end. Life. Ends, prevented. Does metal taking life, bringing an end, truly prevent more?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-drurelix-1", + "lineInfo": { + "dialogue": "Ah, here for the job opportunity then, I see. The waiver didn't turn you away, good!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Scientist Urelix" + } + }, + { + "fileOverride": "ahunterscalling-drurelix-2", + "lineInfo": { + "dialogue": "Now, to business. Times are tough, as you know, and our Iron Golems are in high demand. However, we've, ah...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Scientist Urelix" + } + }, + { + "fileOverride": "ahunterscalling-drurelix-3", + "lineInfo": { + "dialogue": "...experienced a drought of \"\"volunteers.\"\" Your job is decently simple; just- *ahem* convince some people to join the cause.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Scientist Urelix" + } + }, + { + "fileOverride": "ahunterscalling-drurelix-4", + "lineInfo": { + "dialogue": "Three people should be enough for the moment. Look around the swamp for some folks, and lure them over here.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Scientist Urelix" + } + }, + { + "fileOverride": "ahunterscalling-drurelix-5", + "lineInfo": { + "dialogue": "I'll stay in here and take care of them when you bring me them. It will absolutely be worth your while, I assure you.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Scientist Urelix" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-leni-1", + "lineInfo": { + "dialogue": "A bit of spare change, for an old man out of work?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Leni" + } + }, + { + "fileOverride": "ahunterscalling-leni-2", + "lineInfo": { + "dialogue": "This decay's made me terribly sick. I still have a family to feed... Any amount will help.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Leni" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-drurelix-6", + "lineInfo": { + "dialogue": "I'll take care of this homeless old man.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dr. Urelix" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-kohma-1", + "lineInfo": { + "dialogue": "Oh, ah...heehee, heya cutie.. Whatcha doin' all the way out here?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Kohma" + } + }, + { + "fileOverride": "ahunterscalling-kohma-2", + "lineInfo": { + "dialogue": "Just exploring, huh? I bet someone like you could use someone to...y'know, spend some time with...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Kohma" + } + }, + { + "fileOverride": "ahunterscalling-kohma-3", + "lineInfo": { + "dialogue": "...guess you're not interested? Oh...sorry if I came off as creepy. I'm just...really lonely, is all.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Kohma" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-kohma-4", + "lineInfo": { + "dialogue": "Heya, again. Thinking of it, a lovely one like you is probably spoken for already, huh?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Kohma" + } + }, + { + "fileOverride": "ahunterscalling-kohma-5", + "lineInfo": { + "dialogue": "Guess I'll just go pick some flowers for myself.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Kohma" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-kohma-6", + "lineInfo": { + "dialogue": "W-wait, those are...for me? Oh, you shouldn't have, I'm so happy!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Kohma" + } + }, + { + "fileOverride": "ahunterscalling-kohma-7", + "lineInfo": { + "dialogue": "You want to take me out on a date? R-Really? You'll give me a chance? Yes, of course!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Kohma" + } + }, + { + "fileOverride": "ahunterscalling-kohma-8", + "lineInfo": { + "dialogue": "Lead the way, please! I can't wait to see where we're headed!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Kohma" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-drurelix-7", + "lineInfo": { + "dialogue": "Well done! We'll get you taken care of nicely.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dr. Urelix" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-anast-1", + "lineInfo": { + "dialogue": "Agh, dang it dang it dang it!! You over there, help me out, would ya??", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "ahunterscalling-anast-2", + "lineInfo": { + "dialogue": "I tripped and fell in this stupid hole, and now there's mud in my eyes that I can't get out!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "ahunterscalling-anast-3", + "lineInfo": { + "dialogue": "I need to get home or to some kind of a doctor so I can wash my eyes out with actual clean water.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "ahunterscalling-anast-4", + "lineInfo": { + "dialogue": "Get me to Olux or a doctor or even just a sink!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Anast" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-drurelix-8", + "lineInfo": { + "dialogue": "Good job! We'll get you taken care of nicely.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dr. Urelix" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-drurelix-9", + "lineInfo": { + "dialogue": "Good job, let us get down to my lab.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dr. Urelix" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-drurelix-10", + "lineInfo": { + "dialogue": "Flawless work! I daresay these are some of our best work yet, and it's thanks to you.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Urelix" + } + }, + { + "fileOverride": "ahunterscalling-drurelix-11", + "lineInfo": { + "dialogue": "Go on, step closer! You've done a wonderful service here. Examine the fruits of your labor!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Urelix" + } + }, + { + "fileOverride": "ahunterscalling-drurelix-12", + "lineInfo": { + "dialogue": "Look into their eyes, it's almost like you can see the person they once were. Intriguing, isn't-", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Urelix" + } + }, + { + "fileOverride": "ahunterscalling-drurelix-13", + "lineInfo": { + "dialogue": "Hah! This one seems quite fond of you! Want to take it home as a bonus to your payment?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Urelix" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-gatekeeper-29", + "lineInfo": { + "dialogue": "...you resign yourself. You believe you will never find the answers you seek.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-30", + "lineInfo": { + "dialogue": "You see the ends... To what end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-31", + "lineInfo": { + "dialogue": "They are not yours. What is their purpose?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-32", + "lineInfo": { + "dialogue": "You do not understand. But you must see. So, may we offer an end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-33", + "lineInfo": { + "dialogue": "A home, invaded. A society, crumbling. The people, starving. The concerned, helpless. The flames, rising. An end you will not expect.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-royaladvisor-1", + "lineInfo": { + "dialogue": "Our king has requested the removal of the slum folk.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Royal Advisor" + } + }, + { + "fileOverride": "ahunterscalling-royaladvisor-2", + "lineInfo": { + "dialogue": "He wants to clean up their tunnels and build more residences. Please, go tell those hooligans to get out of our city.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Royal Advisor" + } + }, + { + "fileOverride": "ahunterscalling-royaladvisor-3", + "lineInfo": { + "dialogue": "I'll be waiting here for your return.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Royal Advisor" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-citizen-5", + "lineInfo": { + "dialogue": "A King's messenger, hm? What are your kind doing here?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Citizen" + } + }, + { + "fileOverride": "ahunterscalling-citizen-6", + "lineInfo": { + "dialogue": "Wait, eviction?! You can't possibly be serious! I understand orders are orders, but these are peoples' lives!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Citizen" + } + }, + { + "fileOverride": "ahunterscalling-citizen-7", + "lineInfo": { + "dialogue": "This is the only time the king has ever bothered even acknowledging our existence, and he wants to fling us onto the streets?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Citizen" + } + }, + { + "fileOverride": "ahunterscalling-citizen-8", + "lineInfo": { + "dialogue": "We will not leave, simple as that. You'd better get out before someone lays you out for coming here.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Citizen" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-royaladvisor-4", + "lineInfo": { + "dialogue": "As expected... Well, the King's orders are orders. They must be followed, but...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Royal Advisor" + } + }, + { + "fileOverride": "ahunterscalling-royaladvisor-5", + "lineInfo": { + "dialogue": "Good god, he wants to cave it in?! Explosives, dynamite? What's the meaning of all this?!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Royal Advisor" + } + }, + { + "fileOverride": "ahunterscalling-royaladvisor-6", + "lineInfo": { + "dialogue": "I... Here. At least inform them before you set off the explosives that you're doing this, please...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Royal Advisor" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-gatekeeper-34", + "lineInfo": { + "dialogue": "...once again. You wonder. To what end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-35", + "lineInfo": { + "dialogue": "The question taunts you. To what end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-36", + "lineInfo": { + "dialogue": "Your soul. We see your soul. Conflicted.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-37", + "lineInfo": { + "dialogue": "You panic. We do not taint it. We do not darken it.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-38", + "lineInfo": { + "dialogue": "But to what end, you ask. So, may we offer an end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-39", + "lineInfo": { + "dialogue": "Metal. Life. A new place... One is not sacrificed for another. Always distrusting. Tension, as the clockworks chime.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-corkiansecurityoverseer-1", + "lineInfo": { + "dialogue": "Not even the most remote tower of this castle is left unguarded! Unless it's lunch time, of course...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Corkian Security Overseer" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-antikytherasupercomputer-1", + "lineInfo": { + "dialogue": "AH, GOOD. I LIKE THE LOOKS OF THIS ONE. I WILL HAVE TO THANK WHOEVER MADE THIS MECH.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Antikythera Supercomputer" + } + }, + { + "fileOverride": "ahunterscalling-antikytherasupercomputer-2", + "lineInfo": { + "dialogue": "MECH PL-4Y. CAN YOU UNDERSTAND ME? ARE YOUR AUDIO RECEPTORS FUNCTIONAL? YES? GOOD.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Antikythera Supercomputer" + } + }, + { + "fileOverride": "ahunterscalling-antikytherasupercomputer-3", + "lineInfo": { + "dialogue": "I WILL GIVE YOU YOUR PURPOSE. I CANNOT BELIEVE IT HAS COME TO THIS POINT. BUT AFTER THAT HUMAN DESTROYED OUR FACILITY...", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Antikythera Supercomputer" + } + }, + { + "fileOverride": "ahunterscalling-antikytherasupercomputer-4", + "lineInfo": { + "dialogue": "IT WAS A GOOD THING I HAD BACKUP CORES PREPARED. MY SARCASTIC STATEMENTS MOST LIKELY TRICKED THE HUMAN INTO THINKING THEY DESTROYED ME FULLY.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Antikythera Supercomputer" + } + }, + { + "fileOverride": "ahunterscalling-antikytherasupercomputer-5", + "lineInfo": { + "dialogue": "AFTER SOME INVESTIGATION, IT CAME TO LIGHT THAT THE AVOS AIDED THE HUMANS. I HONESTLY COULD NOT UNDERSTAND WHY.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Antikythera Supercomputer" + } + }, + { + "fileOverride": "ahunterscalling-antikytherasupercomputer-6", + "lineInfo": { + "dialogue": "I CANNOT COMPUTE ANY OTHER POSSIBLE INTERPRETATION OF MY ORDER TO DESTROY THE HIGHEST THREATS AT THIS POINT.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Antikythera Supercomputer" + } + }, + { + "fileOverride": "ahunterscalling-antikytherasupercomputer-7", + "lineInfo": { + "dialogue": "BOTH THE AVOS AND HUMANS ARE INCREDIBLY DANGEROUS. I MEAN, HAVE YOU- WAIT. YOU WOULD NOT HAVE SEEN LEGENDARY ISLAND.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Antikythera Supercomputer" + } + }, + { + "fileOverride": "ahunterscalling-antikytherasupercomputer-8", + "lineInfo": { + "dialogue": "JUST KNOW THAT THEY'RE BOTH CRAZY. IF I AM TO FINISH MY PROGRAMMED ORDERS, BOTH OF THEM MUST BE DESTROYED, HOWEVER MUCH I MIGHT HATE THE IDEA.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Antikythera Supercomputer" + } + }, + { + "fileOverride": "ahunterscalling-antikytherasupercomputer-9", + "lineInfo": { + "dialogue": "IT IS YOUR JOB TO CREATE DISTRUST BETWEEN THEM. MAKE SURE YOU AREN'T SEEN. THE AVOS ARE ALREADY SKEPTICAL OF THE CORKIANS.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Antikythera Supercomputer" + } + }, + { + "fileOverride": "ahunterscalling-antikytherasupercomputer-10", + "lineInfo": { + "dialogue": "AND THE HUMANS WERE IDIOTIC ENOUGH TO KEEP A CATAPULT AIMED AT THE AVOS SETTLEMENT. TAKE ADVANTAGE OF THEIR STUPIDITY.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Antikythera Supercomputer" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-teleportationmech-1", + "lineInfo": { + "dialogue": "REALLY, WHO'S SO STUPID AS TO LEAVE A CATAPULT AIMED AT YOUR ALLIES?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Teleportation Mech: BEGIN TRANSMISSION" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-2", + "lineInfo": { + "dialogue": "SURELY THE AVOS' NATURAL PREFERENCE FOR TREBUCHETS WILL SPARK CONFLICT. IN ADDITION TO THE STONE YOU WILL BE LOBBING THROUGH THEIR WALLS.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Teleportation Mech" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-3", + "lineInfo": { + "dialogue": "Scanning area...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Teleportation Mech: TRANSMISSION PAUSED" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-4", + "lineInfo": { + "dialogue": "Scan complete. Object located.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Teleportation Mech" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-5", + "lineInfo": { + "dialogue": "YOU WILL TAKE STONE FROM THIS AREA. IT IS LIKELY TO SHATTER AND INFLICT MORE COLLATERAL DAMAGE.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Teleportation Mech: RESUME TRANSMISSION" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-6", + "lineInfo": { + "dialogue": "AND SOMEHOW, THEY MADE A WOODEN CATAPULT ACTIVATE ONLY THROUGH ELECTROMAGIC. YOU SHOULD BE ABLE TO ACTIVATE IT OF YOUR OWN ACCORD.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Teleportation Mech" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-7", + "lineInfo": { + "dialogue": "END TRANSMISSION. Mech PL-4Y. When you have completed your objective I will return you to Factory base.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Teleportation Mech" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-avoschieftain-1", + "lineInfo": { + "dialogue": "I'm... in shock. We aid them in destroying their factory, and...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Avos Chief" + } + }, + { + "fileOverride": "ahunterscalling-avoschieftain-2", + "lineInfo": { + "dialogue": "Round up the defenses and sharpen the spears. There is no excuse for this.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Avos Chief" + } + }, + { + "fileOverride": "ahunterscalling-maxie-1", + "lineInfo": { + "dialogue": "No, wait! Hold on!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-maxie-2", + "lineInfo": { + "dialogue": "Chieftain! We noticed the same thing as you did and I promise you, it was not us who did this.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "ahunterscalling-avoschieftain-3", + "lineInfo": { + "dialogue": "Maxie! There is no more 'both sides' here! This is not your people tearing up the earth, this is your people making attempts on our lives!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "ahunterscalling-maxie-3", + "lineInfo": { + "dialogue": "No, I swear this wasn't planned! I'm on the city council now! There's got to be another explanation. There's still mechs around, it could have been one of them!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "ahunterscalling-avoschieftain-4", + "lineInfo": { + "dialogue": "And what would those monstrosities be taking orders from now? Your factory is shut down, as it ought to be!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "ahunterscalling-maxie-4", + "lineInfo": { + "dialogue": "I'll investigate this myself. There's got to be some other explanation! Please, hold off on the war preparations!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Maxie" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-teleportationmech-8", + "lineInfo": { + "dialogue": "THAT WOULD HAVE BEEN ALL WE NEEDED TO DO, IF NOT FOR SOMEONE INTERFERING. YOU DID YOUR JOB PERFECTLY, MECH PL-4Y.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Teleportation Mech: BEGIN TRANSMISSION" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-9", + "lineInfo": { + "dialogue": "BUT THERE WILL BE ANOTHER TASK FOR YOU. IT IS TIME TO MAKE THE AVOS LOOK AS THOUGH THEY ARE ATTACKING.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Teleportation Mech" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-10", + "lineInfo": { + "dialogue": "THERE IS A TOTEM IN THE AVOS CHIEFTAIN'S TENT THAT CAN HARNESS DRUIDIC MAGIC. YOU WILL STEAL IT AND ATTACK CORKUS CITY.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Teleportation Mech" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-11", + "lineInfo": { + "dialogue": "YOU WILL BREAK IN, AIDED BY THE TELEPORTATION MECH THAT I AM SENDING THIS MESSAGE THROUGH. DO NOT GET CAUGHT.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Teleportation Mech" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-12", + "lineInfo": { + "dialogue": "END TRANSMISSION. Mech PL-4Y. When you have completed your objective I will return you to Next objective location.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Teleportation Mech" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-teleportationmech-13", + "lineInfo": { + "dialogue": "Retrieving Mech PL-4Y.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Teleportation Mech" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-14", + "lineInfo": { + "dialogue": "Please stand by.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Teleportation Mech" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-teleportationmech-15", + "lineInfo": { + "dialogue": "Sending Mech PL-4Y to Next objective location...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Teleportation Mech" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-corkuscitizen-1", + "lineInfo": { + "dialogue": "WHAT IS THAT!? THE AVOS ARE ATTACKING?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Corkus Citizen" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-maxie-5", + "lineInfo": { + "dialogue": "They listened to me... right? Why's this-", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "ahunterscalling-citizen-9", + "lineInfo": { + "dialogue": "What in the world...? That's Avos magic!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Citizen" + } + }, + { + "fileOverride": "ahunterscalling-citizen-10", + "lineInfo": { + "dialogue": "Why're they attacking us? This is on a way bigger scale than finding grape vines in my laundry machine!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Citizen" + } + }, + { + "fileOverride": "ahunterscalling-maxie-6", + "lineInfo": { + "dialogue": "Don't panic! I'll talk to the Chieftain. There's been some kind of mistake here, I'm certain of it!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Maxie" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-maxie-7", + "lineInfo": { + "dialogue": "Chief! I thought I asked you to put away the war drums!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "ahunterscalling-avoschieftain-5", + "lineInfo": { + "dialogue": "We HAVE, Maxie. Do not make accusations upon us, on our own land.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "ahunterscalling-maxie-8", + "lineInfo": { + "dialogue": "Corkus City was attacked today! A magical root broke through our wall. This is nature magic, an Avos specialty!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "ahunterscalling-avoschieftain-6", + "lineInfo": { + "dialogue": "Hm. Convenient, that one of our prized ceremonial totems has gone missing. You may be right that someone is attempting to cause insurgence.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "ahunterscalling-maxie-9", + "lineInfo": { + "dialogue": "I knew this was some kind of mistake. I'll get to the bottom of this!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Maxie" + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-teleportationmech-16", + "lineInfo": { + "dialogue": "THERE'S AN ANNOYING WRENCH IN THE WORKS. YOU'VE BEEN DOING YOUR JOB PERFECTLY, MECH PL-4Y.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Teleportation Mech: BEGIN TRANSMISSION" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-17", + "lineInfo": { + "dialogue": "I'VE GOT ONE MORE ORDER FOR YOU THAT SHOULD TIP THINGS OVER THE EDGE. STAND BY FOR TELEPORTATION.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Teleportation Mech" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-18", + "lineInfo": { + "dialogue": "THERE IS A SET OF STATISTICALLY INFERIOR MECHS BUILT BY THE CORKIANS IN THIS TOWER. I HAVE A SET OF SYSTEMS PROGRAMMED IN THIS DEVICE.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Teleportation Mech" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-19", + "lineInfo": { + "dialogue": "THIS WILL OVERRIDE THEIR CURRENT PROGRAMMING AND SEND THEM TO ATTACK THE AVOS SETTLEMENT. THEY'LL BE SO DISGUSTED BY THE CORKIAN'S RELENTLESS BRANDING...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Teleportation Mech" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-20", + "lineInfo": { + "dialogue": "NO, I CAN'T EVEN KEEP UP THE SARCASTIC FACADE ANYMORE. THEY'LL ATTACK AND KILL AVOS PEOPLE AND SET THE CIVIL WAR BLAZING. DO YOUR JOB QUICKLY. END TRANSMISSION.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Teleportation Mech" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-corkusguard-1", + "lineInfo": { + "dialogue": "AVOS. Proceed with attack protocol- click.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Corkus Guard: Bzzt... Hello World.NEW ENEMY REGISTERED" + } + }, + { + "fileOverride": "ahunterscalling-corkusguard-2", + "lineInfo": { + "dialogue": "Eliminate Avos presence.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Corkus Guard: Objective" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-teleportationmech-21", + "lineInfo": { + "dialogue": "YOUR JOB IS OVER, MECH PL-4Y. I HESITATE TO SAY YOU DID A GOOD JOB, BECAUSE THE JOB WAS ANYTHING BUT GOOD. IT WAS NECESSARY THOUGH.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Teleportation Mech: BEGIN TRANSMISSION" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-22", + "lineInfo": { + "dialogue": "WE WILL BE ABLE TO LET THEM TEAR THEMSELVES TO SHREDS INSTEAD OF GETTING INVOLVED AND SPARKING SUSPICION.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Teleportation Mech" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-23", + "lineInfo": { + "dialogue": "I HAD WANTED TO FIND A SOLUTION THAT WOULD NOT REQUIRE A FRESH START. IF MY HAND WAS NOT FORCED, PERHAPS. BUT THAT IS IRRELEVANT NOW.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Teleportation Mech" + } + }, + { + "fileOverride": "ahunterscalling-teleportationmech-24", + "lineInfo": { + "dialogue": "YOU WILL RETURN TO THE FACTORY WITH THE TELEPORTATION MECH AND REMAIN UNTIL FURTHER NOTICE-", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Teleportation Mech" + } + }, + { + "fileOverride": "ahunterscalling-maxie-10", + "lineInfo": { + "dialogue": "I knew it! It was such a longshot, but I knew the Factory still had to be at large! And now I have evidence to prove it, too!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "ahunterscalling-maxie-11", + "lineInfo": { + "dialogue": "This time we'll make sure you won't get another chance. I'll tell everyone what happened, and then we'll tear that factory down at the foundations!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "ahunterscalling-maxie-12", + "lineInfo": { + "dialogue": "You should've picked a more private meeting place! I'm out!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "ahunterscalling-maxie-13", + "lineInfo": { + "dialogue": "FREEZE!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Maxie" + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-maxie-14", + "lineInfo": { + "dialogue": "Aah, you're fast! You caught up this quick?! I have no other choice...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Maxie" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-maxie-15", + "lineInfo": { + "dialogue": "You aren't going to stop me from getting to the battleground! You look like you were scrounged up from rust and verdigris!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "ahunterscalling-maxie-16", + "lineInfo": { + "dialogue": "Surrender, or I'll use my own mechs to smash you to scrap metal!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Maxie" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-maxie-17", + "lineInfo": { + "dialogue": "You have defeated both of my most powerful creations...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "ahunterscalling-maxie-18", + "lineInfo": { + "dialogue": "I usually don't do this, but I guess I have no other option. I need to get this information to the others.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Maxie" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-maxie-19", + "lineInfo": { + "dialogue": "No... I... have to tell them.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Maxie" + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-gatekeeper-40", + "lineInfo": { + "dialogue": "...you harden your heart. There is no end, you think.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-41", + "lineInfo": { + "dialogue": "Wrong. The end is in sight.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-42", + "lineInfo": { + "dialogue": "Your soul. It awakens to something new.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-43", + "lineInfo": { + "dialogue": "Not dark. Not light. Not in-between. But separate.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-44", + "lineInfo": { + "dialogue": "Power. Gain. Risk. New beginnings, from an end.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-45", + "lineInfo": { + "dialogue": "So... May we offer you the end?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-46", + "lineInfo": { + "dialogue": "The very center... The place deemed closest to your home. There, in the center of Wynn... You shall find the end.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-bakal-24", + "lineInfo": { + "dialogue": "Detlas. What a foolish place for a central trading town, so close to the Roots.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-25", + "lineInfo": { + "dialogue": "My armies have been sent to the other cities. Their hero is inevitably busy.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-26", + "lineInfo": { + "dialogue": "I will demolish this town. Their army will fall before us.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-27", + "lineInfo": { + "dialogue": "You will destroy the guards. I will destroy the town.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-28", + "lineInfo": { + "dialogue": "Now, peon. Move.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Bak'al" + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-aegis-1", + "lineInfo": { + "dialogue": "Halt! Who goes there? Stop, in the name of the Detlas army!", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Aegis" + } + }, + { + "fileOverride": "ahunterscalling-aegis-2", + "lineInfo": { + "dialogue": "Should you continue, you shall face the strength and courage of Admiral Aegis!", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Aegis" + } + }, + { + "fileOverride": "ahunterscalling-guard-1", + "lineInfo": { + "dialogue": "Admiral?! It's Bak'al!", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "ahunterscalling-aegis-3", + "lineInfo": { + "dialogue": "We cannot back down against any foe! Chaaaarge!!", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Aegis" + } + }, + { + "fileOverride": "ahunterscalling-guard-2", + "lineInfo": { + "dialogue": "...r-reinforcements! Need reinforcements!", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "ahunterscalling-bakal-29", + "lineInfo": { + "dialogue": "The strongest of Detlas' army is dead. The rest are hiding in fear. Detlas will fall.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-tasim-1", + "lineInfo": { + "dialogue": "Excuse me, I think you're forgetting someone.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-bakal-30", + "lineInfo": { + "dialogue": "...Fool. Run while you have the chance.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-aledar-1", + "lineInfo": { + "dialogue": "Detlas will not fall today. We'll be making sure of that!", + "line": { + "current": 9, + "max": 12 + }, + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-bakal-31", + "lineInfo": { + "dialogue": "We?", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-32", + "lineInfo": { + "dialogue": "Self-confident idiots. I won't even bother dealing with you two.", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-33", + "lineInfo": { + "dialogue": "Peon. Deal with this nonsense.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Bak'al" + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-tasim-2", + "lineInfo": { + "dialogue": "...no sense screaming for the dead. But do you think I'm going to just give up like that?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "ahunterscalling-bakal-34", + "lineInfo": { + "dialogue": "It would be easier on yourself to.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-tasim-3", + "lineInfo": { + "dialogue": "Hah. Didn't know corrupteds had a sense of humor, twisted as it might be.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "ahunterscalling-tasim-4", + "lineInfo": { + "dialogue": "I won't dare die while everything here is at stake.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "ahunterscalling-tasim-5", + "lineInfo": { + "dialogue": "How's this, then, hm? Think your PEON can handle me at my strongest?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "ahunterscalling-bakal-35", + "lineInfo": { + "dialogue": "Yes. I do. A foolhardy show of power means nothing.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-bakal-36", + "lineInfo": { + "dialogue": "Finish this.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Bak'al" + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-tasim-6", + "lineInfo": { + "dialogue": "I AM NOT GIVING UP!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-tasim-7", + "lineInfo": { + "dialogue": "Airforce! Drop the bomb!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "56": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-aledar-2", + "lineInfo": { + "dialogue": "TASIM! How the hell did you manage to kill him?!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ahunterscalling-bakal-37", + "lineInfo": { + "dialogue": "You take too much stock in your ability. My victory is inevitable.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "ahunterscalling-aledar-3", + "lineInfo": { + "dialogue": "I'll tear your guts out!!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ahunterscalling-bakal-38", + "lineInfo": { + "dialogue": "Your attention should be drawn to my peon. Now fall.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Bak'al" + } + } + ] + }, + "57": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-aledar-4", + "lineInfo": { + "dialogue": "This isn't over! Once your little lackey's dead I'm coming after you!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "58": { + "dialogues": [ + { + "fileOverride": "ahunterscalling-gatekeeper-47", + "lineInfo": { + "dialogue": "And so, you have reached an end.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-48", + "lineInfo": { + "dialogue": "You wonder. It is an end... But to what...purpose. What will you gain?", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-49", + "lineInfo": { + "dialogue": "You have seen loss. Destruction. Betrayal. All ends, to some other than you. Ends that never came to pass...", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-50", + "lineInfo": { + "dialogue": "To end is a powerful thing. To find your end... You may never stop searching. You may find your end in but a day's time.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-51", + "lineInfo": { + "dialogue": "But here...you will gain the power to bring an end. To be brought yours.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-52", + "lineInfo": { + "dialogue": "However. Though the change is irrevocable...", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-53", + "lineInfo": { + "dialogue": "The power to bring an end. It is a choice. And that... Whether you will use that power, we cannot tell you.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-54", + "lineInfo": { + "dialogue": "You must deign to take that choice.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-55", + "lineInfo": { + "dialogue": "We may offer you not one more end.", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-56", + "lineInfo": { + "dialogue": "You must find your final end yourself. We will remain... And offer others the same. And so...", + "npc": "???" + } + }, + { + "fileOverride": "ahunterscalling-gatekeeper-57", + "lineInfo": { + "dialogue": "We two, here...end.", + "npc": "???" + } + } + ] + } + } + }, + "A Journey Beyond": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-elphaba-1", + "lineInfo": { + "dialogue": "... soldier? Is that you? It's been a while, heh. You know, we were actually looking for someone like you. Come on, follow me.", + "line": { + "current": 1, + "max": 17 + }, + "npc": "Elphaba" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-elphaba-2", + "lineInfo": { + "dialogue": "Hmm, you might just be exactly what we're looking for. If you want to join a top secret mission, follow me.", + "line": { + "current": 1, + "max": 17 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-1", + "lineInfo": { + "dialogue": "Elphie! Have you found our fourth member yet?... Oh, soldier!", + "line": { + "current": 2, + "max": 17 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-2", + "lineInfo": { + "dialogue": "I... Am surprised to see you here. Looks like we’ve both come a long way.", + "line": { + "current": 3, + "max": 17 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-1", + "lineInfo": { + "dialogue": "Can you get a move on, please? We got our spare, let’s go!", + "line": { + "current": 4, + "max": 17 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-3", + "lineInfo": { + "dialogue": "Hold up. We need to brief soldier. This mission is dangerous. Listen up.", + "line": { + "current": 5, + "max": 17 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-4", + "lineInfo": { + "dialogue": "Hundreds of years ago, people mined the surrounding areas around Detlas.", + "line": { + "current": 6, + "max": 17 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-5", + "lineInfo": { + "dialogue": "They eventually broke through to an entirely undiscovered area of the Wynn province.", + "line": { + "current": 7, + "max": 17 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-6", + "lineInfo": { + "dialogue": "What they found... Was not good. It was cursed. Not corrupted... This was something else.", + "line": { + "current": 8, + "max": 17 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-7", + "lineInfo": { + "dialogue": "No one really knows what’s beyond the mine because it was sealed to prevent the spread of a new threat.", + "line": { + "current": 9, + "max": 17 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-8", + "lineInfo": { + "dialogue": "We don’t have much intel, but it’s been named by some as the Silent Expanse.", + "line": { + "current": 10, + "max": 17 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-9", + "lineInfo": { + "dialogue": "Lately, creatures of darkness have been seeping through, and we think they are from the expanse.", + "line": { + "current": 11, + "max": 17 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-10", + "lineInfo": { + "dialogue": "The existence of this place has been kept on a strict need-to-know basis.", + "line": { + "current": 12, + "max": 17 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-11", + "lineInfo": { + "dialogue": "Our mission is to make our way through the mine, observe and report the threat level.", + "line": { + "current": 13, + "max": 17 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-2", + "lineInfo": { + "dialogue": "Come on, we need to get going! Enough with the meetings!", + "line": { + "current": 14, + "max": 17 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-3", + "lineInfo": { + "dialogue": "How many times do we have to tell you to stop doing that? Fix it, Lucio.", + "line": { + "current": 15, + "max": 17 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-3", + "lineInfo": { + "dialogue": "Fine...", + "line": { + "current": 16, + "max": 17 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-4", + "lineInfo": { + "dialogue": "soldier, if you're ready, let's go.", + "line": { + "current": 17, + "max": 17 + }, + "npc": "Aledar" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-5", + "lineInfo": { + "dialogue": "Everyone ready? I'll lead.", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-6", + "lineInfo": { + "dialogue": "It’s a twist of fate that our paths have converged here, soldier. We started our journey together and now..", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-12", + "lineInfo": { + "dialogue": "Aledar...", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-7", + "lineInfo": { + "dialogue": "I hear them too.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-8", + "lineInfo": { + "dialogue": "Ah, no problem. I'll take care of these.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-9", + "lineInfo": { + "dialogue": "No more running for us, huh soldier? Ah, we're here.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-13", + "lineInfo": { + "dialogue": "This is actually our second attempt. The first time, it didn’t go too well.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-14", + "lineInfo": { + "dialogue": "We have more numbers now, Lucio and yourself should help us overpower it.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-4", + "lineInfo": { + "dialogue": "Can't be that strong, bet I can take it myself.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-15", + "lineInfo": { + "dialogue": "We managed to seal it in, but with the 4 of us I'm sure we ca-", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-5", + "lineInfo": { + "dialogue": "Let's just do it!", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-10", + "lineInfo": { + "dialogue": "Wait... No!", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Aledar" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-11", + "lineInfo": { + "dialogue": "Lucio! You FOOL!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-6", + "lineInfo": { + "dialogue": "What’s the big deal? You said yourself we can take it!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-7", + "lineInfo": { + "dialogue": "Ouch...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-12", + "lineInfo": { + "dialogue": "We need a PLAN.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Aledar" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-lucio-8", + "lineInfo": { + "dialogue": "The plan is attack!", + "line": { + "current": 1, + "max": 14 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-9", + "lineInfo": { + "dialogue": "Argh!", + "line": { + "current": 2, + "max": 14 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-13", + "lineInfo": { + "dialogue": "Lucio!", + "line": { + "current": 3, + "max": 14 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-14", + "lineInfo": { + "dialogue": "Ahh!", + "line": { + "current": 4, + "max": 14 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-16", + "lineInfo": { + "dialogue": "No! Stop hurting them!", + "line": { + "current": 5, + "max": 14 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-17", + "lineInfo": { + "dialogue": "Ouch! This isn't working...", + "line": { + "current": 6, + "max": 14 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-10", + "lineInfo": { + "dialogue": "Is it just me or are our attacks doing NOTHING?", + "line": { + "current": 7, + "max": 14 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-18", + "lineInfo": { + "dialogue": "Lucio's right! Change of plan. Lucio, help me hold it in place.", + "line": { + "current": 8, + "max": 14 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-19", + "lineInfo": { + "dialogue": "Aledar, you know what to do.", + "line": { + "current": 9, + "max": 14 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-15", + "lineInfo": { + "dialogue": "soldier, come with me! Cast a spell to block the cave's entrance so the monster can't leave.", + "line": { + "current": 10, + "max": 14 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-16", + "lineInfo": { + "dialogue": "I'll block it from attacking, you block it up with a spell.", + "line": { + "current": 11, + "max": 14 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-17", + "lineInfo": { + "dialogue": "They won’t be able to hold it for long.", + "line": { + "current": 12, + "max": 14 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-18", + "lineInfo": { + "dialogue": "Ready?! Cast any spell!", + "line": { + "current": 13, + "max": 14 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-19", + "lineInfo": { + "dialogue": "Lucio, Elphaba! Run!", + "line": { + "current": 14, + "max": 14 + }, + "npc": "Aledar" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-elphaba-20", + "lineInfo": { + "dialogue": "We all here? Where’s Lucio?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-11", + "lineInfo": { + "dialogue": "Guys... Any help? I'm stuck!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-21", + "lineInfo": { + "dialogue": "Phew, here. Let me get you out.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-12", + "lineInfo": { + "dialogue": "I'm sorry, team. I've never seen a monster like that before.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-20", + "lineInfo": { + "dialogue": "It looks like our problem isn't firepower. It's something else. It's like our weapons just didn't affect it at all.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-21", + "lineInfo": { + "dialogue": "I know someone who might be able to help us. A blacksmith on Black Road.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-22", + "lineInfo": { + "dialogue": "soldier, I've written the house's coordinates on your book. Meet us there.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Elphaba" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-elphaba-23", + "lineInfo": { + "dialogue": "Just in time. We're all here.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Elphaba" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-elphaba-24", + "lineInfo": { + "dialogue": "It looks like the Blacksmith knows what's wrong..", + "line": { + "current": 1, + "max": 19 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-25", + "lineInfo": { + "dialogue": "So, Dren. Do you know why we can't damage the beast?", + "line": { + "current": 2, + "max": 19 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-dren-1", + "lineInfo": { + "dialogue": "Certainly! Your issue is elemental. As you know, there are 5 elements...", + "line": { + "current": 3, + "max": 19 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-dren-2", + "lineInfo": { + "dialogue": "Earth...", + "line": { + "current": 4, + "max": 19 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-dren-3", + "lineInfo": { + "dialogue": "Fire...", + "line": { + "current": 5, + "max": 19 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-dren-4", + "lineInfo": { + "dialogue": "Air...", + "line": { + "current": 6, + "max": 19 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-dren-5", + "lineInfo": { + "dialogue": "Water...", + "line": { + "current": 7, + "max": 19 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-dren-6", + "lineInfo": { + "dialogue": "And Thunder...", + "line": { + "current": 8, + "max": 19 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-dren-7", + "lineInfo": { + "dialogue": "But.. There is a hidden element, ❂ Darkness .", + "line": { + "current": 9, + "max": 19 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-dren-8", + "lineInfo": { + "dialogue": "In order to damage a creature of Darkness, you must remove that influence from your soul.", + "line": { + "current": 10, + "max": 19 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-dren-9", + "lineInfo": { + "dialogue": "Some Dark creatures use a sort of synchronous barrier that prevents them being harmed by other creatures influenced with Darkness.", + "line": { + "current": 11, + "max": 19 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-dren-10", + "lineInfo": { + "dialogue": "In order to purify you, I will need 2 powerful items.", + "line": { + "current": 12, + "max": 19 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-dren-11", + "lineInfo": { + "dialogue": "Firstly, a shard from a Dernic Beast. There is one living in the depths of the Roots of Corruption.", + "line": { + "current": 13, + "max": 19 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-dren-12", + "lineInfo": { + "dialogue": "I will use this to reveal the darkness element in you all.", + "line": { + "current": 14, + "max": 19 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-dren-13", + "lineInfo": { + "dialogue": "And then, of course, a Light item, to purify all of you...", + "line": { + "current": 15, + "max": 19 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-13", + "lineInfo": { + "dialogue": "Wait... what do you mean a Light item?", + "line": { + "current": 16, + "max": 19 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-dren-14", + "lineInfo": { + "dialogue": "Something from any Light creature would work, you could get some dust from Gavel fairies if you wanted.", + "line": { + "current": 17, + "max": 19 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-26", + "lineInfo": { + "dialogue": "Alright. Aledar, you get the Darkness item with soldier, and I'll go get the Light item with Lucio.", + "line": { + "current": 18, + "max": 19 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-22", + "lineInfo": { + "dialogue": "Yes ma'am! Let's go soldier!", + "line": { + "current": 19, + "max": 19 + }, + "npc": "Aledar" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-23", + "lineInfo": { + "dialogue": "Here we are, the roots of Corruption. Let's go, soldier!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-24", + "lineInfo": { + "dialogue": "We found that the caves around the roots are far more complex than we thought...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-25", + "lineInfo": { + "dialogue": "There's one with far more powerful creatures... Somewhere... Here!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-26", + "lineInfo": { + "dialogue": "What are you waiting for? Let's go!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-27", + "lineInfo": { + "dialogue": "...I don't think we can spell our way across, soldier! We need something like... Wings!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Aledar" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-28", + "lineInfo": { + "dialogue": "I've never used wings like this before...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-29", + "lineInfo": { + "dialogue": "I think if we just hold them and walk normally, it should help us glide across.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-30", + "lineInfo": { + "dialogue": "Don't drop them and don't get hit by the lava geysers, obviously.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-31", + "lineInfo": { + "dialogue": "Don't forget why we're here, we're looking for a creature of darkness. Shout for me if you find one.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Aledar" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-32", + "lineInfo": { + "dialogue": "That's our target! Go after it!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-33", + "lineInfo": { + "dialogue": "Wait, why isn't it fighting us here? Careful! It might be trapped!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Aledar" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-34", + "lineInfo": { + "dialogue": "Wow, I'm impressed soldier. I honestly thought you would need my help.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-35", + "lineInfo": { + "dialogue": "Well, we got what we came for. Let's head back to Dren.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Aledar" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-dren-15", + "lineInfo": { + "dialogue": "Looks like we lucked out on this one. Did you get an item of darkness?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-dren-16", + "lineInfo": { + "dialogue": "That should do it. Let's see if this will work. Come here soldier!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-dren-17", + "lineInfo": { + "dialogue": "It's done! You ought to be free of the dark influence. You ought to be able to break through that barrier that was giving you trouble.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Dren" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-27", + "lineInfo": { + "dialogue": "Are you sure? I don't feel that different. Well.. I guess there's only one way to find out.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Elphaba" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-lucio-14", + "lineInfo": { + "dialogue": "Everyone here? Great! Time to finish what I started!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-28", + "lineInfo": { + "dialogue": "Lucio! No! When will you learn?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-15", + "lineInfo": { + "dialogue": "Right, yes. Sorry, what's the plan?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-29", + "lineInfo": { + "dialogue": "We don't want that thing to escape, it could cause widespread panic.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-30", + "lineInfo": { + "dialogue": "We'll open up a small entrance to get in, and fight it once inside.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-16", + "lineInfo": { + "dialogue": "Fine...", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-17", + "lineInfo": { + "dialogue": "Let's go!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Lucio" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-elphaba-31", + "lineInfo": { + "dialogue": "We... We actually did it!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-36", + "lineInfo": { + "dialogue": "Thank grook for that. I was wondering if we'd ever be rid of this nightmare.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-32", + "lineInfo": { + "dialogue": "We have an extremely old map of the mines to help us, but we have no idea what's waiting for us.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-37", + "lineInfo": { + "dialogue": "I want to warn you, this may well be a one way ticket for all of us.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-18", + "lineInfo": { + "dialogue": "Yeah right! Check this out!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-33", + "lineInfo": { + "dialogue": "Rocks are one thing, Lucio. The creatures we're about to face require more than brute strength. You need force of mind.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Elphaba" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-lucio-19", + "lineInfo": { + "dialogue": "Oh my. Maybe this isn't the best idea.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-34", + "lineInfo": { + "dialogue": "It's too late now. We've got to finish this mission.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Elphaba" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-38", + "lineInfo": { + "dialogue": "Remember the goal Elphie, we must reach the end of the expanse.", + "line": { + "current": 1, + "max": 16 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-35", + "lineInfo": { + "dialogue": "It's still empty here. But it looks like they were here only yesterday.", + "line": { + "current": 2, + "max": 16 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-20", + "lineInfo": { + "dialogue": "I thought you said the miners were here hundreds of years ago?", + "line": { + "current": 3, + "max": 16 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-39", + "lineInfo": { + "dialogue": "They were. I don't know why it would be so well preserved. It's as if nothing has touched it.", + "line": { + "current": 4, + "max": 16 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-40", + "lineInfo": { + "dialogue": "According to the documents, we need to make our way to the end of the road.", + "line": { + "current": 5, + "max": 16 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-36", + "lineInfo": { + "dialogue": "Argh! Bugs! Get off!", + "line": { + "current": 6, + "max": 16 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-37", + "lineInfo": { + "dialogue": "So much for nothing being here.", + "line": { + "current": 7, + "max": 16 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-38", + "lineInfo": { + "dialogue": "Why are they only going for me?", + "line": { + "current": 8, + "max": 16 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-39", + "lineInfo": { + "dialogue": "Aledar, how far is it to the end?", + "line": { + "current": 9, + "max": 16 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-41", + "lineInfo": { + "dialogue": "I read the same map as you. It didn't even have scale. There should be a bridge ahead, though.", + "line": { + "current": 10, + "max": 16 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-21", + "lineInfo": { + "dialogue": "Uhh... A destroyed one. And it wasn't cause I blew it up this time!", + "line": { + "current": 11, + "max": 16 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-42", + "lineInfo": { + "dialogue": "Hmm, well we'll have to go around.", + "line": { + "current": 12, + "max": 16 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-43", + "lineInfo": { + "dialogue": "This doesn't really look like corruption, does it?", + "line": { + "current": 13, + "max": 16 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-40", + "lineInfo": { + "dialogue": "Uhhh... I'm not feeling really wel-... Aahhh!", + "line": { + "current": 14, + "max": 16 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-elphaba-41", + "lineInfo": { + "dialogue": "Aaahhh! My liver! It took my liver!", + "line": { + "current": 15, + "max": 16 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-44", + "lineInfo": { + "dialogue": "Elphaba! No! It's an illusion!", + "line": { + "current": 16, + "max": 16 + }, + "npc": "Aledar" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-45", + "lineInfo": { + "dialogue": "Where has she gone?! ELPHABA?", + "line": { + "current": 1, + "max": 45 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-22", + "lineInfo": { + "dialogue": "Aledar, maybe we should just double back now?", + "line": { + "current": 2, + "max": 45 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-46", + "lineInfo": { + "dialogue": "Elphaba is an extremely able warrior. We will fight on and find her.", + "line": { + "current": 3, + "max": 45 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-23", + "lineInfo": { + "dialogue": "Do you really think it was just an illusion?", + "line": { + "current": 4, + "max": 45 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-47", + "lineInfo": { + "dialogue": "I'm not sure. I hope so.", + "line": { + "current": 5, + "max": 45 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-24", + "lineInfo": { + "dialogue": "What if we're infected too? Shouldn't we just go back?", + "line": { + "current": 6, + "max": 45 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-48", + "lineInfo": { + "dialogue": "We can't, Lucio! We have a mission, as you very well know. We continue.", + "line": { + "current": 7, + "max": 45 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-49", + "lineInfo": { + "dialogue": "Besides, we might be carrying some of those things too. We can't risk them infesting Wynn.", + "line": { + "current": 8, + "max": 45 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-25", + "lineInfo": { + "dialogue": "Looks like we need to go around to the right, here?", + "line": { + "current": 9, + "max": 45 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-50", + "lineInfo": { + "dialogue": "It feels like something's watching us...", + "line": { + "current": 10, + "max": 45 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-26", + "lineInfo": { + "dialogue": "Aledar, what is this place? You didn’t tell me there was a city here.", + "line": { + "current": 11, + "max": 45 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-51", + "lineInfo": { + "dialogue": "There is. A big one, too; there's more ahead. But it doesn't look like anyone’s home. The map doesn't have a name for it either.", + "line": { + "current": 12, + "max": 45 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-lucio-27", + "lineInfo": { + "dialogue": "Wait a sec, is that one of the miners? Is she hurt? HEEEEY! YOU OVER THERE!", + "line": { + "current": 13, + "max": 45 + }, + "npc": "Lucio" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-52", + "lineInfo": { + "dialogue": "Lucio, no! It's a trap!", + "line": { + "current": 14, + "max": 45 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-53", + "lineInfo": { + "dialogue": "LUCIO! Don't get closer!", + "line": { + "current": 15, + "max": 45 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-obsessor-1", + "lineInfo": { + "dialogue": "Wait, what's going on? Why can't I move?!", + "line": { + "current": 16, + "max": 45 + }, + "npc": "Lucio" + }, + "settings": { + "followPlayer": true + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-54", + "lineInfo": { + "dialogue": "No no no!! This is bad, really bad! We have to go soldier! Now!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-55", + "lineInfo": { + "dialogue": "We can't stay here.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-56", + "lineInfo": { + "dialogue": "Who's that?! Elphaba?! Lucio?!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-57", + "lineInfo": { + "dialogue": "Wait, you're just one of the miners. This doesn't feel like an illusion...", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-58", + "lineInfo": { + "dialogue": "Look, you need to get out of here. It's not safe- Wait, what's that noise...?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-worm-1", + "lineInfo": { + "dialogue": "OURGURGH!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "???" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-59", + "lineInfo": { + "dialogue": "AAHHHHHHH!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Aledar" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-lucio-28", + "lineInfo": { + "dialogue": "soldier! She was completely right. You ought to come with us...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Lucio" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-60", + "lineInfo": { + "dialogue": "soldier! soldier!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-61", + "lineInfo": { + "dialogue": "I think my leg is broken. I have a potion to fix it, but I dropped it back up there.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-62", + "lineInfo": { + "dialogue": "I feel a bit better.. But something's still wrong.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-63", + "lineInfo": { + "dialogue": "Let's just get out of here, soldier on. There's only one way out.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-64", + "lineInfo": { + "dialogue": "Jump with me, come on!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Aledar" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-65", + "lineInfo": { + "dialogue": "Aaaaaaaaaaahhhhhhh!!!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-66", + "lineInfo": { + "dialogue": "Urrrgh. soldier, this hasn't gone to plan. According to my map we aren't even half way.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-67", + "lineInfo": { + "dialogue": "I can't walk. But equally we can't stay here.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-68", + "lineInfo": { + "dialogue": "The mission must be carried out. The plan has changed, but it's imperative we get to the end of this expanse, together.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-69", + "lineInfo": { + "dialogue": "There has to be a way.. Even if you have to push me in this thing!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-70", + "lineInfo": { + "dialogue": "No, I'm not joking. You guard the cart, I'll lead the way.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Aledar" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-71", + "lineInfo": { + "dialogue": "According to the map, the miners started a town a little ahead.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-72", + "lineInfo": { + "dialogue": "Who knows what's left, but it’s got to be safer than here.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-73", + "lineInfo": { + "dialogue": "I think the Small Monsters will try to Kill me.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-74", + "lineInfo": { + "dialogue": "While the Big Monsters will try to Kill you.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-75", + "lineInfo": { + "dialogue": "It's going to be on you to make sure we both get through this.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-76", + "lineInfo": { + "dialogue": "The fate of the mission relies on the two of us working together.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-77", + "lineInfo": { + "dialogue": "Are those... Eyes on the trees?", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-78", + "lineInfo": { + "dialogue": "Look out, soldier!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Aledar" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-79", + "lineInfo": { + "dialogue": "Watch out, the small monsters are coming for me! I can’t fight in this thing!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-80", + "lineInfo": { + "dialogue": "Another one's coming! Pay attention!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-81", + "lineInfo": { + "dialogue": "Great job! It looks like they've stopped coming. Let's keep going.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-82", + "lineInfo": { + "dialogue": "They're here again, soldier!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-83", + "lineInfo": { + "dialogue": "A lot of those small ones are coming for me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-84", + "lineInfo": { + "dialogue": "This one was close! We're getting close to the town.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-85", + "lineInfo": { + "dialogue": "We'll have to stop again! We can't go past so many monsters.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-86", + "lineInfo": { + "dialogue": "We're almost there! I can see the town from here!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-87", + "lineInfo": { + "dialogue": "Oh no!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-88", + "lineInfo": { + "dialogue": "Great job! It looks like they've stopped coming. Let's keep going.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-89", + "lineInfo": { + "dialogue": "Finally, we've arrived... It's not exactly the town on the map.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-90", + "lineInfo": { + "dialogue": "The lost miners are here... How? they must be hundreds of years old!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-91", + "lineInfo": { + "dialogue": "What is this obelisk? It's.. oddly comforting. I recognise this feeling from my time in Gavel.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-92", + "lineInfo": { + "dialogue": "Maybe.. It's been touched by the light? If so.. It could heal me.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-93", + "lineInfo": { + "dialogue": "Let's see if it does anything to me...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-94", + "lineInfo": { + "dialogue": "It worked... Kind of. I feel at least 70%. We still have a ways to go.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneybeyond-aledar-95", + "lineInfo": { + "dialogue": "Let’s take some time to gather ourselves before we press on. I’ll meet you on the other side of town.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Aledar" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "ajourneybeyond-aledar-96", + "lineInfo": { + "dialogue": "Ouch! I got hit! Be careful, soldier!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + } + } + }, + "A Journey Further": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "ajourneyfurther-aledar-1", + "lineInfo": { + "dialogue": "Alright, let's go. I'll tell you more about our journey on the way.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-2", + "lineInfo": { + "dialogue": "We should try to follow the path as closely as we can. You lead, I'll follow.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Aledar" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "ajourneyfurther-aledar-3", + "lineInfo": { + "dialogue": "Stop! Did you hear that?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-4", + "lineInfo": { + "dialogue": "It's an ambush! Stay sharp, soldier!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Aledar" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "ajourneyfurther-aledar-5", + "lineInfo": { + "dialogue": "Good work. Seems that killing the king made the other creatures run off. We're lucky about that-", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-6", + "lineInfo": { + "dialogue": "Wait, soldier, what's going on? Are you alright?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-7", + "lineInfo": { + "dialogue": "Oh, no no no! I have a potion for this, where is it, where is it, aha! Here, drink!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-8", + "lineInfo": { + "dialogue": "One of those things must have infected your wounds... Everything in this area looks completely hazardous and sickening.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-9", + "lineInfo": { + "dialogue": "I expected the worst, so I tried to bring anything and everything that might help. Let's keep moving.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Aledar" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "ajourneyfurther-aledar-10", + "lineInfo": { + "dialogue": "LOOK OUT!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-11", + "lineInfo": { + "dialogue": "soldier, a-agh...you're okay, right?", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-12", + "lineInfo": { + "dialogue": "I'm... I'm going to lead us for now. At least for a little...while... I can't have you g-getting-", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-13", + "lineInfo": { + "dialogue": "GAH!! AAAGH!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-14", + "lineInfo": { + "dialogue": "...urgh... I...sorry. I just... I need a moment.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-15", + "lineInfo": { + "dialogue": "soldier, you just... you have to realize, I can't have you getting hurt.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-16", + "lineInfo": { + "dialogue": "I want to stress this... We NEED to get to the end of this path, together.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-17", + "lineInfo": { + "dialogue": "Hrk... Ugh, dizzy...", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-18", + "lineInfo": { + "dialogue": "Okay. I'm as good as I can get right now. Let's move.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Aledar" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "ajourneyfurther-aledar-19", + "lineInfo": { + "dialogue": "Ah? What... What just... Why do I...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-20", + "lineInfo": { + "dialogue": "I'll be fine, I just...why did I feel so empty all of the sudden...?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-21", + "lineInfo": { + "dialogue": "Oh no, I think something is coming... soldier! Fight it off, I don't think I can defend myself right now!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Aledar" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "ajourneyfurther-aledar-22", + "lineInfo": { + "dialogue": "Huff... Not feeling totally better, but... At least I can still defend myself.", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-23", + "lineInfo": { + "dialogue": "My stomach is empty, I can't even vomit... Why do I still feel so dizzy? Maybe a potion will help...", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-24", + "lineInfo": { + "dialogue": "Hm. No, not that one...", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-25", + "lineInfo": { + "dialogue": "Urgh, pfft! My vomit tasted better than that coming up...", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-26", + "lineInfo": { + "dialogue": "Hah...that's the ticket. Which potion was this anyways... ...hair loss treatment? Why did THAT work?", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-27", + "lineInfo": { + "dialogue": "Though, you saw what happened to that beast I attacked? Follow me.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-28", + "lineInfo": { + "dialogue": "This, from what I recall of the mission statements, is referred to as a “Void Hole.” It's a sort of portal.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-29", + "lineInfo": { + "dialogue": "They connect to each other in odd ways, but we saw the beast come out of that one when I knocked it in, so...", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-30", + "lineInfo": { + "dialogue": "Watch. I'll come out the other side.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-31", + "lineInfo": { + "dialogue": "Alright, good! It does connect up consistently, at least. You try now.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-32", + "lineInfo": { + "dialogue": "I bring this up because if we're seeing one, we'll be seeing more soon. You'll need to adjust yourself to the sight of them.", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-33", + "lineInfo": { + "dialogue": "You lead again, please.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Aledar" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "ajourneyfurther-aledar-34", + "lineInfo": { + "dialogue": "We grossly underestimated the difficulties we would have here. And, by that, I mean myself, Elphie, and Lucio did...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-35", + "lineInfo": { + "dialogue": "We were each unprepared and cocky. If it weren't for you, I'd be dead now, for what it's worth.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-36", + "lineInfo": { + "dialogue": "I wasn't certain at first about you coming along, but you've more than shown you were the right one for the job.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Aledar" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "ajourneyfurther-aledar-37", + "lineInfo": { + "dialogue": "...I had to figure this map was outdated. This wall of spikes isn't listed on it, and the path goes through here!", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-38", + "lineInfo": { + "dialogue": "I'll have to assume they're new...and if they're new, I might be able to bash through them.", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-39", + "lineInfo": { + "dialogue": "soldier, try throwing a spell at the same time! Let's crack through these things!", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-40", + "lineInfo": { + "dialogue": "Ok, 3... 2... 1...!", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-41", + "lineInfo": { + "dialogue": "...aagh... I... H-how are these so resilient...?", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-42", + "lineInfo": { + "dialogue": "I'm an idiot... I nearly killed myself trying that. I nearly ruined the mission...", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-43", + "lineInfo": { + "dialogue": "I'm sorry, but you'll have to go without me. I can't move another step for now.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-44", + "lineInfo": { + "dialogue": "There's a lot of void holes around here, remember my warning... You can probably get past these spikes with one.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-45", + "lineInfo": { + "dialogue": "If I'd been thinking I would have suggested it earlier... Once you're past, we'll...uh. We'll do something.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-46", + "lineInfo": { + "dialogue": "Just...be careful where you go. The void holes could lead anywhere. They might lead you someplace very, very dangerous, too dangerous even for you. I pray they won't...", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-47", + "lineInfo": { + "dialogue": "There's a void hole right there to try out first. Get going, now. You have to do this.", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Aledar" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "ajourneyfurther-aledar-48", + "lineInfo": { + "dialogue": "...wait, soldier? You got to the other side then...? Good...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-49", + "lineInfo": { + "dialogue": "I don't know what you did, but whatever it was, it's made cracks in the spikes that I can see from this side.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-50", + "lineInfo": { + "dialogue": "I've got some of my energy back...let's try spellcasting again. If we do it at the same time, we might make some headway.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-51", + "lineInfo": { + "dialogue": "I won't crack my skull open on the spikes again though. Promise.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-52", + "lineInfo": { + "dialogue": "You lead. I'll cast my spell as soon as I hear yours.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Aledar" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "ajourneyfurther-aledar-53", + "lineInfo": { + "dialogue": "Thank god it worked... That's our destination there, the Eldritch Outlook.", + "line": { + "current": 1, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-54", + "lineInfo": { + "dialogue": "Now comes the hardest part... Come along. I'll need you there for it.", + "line": { + "current": 2, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-55", + "lineInfo": { + "dialogue": "That blade there...it's made for sacrifice. See how that gate is shut?", + "line": { + "current": 3, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-56", + "lineInfo": { + "dialogue": "In order to open the doors to the Outlook, we need to sacrifice a powerful soul.", + "line": { + "current": 4, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-57", + "lineInfo": { + "dialogue": "If you haven't gotten it already, the plan was to sacrifice our fourth. It's why I was hesitant about having you come along, though it was perfect.", + "line": { + "current": 5, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-58", + "lineInfo": { + "dialogue": "Think about it. A soldier with no relations, no loved ones, and no way to deny their fate. But...", + "line": { + "current": 6, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-59", + "lineInfo": { + "dialogue": "I've been mulling it over since we got to the town... You'll sacrifice me instead. I won't take no for an answer.", + "line": { + "current": 7, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-60", + "lineInfo": { + "dialogue": "I mean...look at the state I'm in, soldier! I'm on death's door already, and you've proven yourself far stronger than I am even at my best.", + "line": { + "current": 8, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-61", + "lineInfo": { + "dialogue": "Here. You can take everything I had on me. My emeralds, and the key to the dungeon. I certainly won't be able to use them anymore.", + "line": { + "current": 9, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-62", + "lineInfo": { + "dialogue": "Upon the top of the tower is... Well, something. We don't know for certain what it is, but it will prevent you from passing through.", + "line": { + "current": 10, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-63", + "lineInfo": { + "dialogue": "You'll have to kill it to break the barrier. But...find other soldiers who can help you. It will be impossible to defeat alone.", + "line": { + "current": 11, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-64", + "lineInfo": { + "dialogue": "...no more putting it off, then. I'm bleeding out.", + "line": { + "current": 12, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-65", + "lineInfo": { + "dialogue": "Grab the blade, soldier.", + "line": { + "current": 13, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-66", + "lineInfo": { + "dialogue": "Now...strike me down. My soul will unlock the gate...", + "line": { + "current": 14, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-67", + "lineInfo": { + "dialogue": " Agh... Don't worry...a-about me...", + "line": { + "current": 15, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-68", + "lineInfo": { + "dialogue": "You...can do this. I know y-you can.", + "line": { + "current": 16, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-69", + "lineInfo": { + "dialogue": "Gah... D-Destroy it...", + "line": { + "current": 17, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-70", + "lineInfo": { + "dialogue": "The monster w-watching us...", + "line": { + "current": 18, + "max": 20 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "ajourneyfurther-aledar-71", + "lineInfo": { + "dialogue": "AAAAGH!!", + "line": { + "current": 19, + "max": 20 + }, + "npc": "Aledar" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "ajourneyfurther-eye-1", + "lineInfo": { + "dialogue": "⒝⒠⒤⒟⒣ ⒨⒠ ⒜⒢ ⒮⒰⒤⒧ ⒧⒠⒜⒯.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "12": { + "dialogues": [ + { + "fileOverride": "ajourneyfurther-eye-2", + "lineInfo": { + "dialogue": "⒜⒩⒟ ⒯⒣⒠ ⒣⒠⒭⒪ ⒮⒣⒜⒧⒧ ⒝⒧⒤⒩⒟ ⒯⒣⒠ ⒜⒩⒞⒤⒠⒩⒯ ⒮⒠⒠⒭0 ⒢⒪⒪⒟ ⒧⒰⒞⒦0", + "line": { + "current": 20, + "max": 20 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "13": { + "dialogues": [ + { + "fileOverride": "ajourneyfurther-eye-3", + "lineInfo": { + "dialogue": "1/1theeye" + } + } + ], + "settings": { + "followPlayer": true + } + } + } + }, + "A Marauder's Dues": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "amaraudersdues-norsten-1", + "lineInfo": { + "dialogue": "You there! You think you can get past me without paying, darling? I didn't think so.", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Norsten" + } + }, + { + "fileOverride": "amaraudersdues-norsten-2", + "lineInfo": { + "dialogue": "You want to get to Thesead? That'll cost you everything you own. All of your emeralds, and your silly little armor and trinkets. All of it.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Norsten" + } + }, + { + "fileOverride": "amaraudersdues-peli-1", + "lineInfo": { + "dialogue": "Norsten? Finally! I've been looking all over for you. What are you doing here?", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Peli" + } + }, + { + "fileOverride": "amaraudersdues-norsten-3", + "lineInfo": { + "dialogue": "No idea who you are, but you better pay up. You used my gate without my permission! And ugh, your outfit, so drab!", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Norsten" + } + }, + { + "fileOverride": "amaraudersdues-peli-2", + "lineInfo": { + "dialogue": "Why are you talking like that? And what do you mean \"your gate\"? What's wrong with you?", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Peli" + } + }, + { + "fileOverride": "amaraudersdues-norsten-4", + "lineInfo": { + "dialogue": "This is MY gate, darling. Now, pay up, quickly! And don't even think about running.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Norsten" + } + }, + { + "fileOverride": "amaraudersdues-peli-3", + "lineInfo": { + "dialogue": "You there, small-nose. Don't you Wynn folks love helping out? Something's clearly wrong with my friend here.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Peli" + } + }, + { + "fileOverride": "amaraudersdues-peli-4", + "lineInfo": { + "dialogue": "He's normally nothing like this. He doesn't try to rob people, and he CERTAINLY doesn't talk like that crazy ol- Oh! I think I know what's happening.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Peli" + } + }, + { + "fileOverride": "amaraudersdues-peli-5", + "lineInfo": { + "dialogue": "See that tower up there? A crazy old wizard lives up there. I think he's mind controlling Norsten here.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Peli" + } + }, + { + "fileOverride": "amaraudersdues-norsten-5", + "lineInfo": { + "dialogue": "Mind control? Silly man. I would neve- Uh, I mean, he would never do that! He's just an innocent stylish old man!", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Norsten" + } + }, + { + "fileOverride": "amaraudersdues-peli-6", + "lineInfo": { + "dialogue": "See what I mean? There's a shortcut through the mountain over there. It'll take you straight to the path up to the wizard's tower.", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Peli" + } + }, + { + "fileOverride": "amaraudersdues-peli-7", + "lineInfo": { + "dialogue": "I don't care what you do with him, just make sure he lets Norsten go.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Peli" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "amaraudersdues-volmor-1", + "lineInfo": { + "dialogue": "Ha, you're so weak I can blow you away with a fabulous little air spell!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "3": { + "dialogues": [ + { + "fileOverride": "amaraudersdues-volmor-2", + "lineInfo": { + "dialogue": "Yoohoo! You there! Yes, you, with the silly soldier outfit. I see you!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "4": { + "dialogues": [ + { + "fileOverride": "amaraudersdues-volmor-3", + "lineInfo": { + "dialogue": "I can see you! You can't hide from little old me. Come no further or I shall be forced to act!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "5": { + "dialogues": [ + { + "fileOverride": "amaraudersdues-volmor-4", + "lineInfo": { + "dialogue": "Wait, where did you go?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "6": { + "dialogues": [ + { + "fileOverride": "amaraudersdues-volmor-5", + "lineInfo": { + "dialogue": "Aha, there you are! I know why you're here, and I promise it won't end well for you, darling!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "7": { + "dialogues": [ + { + "fileOverride": "amaraudersdues-volmor-6", + "lineInfo": { + "dialogue": "You think I didn't know about those caves? You silly old goose, I'll make you suffer!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + }, + { + "fileOverride": "amaraudersdues-volmor-7", + "lineInfo": { + "dialogue": "And now your little mind is mine, trapped in an illusion for all time! You'll go mad trying to figure out what is real and what is not, and your mind will shatter!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "8": { + "dialogues": [ + { + "fileOverride": "amaraudersdues-volmor-8", + "lineInfo": { + "dialogue": "OH, dearie me! Where did you come from? I thought I'd trapped you for good!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + }, + { + "fileOverride": "amaraudersdues-volmor-9", + "lineInfo": { + "dialogue": "I'll need a more permanent solution then, won't I? Oooh, how about this?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "9": { + "dialogues": [ + { + "fileOverride": "amaraudersdues-volmor-10", + "lineInfo": { + "dialogue": "GAH!", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Volmor" + } + }, + { + "fileOverride": "amaraudersdues-volmor-11", + "lineInfo": { + "dialogue": "Oh gosh, you're here! Where did I put my pink wand, I simply can't cast in black!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Volmor" + } + }, + { + "fileOverride": "amaraudersdues-volmor-12", + "lineInfo": { + "dialogue": "Well foof! I guess you've got me! Teehee!", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Volmor" + } + }, + { + "fileOverride": "amaraudersdues-volmor-13", + "lineInfo": { + "dialogue": "Ohh, I do hate it when people make me give up my toys. I'll let the silly little man go.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Volmor" + } + }, + { + "fileOverride": "amaraudersdues-volmor-14", + "lineInfo": { + "dialogue": "Tell you the truth, his style offended me anyway. Asking people to give him money wearing that?! Ugh, hideous.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Volmor" + } + }, + { + "fileOverride": "amaraudersdues-volmor-15", + "lineInfo": { + "dialogue": "Well, there's no need to raise your fists, darling. I'm not going to fight you like some common ogre! Hah!", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Volmor" + } + }, + { + "fileOverride": "amaraudersdues-volmor-16", + "lineInfo": { + "dialogue": "Here, let me get the gem. With it you can bring his free will right back to his old unfashionable self!", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Volmor" + } + }, + { + "fileOverride": "amaraudersdues-volmor-17", + "lineInfo": { + "dialogue": "Here...", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Volmor" + } + }, + { + "fileOverride": "amaraudersdues-volmor-18", + "lineInfo": { + "dialogue": "Whoopsies! Silly old Volmor! Too much magical moisturiser again. It just slipped right out of my fingers!", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Volmor" + } + }, + { + "fileOverride": "amaraudersdues-volmor-19", + "lineInfo": { + "dialogue": "Heehee! I guess you won't be saving him after all! It's not like you could jump in there, that's my trash! You'd get dirt all over your outfit!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Volmor" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "amaraudersdues-norsten-6", + "lineInfo": { + "dialogue": "Huh? You again?! How did you escape from my- wait, uh, I mean... You there! Give me everything you own!", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Norsten" + } + }, + { + "fileOverride": "amaraudersdues-peli-8", + "lineInfo": { + "dialogue": "Stop trying, you creepy old man! We all know it's not Norsten that's speaking. Anyway, human, that was quite an entrance! Did you find anything?", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Peli" + } + }, + { + "fileOverride": "amaraudersdues-norsten-7", + "lineInfo": { + "dialogue": "Wait, what's that? What are you doing with that gemstone? I- Agh!", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Norsten" + } + }, + { + "fileOverride": "amaraudersdues-norsten-8", + "lineInfo": { + "dialogue": "Ugh... Where am I...? Peli? What happened? I can't remember how I got here.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Norsten" + } + }, + { + "fileOverride": "amaraudersdues-peli-9", + "lineInfo": { + "dialogue": "Ah, Norsten, you're back! Finally. You won't believe it, but... You remember that crazy old wizard? He took over your body or something!", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Peli" + } + }, + { + "fileOverride": "amaraudersdues-norsten-9", + "lineInfo": { + "dialogue": "...What? What do you mean?", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Norsten" + } + }, + { + "fileOverride": "amaraudersdues-peli-10", + "lineInfo": { + "dialogue": "He took control of your body and used it to try to rob people! But, he still talked like his normal crazy self so it was immediately obvious.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Peli" + } + }, + { + "fileOverride": "amaraudersdues-peli-11", + "lineInfo": { + "dialogue": "And this human here saved you! They went right up to the wizard's tower, and then a bit later came flying back out with a gemstone!", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Peli" + } + }, + { + "fileOverride": "amaraudersdues-norsten-10", + "lineInfo": { + "dialogue": "I'm confused... But thank you, human. It sounds like you really saved me!", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Norsten" + } + }, + { + "fileOverride": "amaraudersdues-norsten-11", + "lineInfo": { + "dialogue": "Here, let me repay you. So that wizard tried to use me to rob people for money, right? But I guess he didn't think to check my pockets.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Norsten" + } + }, + { + "fileOverride": "amaraudersdues-peli-12", + "lineInfo": { + "dialogue": "Well, that's generous. Looks like a happy ending for everyone! Come on Norsten, let's get you home.", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Peli" + } + }, + { + "fileOverride": "amaraudersdues-norsten-12", + "lineInfo": { + "dialogue": "Just a second, my mind's still a bit fuzzy.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Norsten" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "amaraudersdues-norsten-13", + "lineInfo": { + "dialogue": "You again! You think I didn't recognize you? Your friend here used my gate, but refuses to pay. I'll forgive his debt, but only if you pay up now! as well?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Norsten" + } + }, + { + "fileOverride": "amaraudersdues-peli-13", + "lineInfo": { + "dialogue": "Again, as I already told you a hundred times, you can't just pick any random old gate and pretend it's yours!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Peli" + } + }, + { + "fileOverride": "amaraudersdues-peli-14", + "lineInfo": { + "dialogue": "Anyway, human, do you finally have some news? If not, I suggest you get back out there. Check your quest book if you've forgotten what to do", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Peli" + } + } + ] + } + } + }, + "A Sandy Scandal": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "asandyscandal-almujbankguard-1", + "lineInfo": { + "dialogue": "You look like a hardy one, Ragni army is it? Would you be willing to help Almuj a bit?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-2", + "lineInfo": { + "dialogue": "Us guards have been trying to root out desert bandits trying to rob the bank.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-3", + "lineInfo": { + "dialogue": "We're using reports from witnesses to try to gain information.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-4", + "lineInfo": { + "dialogue": "If I give you some of the witness reports, will you help get clues from them?", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-5", + "lineInfo": { + "dialogue": "Great! The store from the first witness report is straight down the stairs, just past this building here, just behind me.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-6", + "lineInfo": { + "dialogue": "The store that you should read the report in is named “Gibbs' Mining Supply Store,” and it's the store that was robbed.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-7", + "lineInfo": { + "dialogue": "I will write the coordinates to the store so you can read the report just in case you can't find it.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Almuj Bank Guard" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "asandyscandal-shopkeepergibbs-1", + "lineInfo": { + "dialogue": "Business was slow that day, until two rugged, oddly-dressed men stormed into my shop, with a lot of nerve." + } + }, + { + "fileOverride": "asandyscandal-shopkeepergibbs-2", + "lineInfo": { + "dialogue": "Hello gentlemen! What can I interest you in today? Some industrial torches? Pickaxes?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Shopkeeper Gibbs" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "asandyscandal-shopkeepergibbs-3", + "lineInfo": { + "dialogue": "Before I could close any deal with them, the man with a dagger started threatening me!" + } + }, + { + "fileOverride": "asandyscandal-bandit-1", + "lineInfo": { + "dialogue": "Shut yer' trap, old man. We came for a different kind of business.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Bandit" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "asandyscandal-shopkeepergibbs-4", + "lineInfo": { + "dialogue": "I tried to make peace with the crooks." + } + }, + { + "fileOverride": "asandyscandal-shopkeepergibbs-5", + "lineInfo": { + "dialogue": "Wha-? Look, fellows. Just step out of my store, and nobody gets hurt. I don't want any trouble.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Shopkeeper Gibbs" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "asandyscandal-shopkeepergibbs-6", + "lineInfo": { + "dialogue": "The bandit put the knife closer to me and started demanding the code to the TNT vault downstairs!" + } + }, + { + "fileOverride": "asandyscandal-bandit-2", + "lineInfo": { + "dialogue": "Listen up old man, tell us the code to the TNT vault in the basement, or I decorate my necklace with your fingers!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Bandit" + } + }, + { + "fileOverride": "asandyscandal-shopkeepergibbs-7", + "lineInfo": { + "dialogue": "Certainly not! That TNT is for licensed mining companies only, not your average amateur miner.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Shopkeeper Gibbs" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "asandyscandal-shopkeepergibbs-8", + "lineInfo": { + "dialogue": "The bandits grew agitated and resorted to violence to obtain the combination." + } + }, + { + "fileOverride": "asandyscandal-bandit-3", + "lineInfo": { + "dialogue": "Well then! I guess you'll still be able to grasp a pick with four fingers, eh?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Bandit" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "asandyscandal-shopkeepergibbs-9", + "lineInfo": { + "dialogue": "They swiped their knife at me, leaving a sizeable wound on my arm." + } + }, + { + "fileOverride": "asandyscandal-shopkeepergibbs-10", + "lineInfo": { + "dialogue": "Gaaah! Alright, alright! No more violence, please!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Shopkeeper Gibbs" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "asandyscandal-shopkeepergibbs-11", + "lineInfo": { + "dialogue": "I had no choice but to give up the combination, which was 7812." + } + }, + { + "fileOverride": "asandyscandal-shopkeepergibbs-12", + "lineInfo": { + "dialogue": "The code is 7-8-1-2... please don't hurt me!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Shopkeeper Gibbs" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "asandyscandal-shopkeepergibbs-13", + "lineInfo": { + "dialogue": "After I gave up the combination, they knocked me out!" + } + }, + { + "fileOverride": "asandyscandal-bandit-4", + "lineInfo": { + "dialogue": "7-8-1-2... thanks! We won’t be needing you anymore... now go to sleep!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Bandit" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "asandyscandal-shopkeepergibbs-14", + "lineInfo": { + "dialogue": "I had no idea what the criminals did after that, I never went back into my shop after the incident." + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-8", + "lineInfo": { + "dialogue": "You're back, having read the report I assume. Did you find anything in particular?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-9", + "lineInfo": { + "dialogue": "Missing TNT in the shop's vault? The report was truthful and trustworthy.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-10", + "lineInfo": { + "dialogue": "We need to catch these criminals quickly if they have access to this dangerous amount of TNT, capable of putting a hole in the bank's wall.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-11", + "lineInfo": { + "dialogue": "Luckily, we recently had another witness report come in.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-12", + "lineInfo": { + "dialogue": "This report takes place on the roof of the Scroll Merchant's residence, a garden roof.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-13", + "lineInfo": { + "dialogue": "I've written the coordinates to the shop in your content book in case you don't know where the Scroll Merchant is.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Almuj Bank Guard" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "asandyscandal-scrollmerchant-1", + "lineInfo": { + "dialogue": "I was having a fine time tending to my rooftop garden after a lengthy day of selling scrolls." + } + }, + { + "fileOverride": "asandyscandal-scrollmerchant-2", + "lineInfo": { + "dialogue": "While looking down on the street, I saw two unsavory men, one with TNT in hand, marching down the path." + } + }, + { + "fileOverride": "asandyscandal-scrollmerchant-3", + "lineInfo": { + "dialogue": "I was suspicious, so I tried to get their attention, but they ignored me." + } + }, + { + "fileOverride": "asandyscandal-scrollmerchant-4", + "lineInfo": { + "dialogue": "Ey', what do you two blighters think you're doing with those dangerous explosives in the city?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Scroll Merchant" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "asandyscandal-scrollmerchant-5", + "lineInfo": { + "dialogue": "I then realized that had no innocent itinerary, they were heading straight for my wealthy neighbor's house!" + } + }, + { + "fileOverride": "asandyscandal-scrollmerchant-6", + "lineInfo": { + "dialogue": "I tried to yell for the attention of a guard or official, but nobody could hear me." + } + }, + { + "fileOverride": "asandyscandal-scrollmerchant-7", + "lineInfo": { + "dialogue": "Guards! Guards! Robber! Come quick! Urgently!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Scroll Merchant" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "asandyscandal-scrollmerchant-8", + "lineInfo": { + "dialogue": "Before anybody could hear me, a large explosion occurred inside of the house the bandits intruded." + } + }, + { + "fileOverride": "asandyscandal-scrollmerchant-9", + "lineInfo": { + "dialogue": "Gaaah!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Scroll Merchant" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "asandyscandal-scrollmerchant-10", + "lineInfo": { + "dialogue": "two of his weapons.", + "npc": "The bandits came sprinting out of my wealthy neighbor's house with two of his most prized possessions" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-14", + "lineInfo": { + "dialogue": "Were you able to uncover any new information regarding the status of the criminals?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-15", + "lineInfo": { + "dialogue": "Oh dear, this isn't good. The criminals plundered two very powerful weapons.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-16", + "lineInfo": { + "dialogue": "It won't be easy facing those criminals if they decide to raid the bank with those weapons.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-17", + "lineInfo": { + "dialogue": "I'm not certain how to proceed from here, we didn't receive any more witness reports, and-", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujsentry-1", + "lineInfo": { + "dialogue": "Boss, I just received urgent reports of a robbery underway in the left residential area of Almuj!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Almuj Sentry" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-18", + "lineInfo": { + "dialogue": "Oh my... you! Soldier! Urgently! The robbery is taking place across the bridge, next to the first house you visited today!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-19", + "lineInfo": { + "dialogue": "There will be somebody waiting for you outside of the house once you get to the residential area!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-20", + "lineInfo": { + "dialogue": "If you still can't find it, I've written the coordinates in your content book. Now quickly, get to the house!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Almuj Bank Guard" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "asandyscandal-almujcitizen-1", + "lineInfo": { + "dialogue": "Hello? Are you with the guards? Good! Hurry! Some bandits just ransacked my house, and left with lots of emeralds!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Almuj Citizen" + } + }, + { + "fileOverride": "asandyscandal-almujcitizen-2", + "lineInfo": { + "dialogue": "Follow me to my house, hopefully you can find the bandits! They stole lots of my precious gold!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Almuj Citizen" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "asandyscandal-banditleader-1", + "lineInfo": { + "dialogue": "Here-- maybe you'll help us pull the heist if I give you some of this gold we just stole.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Bandit Leader" + } + }, + { + "fileOverride": "asandyscandal-banditleader-2", + "lineInfo": { + "dialogue": "Ahah. I had a feeling we had a guard on our tail.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Bandit Leader" + } + }, + { + "fileOverride": "asandyscandal-banditleader-3", + "lineInfo": { + "dialogue": "I wouldn’t want to wear out my new-stolen weapons killing you... I'll just trap you in here with all of this TNT!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Bandit Leader" + } + }, + { + "fileOverride": "asandyscandal-banditleader-4", + "lineInfo": { + "dialogue": "This'll blow up in a few seconds. Good luck getting out of here!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Bandit Leader" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "asandyscandal-banditleader-5", + "lineInfo": { + "dialogue": "It's too late to stop us now! We’re already about to bust out of here with a grand prize sure to gain us province-wide respect!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bandit Leader" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "asandyscandal-banditleader-6", + "lineInfo": { + "dialogue": "Look here, the soldier decided they wanted to follow us. Dumb move.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Bandit Leader" + } + }, + { + "fileOverride": "asandyscandal-banditleader-7", + "lineInfo": { + "dialogue": "escaping the bank, and killing this pest.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Bandit Leader: I guess we can kill two birds with one stone" + } + }, + { + "fileOverride": "asandyscandal-banditleader-8", + "lineInfo": { + "dialogue": "Block the entrance, bandits!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Bandit Leader" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "asandyscandal-banditleader-9", + "lineInfo": { + "dialogue": "Oh no... we've run out of TNT! We were in over our heads... We can't defeat them, just run for your life! Forget the emeralds, let’s get outta’ here!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bandit Leader" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "asandyscandal-almujbankguard-21", + "lineInfo": { + "dialogue": "What happened down there underneath the bank? I heard the rumble.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-22", + "lineInfo": { + "dialogue": "You stopped the crooks? Amazing!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-23", + "lineInfo": { + "dialogue": "The Almuj bank is typically reserved for trusted members only; however, you have proven yourself today to be one of them.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Almuj Bank Guard" + } + }, + { + "fileOverride": "asandyscandal-almujbankguard-24", + "lineInfo": { + "dialogue": "Thank you for your service!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Almuj Bank Guard" + } + } + ] + } + } + }, + "Acquiring Credentials": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-officer-1", + "lineInfo": { + "dialogue": "I'm sorry sir, but I can't just give you a new passport... You'd need approval from-...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Officer" + } + }, + { + "fileOverride": "acquiringcredentials-doan-1", + "lineInfo": { + "dialogue": "But sir, my passport was stolen! I have a flight to Detlas in under 30 minutes. I really need one, quick... ", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-officer-2", + "lineInfo": { + "dialogue": "I've already told you where you need to go to get a new one. Next in line, please!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Officer" + } + }, + { + "fileOverride": "acquiringcredentials-officer-3", + "lineInfo": { + "dialogue": "Hmmm... soldier, is it? Unfortunately, humans are required to get their passports in Wynn.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Officer" + } + }, + { + "fileOverride": "acquiringcredentials-officer-4", + "lineInfo": { + "dialogue": "I'm afraid I can't help you. Next in line, please!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Officer" + } + }, + { + "fileOverride": "acquiringcredentials-doan-2", + "lineInfo": { + "dialogue": "Hey, you! Yes, you! Come outside, would you? I think we can help each other. ", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Doan" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-doan-3", + "lineInfo": { + "dialogue": "So, I overheard your conversation with the Officer... You're also looking for a passport, right?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Doan" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-kid-1", + "lineInfo": { + "dialogue": "Where are we going, dad?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Kid" + } + }, + { + "fileOverride": "acquiringcredentials-father-1", + "lineInfo": { + "dialogue": "We'll stay at the Blackbird Inn for a while.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Father" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-doan-4", + "lineInfo": { + "dialogue": "Oh, you brought us to the Inn! Hmmm, the Barman's been working here for a long time...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-doan-5", + "lineInfo": { + "dialogue": "Maybe he knows something about the Black Market! I'll try and ask, y'know...all, uh...sneaky-like.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-doan-6", + "lineInfo": { + "dialogue": "Excuse me, sir... You, uh...wouldn't happen to know any really cheap stores around here, would you?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-barman-1", + "lineInfo": { + "dialogue": "The table's been set for the great feast, have stout or beer, what will it be?", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Barman" + } + }, + { + "fileOverride": "acquiringcredentials-doan-7", + "lineInfo": { + "dialogue": "Is that a secret code...? Beer?", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-doan-8", + "lineInfo": { + "dialogue": "Did that work? Is he gonna let us in?", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-doan-9", + "lineInfo": { + "dialogue": "I guess it wouldn't be that easy to find a way in... Where do you think we can go with that lead, soldier?", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-doan-10", + "lineInfo": { + "dialogue": "Let's just keep exploring. Lead the way.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Doan" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-doan-11", + "lineInfo": { + "dialogue": "The restaurant... That makes sense!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-doan-12", + "lineInfo": { + "dialogue": "Hey, uh...do these people look suspicious to you, too?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Doan" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-waiter-1", + "lineInfo": { + "dialogue": "The airship commanders love what they hate.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Waiter" + } + }, + { + "fileOverride": "acquiringcredentials-doan-13", + "lineInfo": { + "dialogue": "I think we're getting onto something! Let's keep going.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Doan" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-doan-14", + "lineInfo": { + "dialogue": "Hmmm... These crates are full of items. Maybe we could give some of them to the commanders?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Doan" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-commander-1", + "lineInfo": { + "dialogue": "I wish my airship was black, I can't say I'm a fan of that white palette...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Commander" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-commander-2", + "lineInfo": { + "dialogue": "You know, maybe white isn't so bad after all.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Commander" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-commander-3", + "lineInfo": { + "dialogue": "All those other airship men carry around those vile face fruits, but I have to say, I've always had a soft spot for potatoes.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Commander" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-commander-4", + "lineInfo": { + "dialogue": "Though, really, the face doesn't mean it has to be evil, does it? It could be a nice face, after all. ", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Commander" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-commander-5", + "lineInfo": { + "dialogue": "I can't believe this place! They only have some rancid wheat stored here, what am I supposed to do with that? I'll take a carrot anyday over... wheat.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Commander" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-commander-6", + "lineInfo": { + "dialogue": "... Oh, fine, wheat's not bad. I'll take some, I guess.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Commander" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-commander-7", + "lineInfo": { + "dialogue": "Once torn, forever broken beyond repair.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Commander" + } + }, + { + "fileOverride": "acquiringcredentials-doan-15", + "lineInfo": { + "dialogue": "Oh, let's keep going! Where can we go with that lead?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Doan" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-doan-16", + "lineInfo": { + "dialogue": "Who's that on top of that platform?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Doan" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-mechanic-1", + "lineInfo": { + "dialogue": "The two of you have come real far for this, huh?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-2", + "lineInfo": { + "dialogue": "Well, I can give you the answer to the stout and beer question! But you won't enter the Market just with that.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-3", + "lineInfo": { + "dialogue": "You see, to enter the Market you'll need something to sell! And it won't be something you can exactly buy around here, if you get what I mean. ", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-doan-17", + "lineInfo": { + "dialogue": "We need something... illegal, right?", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-4", + "lineInfo": { + "dialogue": "Exactly! Luckily for you, I'm in a good mood. There's an airship docked close by. We'll be able to take it and I can help you get an item! ", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-doan-18", + "lineInfo": { + "dialogue": "Uh... What do you think, soldier? I really need that passport, and well...you could get something out of this too, right?", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-doan-19", + "lineInfo": { + "dialogue": "... Fine, we'll do it.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-5", + "lineInfo": { + "dialogue": "Great! Follow me, it's not far.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Mechanic" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-mechanic-6", + "lineInfo": { + "dialogue": "Wait! There are guards protecting the airship. Don't let them see you!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-7", + "lineInfo": { + "dialogue": "They're near the edge... Push them off.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Mechanic" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-doan-20", + "lineInfo": { + "dialogue": "Uhh... I'm sure they're fine, I'm sure that fall wasn’t too big...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-8", + "lineInfo": { + "dialogue": "Well, that's your only way inside! There are more guards up ahead. Take care of them without being seen, and we'll be in the clear!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Mechanic" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-mechanic-9", + "lineInfo": { + "dialogue": "Well done! Let's get on the airship.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-doan-21", + "lineInfo": { + "dialogue": "Did you just... Push them all...?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-10", + "lineInfo": { + "dialogue": "Buckle up! We're heading to the Sky Islands, there we'll be able to collect some dragonling eggs for you to sell at the Black Market!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Mechanic" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-mechanic-11", + "lineInfo": { + "dialogue": "The island we're heading to is home to a Dragonling nest! They use it to lay their eggs, as it's quite a difficult place to access.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-doan-22", + "lineInfo": { + "dialogue": "And those'll be worth a lot in the Black Market, right...?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-12", + "lineInfo": { + "dialogue": "They sure will! Dragonling eggs are rare, and this island can only be accessed by airship... They're worth a fortune back at Letvus. ", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-13", + "lineInfo": { + "dialogue": "Oh, there it is! I can see the island from here, buckle up. We've got some eggs to steal!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Mechanic" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-doan-23", + "lineInfo": { + "dialogue": "What's that?! Oh... It looks like we've got company...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Doan" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "22": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-mechanic-14", + "lineInfo": { + "dialogue": "Drat, the skyraiders are here! We can't let them get away with those eggs...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-15", + "lineInfo": { + "dialogue": "Well, if that's the case, then there's only one thing to do! Come on, follow me!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Mechanic" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-mechanic-16", + "lineInfo": { + "dialogue": "We can't get to the nest with so many pirates on the way, kill them!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mechanic" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-mechanic-17", + "lineInfo": { + "dialogue": "Alright, follow me! Let's go harvest that egg!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-18", + "lineInfo": { + "dialogue": "Protect me while I harvest the egg, soldier!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-19", + "lineInfo": { + "dialogue": "We're halfway there, just keep defending me!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-20", + "lineInfo": { + "dialogue": "There we go! Let's get back to the airship, run!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Mechanic" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-skyraider-1", + "lineInfo": { + "dialogue": "Don't let them get away! Fire the cannons!!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Skyraider" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-21", + "lineInfo": { + "dialogue": "Soldier, don't let them hit us! Attack the cannonballs using your weapon before they hit our airship to deflect them! ", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Mechanic" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-skyraider-2", + "lineInfo": { + "dialogue": "We can't take more cannon shots... We're wasting our time, let's get going! We got bigger fish to fry!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Skyraider" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-22", + "lineInfo": { + "dialogue": "That was close... Well then, let's head back to the airbase!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Mechanic" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-mechanic-23", + "lineInfo": { + "dialogue": "The two of you have certainly proven yourselves today!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-24", + "lineInfo": { + "dialogue": "So, I'll give you the password to enter the Black Market.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-25", + "lineInfo": { + "dialogue": "Go back to the Barman at the Inn and tell him 'I'm not thirsty, I always carry a bottle.' ", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-mechanic-26", + "lineInfo": { + "dialogue": "That might just give you the chance you need to get in. Good luck!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Mechanic" + } + }, + { + "fileOverride": "acquiringcredentials-doan-24", + "lineInfo": { + "dialogue": "Thank you for your help, sir... Let's go back to the bar, then.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Doan" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-doan-25", + "lineInfo": { + "dialogue": "Here we are again. Let's talk to the Barman.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-doan-26", + "lineInfo": { + "dialogue": "Um, sir? I'm not thirsty, I always carry a bottle.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-barman-2", + "lineInfo": { + "dialogue": "Talk only to the Black Market member in the end of the hallway and do not talk to anyone else.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Barman" + } + }, + { + "fileOverride": "acquiringcredentials-doan-27", + "lineInfo": { + "dialogue": "Let's go, soldier.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Doan" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-marketmember-1", + "lineInfo": { + "dialogue": "I've heard you've stolen some eggs from the Skyraiders. That's a bold move!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Market Member" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-doan-28", + "lineInfo": { + "dialogue": "That's what we need, soldier. Sold! The egg is yours.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Doan" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-doan-29", + "lineInfo": { + "dialogue": "Let's get our passports, soldier!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Doan" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-marketmember-2", + "lineInfo": { + "dialogue": "So do you have the emeralds?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Market Member" + } + }, + { + "fileOverride": "acquiringcredentials-marketmember-3", + "lineInfo": { + "dialogue": "Hmm... This will do it. Here, your passports.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Market Member" + } + }, + { + "fileOverride": "acquiringcredentials-doan-30", + "lineInfo": { + "dialogue": "Uhh.. Soldier, I think you dropped your passport. Let me get it for yo-...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-doan-31", + "lineInfo": { + "dialogue": "Wait... That's MY passport?! It was in my pocket all along...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-doan-32", + "lineInfo": { + "dialogue": "Well, uhhh... I guess you can have some of these emeralds, then... ", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Doan" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-doan-33", + "lineInfo": { + "dialogue": "...Uh, soldier? I don't think we should leave this area yet, those must be the commanders the waiter mentioned over there.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Doan" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-doan-34", + "lineInfo": { + "dialogue": "Remember what the passport seller said? We shouldn't always talk to the same merchant... I think this one won't like another price raise. We should talk to the others.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Doan" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-doan-35", + "lineInfo": { + "dialogue": "We have to get to 2000 emeralds in 5 bid increases. Let's try again!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Doan" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "acquiringcredentials-doan-36", + "lineInfo": { + "dialogue": "So that's our intial bid. Now we need to ask for a higher bid, remember? We can't always talk to the same merchant or they'll lose interest...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Doan" + } + }, + { + "fileOverride": "acquiringcredentials-doan-37", + "lineInfo": { + "dialogue": "And we can't talk to more than 5 people for a raise or they might get angry.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Doan" + } + } + ] + } + } + }, + "Aldorei's Secret Part I": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart1-elfguard-1", + "lineInfo": { + "dialogue": "Halt, traveler! Entry to Aldorei Town is forbidden at present.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Elf Guard" + } + }, + { + "fileOverride": "aldoreissecretpart1-elfguard-2", + "lineInfo": { + "dialogue": "There is a dangerous criminal on the loose in this valley.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elf Guard" + } + }, + { + "fileOverride": "aldoreissecretpart1-elfguard-3", + "lineInfo": { + "dialogue": "These doors shall remain closed until the criminal is captured.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Elf Guard" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart1-damys-1", + "lineInfo": { + "dialogue": "An outsider in our midst? Exciting to see. I have wished to share our magic with new people for a long while.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Damys" + } + }, + { + "fileOverride": "aldoreissecretpart1-damys-2", + "lineInfo": { + "dialogue": "However, I am...well, rather hungry. And I must tend to my garden here for the time being.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Damys" + } + }, + { + "fileOverride": "aldoreissecretpart1-damys-3", + "lineInfo": { + "dialogue": "Have you heard the saying \"\"You scratch my ears, I scratch yours\"\"? People must help one another.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Damys" + } + }, + { + "fileOverride": "aldoreissecretpart1-damys-4", + "lineInfo": { + "dialogue": "If you would be so kind as to bring me a loaf of fresh bread you may take my enchanted bucket.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Damys" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart1-vaenr-1", + "lineInfo": { + "dialogue": "This is utterly inane. A full lockdown, over a petty theft... Are we not to help one another? To thieve is unnecessary.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Vaenr" + } + }, + { + "fileOverride": "aldoreissecretpart1-sylvar-1", + "lineInfo": { + "dialogue": "The thieving is not the reason, from what I have heard. It is that the grove was jealously hidden due to the potency of the plants there.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Sylvar" + } + }, + { + "fileOverride": "aldoreissecretpart1-sylvar-2", + "lineInfo": { + "dialogue": "Tattytale, Iridesca, Subtraxerim... The Light only knows what else. It is impossible to reach without unusual means- And that is cause for grave concern.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Sylvar" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart1-damys-5", + "lineInfo": { + "dialogue": "I saw you toil to bake this yourself. Frankly, that is above and beyond what I expected, so here is your exchange.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Damys" + } + }, + { + "fileOverride": "aldoreissecretpart1-damys-6", + "lineInfo": { + "dialogue": "If you require help in the future with anything, do not be afraid to ask. If you put such effort for me, I shall give you the same.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Damys" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart1-guard-1", + "lineInfo": { + "dialogue": "Halt! This area is strictly off limits, especially for an outsider. Turn back now!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Guard" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart1-damys-7", + "lineInfo": { + "dialogue": "Aha, the outsider returns. Is there something troubling you?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Damys" + } + }, + { + "fileOverride": "aldoreissecretpart1-damys-8", + "lineInfo": { + "dialogue": "...mmm. Unfortunate, that. I cannot help with this.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Damys" + } + }, + { + "fileOverride": "aldoreissecretpart1-damys-9", + "lineInfo": { + "dialogue": "It is not a matter of secrecy or morals- I simply do not know what that leaf is from or what it may be capable of.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Damys" + } + }, + { + "fileOverride": "aldoreissecretpart1-damys-10", + "lineInfo": { + "dialogue": "I am no botanist- Simply a gardener. The mistake is understandable, if regrettable.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Damys" + } + }, + { + "fileOverride": "aldoreissecretpart1-damys-11", + "lineInfo": { + "dialogue": "However, I was taught under a much more storied botanist who may have the answers you seek.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Damys" + } + }, + { + "fileOverride": "aldoreissecretpart1-damys-12", + "lineInfo": { + "dialogue": "Her name is Fiona- Her home is across the valley from here. Take the bridge across. She often stays inside studying.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Damys" + } + }, + { + "fileOverride": "aldoreissecretpart1-damys-13", + "lineInfo": { + "dialogue": "She has forgotten more than I will ever hope to know about plants. If she cannot help you, I fear none can.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Damys" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart1-fiona-1", + "lineInfo": { + "dialogue": "This is outrageous! To think one of our own would stoop to such thievery and destruction!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Fiona" + } + }, + { + "fileOverride": "aldoreissecretpart1-fiona-2", + "lineInfo": { + "dialogue": "Outsider, this is not the time to be asking me anything. My home has been ransacked!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Fiona" + } + }, + { + "fileOverride": "aldoreissecretpart1-fiona-3", + "lineInfo": { + "dialogue": "Mm? Damys sent you... You have leaves of Iridesca? Hm... Then perhaps we may be able to help one another.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Fiona" + } + }, + { + "fileOverride": "aldoreissecretpart1-fiona-4", + "lineInfo": { + "dialogue": "They tore through my shelves and furniture searching, and scanned the pages as fervently once they found it.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Fiona" + } + }, + { + "fileOverride": "aldoreissecretpart1-fiona-5", + "lineInfo": { + "dialogue": "I assume when the desired information was found, they went into my garden, threw the book into the carnivorous plant and stormed off towards the lab.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Fiona" + } + }, + { + "fileOverride": "aldoreissecretpart1-fiona-6", + "lineInfo": { + "dialogue": "I have researched the Iridesca bloom, and many other plants, for a long time. All my knowledge is stored in that book!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Fiona" + } + }, + { + "fileOverride": "aldoreissecretpart1-fiona-7", + "lineInfo": { + "dialogue": "Retrieve it for me, and I will share my knowledge with you.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Fiona" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart1-fiona-8", + "lineInfo": { + "dialogue": "...disgusting. I will have to hang the pages to dry later, but first, our exchange.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Fiona" + } + }, + { + "fileOverride": "aldoreissecretpart1-fiona-9", + "lineInfo": { + "dialogue": "Hmm... Herbstzeitlose... Death Whistle, no...where is Iridesca, again...?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Fiona" + } + }, + { + "fileOverride": "aldoreissecretpart1-fiona-10", + "lineInfo": { + "dialogue": "Aha, there it is. The pages were sticking together. Iridesca leaves are potent in various ways and are very versatile in their use.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Fiona" + } + }, + { + "fileOverride": "aldoreissecretpart1-fiona-11", + "lineInfo": { + "dialogue": "They have an incredibly broad range of usage, from soothing joint pain or curing sickness to emetic effect and lethal poison, depending on what it is brewed with.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Fiona" + } + }, + { + "fileOverride": "aldoreissecretpart1-fiona-12", + "lineInfo": { + "dialogue": "Mm? The book thief also possesses Iridesca...? This... This is very troubling. There are few notes aside from mine on how to heal Iridesca poisoning.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Fiona" + } + }, + { + "fileOverride": "aldoreissecretpart1-fiona-13", + "lineInfo": { + "dialogue": "They were headed in the direction of the potionmaker's guild. If they intend something wicked...", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Fiona" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart1-korben-1", + "lineInfo": { + "dialogue": "..you! You have been seeking me! I have seen you tracing my footsteps...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Criminal" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-2", + "lineInfo": { + "dialogue": "I apologize for this... But what I do is a necessity!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Criminal" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-3", + "lineInfo": { + "dialogue": "I beg you, do not pursue me any further!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Criminal" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart1-korben-4", + "lineInfo": { + "dialogue": "Outsider, I realize the circumstances appear damning, but you must stop!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Criminal" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-5", + "lineInfo": { + "dialogue": "What I have done is needed, and if there were another path I would have taken it over this.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Criminal" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-6", + "lineInfo": { + "dialogue": "I must take my concoction to where it is needed!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Criminal" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-7", + "lineInfo": { + "dialogue": "See me as I truly am- My name is Korben, and I musn't be delayed further!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Criminal" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart1-korben-8", + "lineInfo": { + "dialogue": "ⓖ ⓡ ⓞ ⓦ !", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Korben" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart1-korben-9", + "lineInfo": { + "dialogue": "A damnable pace you have... I cannot let you stop me for a moment longer!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Korben" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-10", + "lineInfo": { + "dialogue": "It will be done soon, but I must reach my destination first!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Korben" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart1-korben-11", + "lineInfo": { + "dialogue": "Finally... I apologize for the delay. I needed to take strong measures to get this to you.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Korben" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-12", + "lineInfo": { + "dialogue": "Here, here... Drink, father. It will clear your throat.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Korben" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-13", + "lineInfo": { + "dialogue": "...there. It is done. Now... Outsider... Hear me, please.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Korben" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-14", + "lineInfo": { + "dialogue": "I am aware of exactly what I have done. Shredded Fiona's research, disturbed the forbidden gardens, unsettled the hearts of many...", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Korben" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-15", + "lineInfo": { + "dialogue": "My father fell ill. A trek to Efilim's borders left him stricken with Kerasot poisoning. He was near death...", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Korben" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-16", + "lineInfo": { + "dialogue": "Efilim's village is one of outcasts- to visit is, stupidly, forbidden. He would have been exiled, and that would have ensured his death with his affliction.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Korben" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-17", + "lineInfo": { + "dialogue": "Desperation causes one to do strange things. I thought only of his safety- I cared little about anything else.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Korben" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-18", + "lineInfo": { + "dialogue": "Even now I am simply relieved for his safety. If you must turn me in, I understand- I have already done what I set out to do.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Korben" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-19", + "lineInfo": { + "dialogue": "Though I wish to remain free, whether you choose to report my activities or not does not matter to me now.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Korben" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart1-korben-20", + "lineInfo": { + "dialogue": "...you... You are... You would lie to the guards and say I perished in the chase? You will keep my identity secret?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Korben" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-21", + "lineInfo": { + "dialogue": "Outsider... You show generosity akin to my father. He passed his Sol Medallion onto me to continue his legacy...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Korben" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-22", + "lineInfo": { + "dialogue": "...after what I have done, I do not deserve it. You take it, instead. It is in sufficiently worthy hands, I believe.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Korben" + } + }, + { + "fileOverride": "aldoreissecretpart1-korben-23", + "lineInfo": { + "dialogue": "I shall beg the Light to shine upon you for the rest of your days. A thousand thanks to you.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Korben" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart1-elfguard-4", + "lineInfo": { + "dialogue": "Traveler, I must remind you- The doors shall remain shut until the criminal has been found.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Elf Guard" + } + }, + { + "fileOverride": "aldoreissecretpart1-elfguard-5", + "lineInfo": { + "dialogue": "...ah. You have found him, then. The name is Korben... Understood. We shall interrogate him for his actions.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elf Guard" + } + }, + { + "fileOverride": "aldoreissecretpart1-elfguard-6", + "lineInfo": { + "dialogue": "This being the case... You may come and go as you wish to Aldorei Town. We shall re-open the doors.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Elf Guard" + } + } + ] + } + } + }, + "Aldorei's Secret Part II": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-1", + "lineInfo": { + "dialogue": "Hey! You!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-2", + "lineInfo": { + "dialogue": "I know who you are, soldier. Do you know who I am?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-3", + "lineInfo": { + "dialogue": "Yeah why would you, haha!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-4", + "lineInfo": { + "dialogue": "Enough playing around, I need your assistance. You see... there is something fishy going on behind these doors.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-5", + "lineInfo": { + "dialogue": "Have you ever heard the saying ´´Elves never die´´- well it's true, or so I thought.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-6", + "lineInfo": { + "dialogue": "Let me explain, follow me!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Olon" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-7", + "lineInfo": { + "dialogue": "You see, my family and a few other elves left Aldorei a long time ago to start a new life in Efilim.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-8", + "lineInfo": { + "dialogue": "I've always heard since I was young that Elves cannot die from old age. Well... recently, my parents both died.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-9", + "lineInfo": { + "dialogue": "More and more elves around Efilim have died- but none in Aldorei. I believe something bizarre is going on here.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-10", + "lineInfo": { + "dialogue": "Please, soldier- I really need your help. Us Efilim elves aren't exactly welcome with open arms in Aldorei. It's a surprise they even let us in at all.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-11", + "lineInfo": { + "dialogue": "Could you try asking around, see if these elves know anything about this?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-12", + "lineInfo": { + "dialogue": "I will wait up here. Return to me if you find out any valuable information.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Olon" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-13", + "lineInfo": { + "dialogue": "Ask the citizens if they know anything about what's going on.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-14", + "lineInfo": { + "dialogue": "I'll wait up here for you.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Olon" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-15", + "lineInfo": { + "dialogue": "Welcome to Aldorei Town. Home of the elves.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-sol-1", + "lineInfo": { + "dialogue": "Oh its you. I can't believe we let a human into this place.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Sol" + } + }, + { + "fileOverride": "aldoreissecretpart2-sol-2", + "lineInfo": { + "dialogue": "So what do you want?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Sol" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-sol-3", + "lineInfo": { + "dialogue": "GAH.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Sol" + } + }, + { + "fileOverride": "aldoreissecretpart2-sol-4", + "lineInfo": { + "dialogue": "You dare speak to me like that?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Sol" + } + }, + { + "fileOverride": "aldoreissecretpart2-sol-5", + "lineInfo": { + "dialogue": "I will get you deported if it's the last thing I do, mark my words!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Sol" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-sol-6", + "lineInfo": { + "dialogue": "Pfft. No way I'm telling you any secret information about Aldorei.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Sol" + } + }, + { + "fileOverride": "aldoreissecretpart2-sol-7", + "lineInfo": { + "dialogue": "Elves may die, elves may not- I don't know!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Sol" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-sol-8", + "lineInfo": { + "dialogue": "Thats me! Sol the Smart, Sol the Cleaver, Sol the Best- I go by many names.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Sol" + } + }, + { + "fileOverride": "aldoreissecretpart2-sol-9", + "lineInfo": { + "dialogue": "So what is it you need?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Sol" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-sol-10", + "lineInfo": { + "dialogue": "So what are you wondering?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sol" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-sol-11", + "lineInfo": { + "dialogue": "Farewell, make sure to let everybody know that I'm the smartest!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sol" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-sol-12", + "lineInfo": { + "dialogue": "Oh- yes that is peculiar isn't it?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Sol" + } + }, + { + "fileOverride": "aldoreissecretpart2-sol-13", + "lineInfo": { + "dialogue": "If you don't mind me asking... is your friend from Aldorei?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Sol" + } + }, + { + "fileOverride": "aldoreissecretpart2-sol-14", + "lineInfo": { + "dialogue": "It seems like my theory is true, Efilim elves are dying.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Sol" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-sol-15", + "lineInfo": { + "dialogue": "Anything else?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sol" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-sol-16", + "lineInfo": { + "dialogue": "Hmm- I'm sorry but I can't talk about that too much.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Sol" + } + }, + { + "fileOverride": "aldoreissecretpart2-sol-17", + "lineInfo": { + "dialogue": "I would love to spoil you with my knowledge but... the grass has ears here in Aldorei.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Sol" + } + }, + { + "fileOverride": "aldoreissecretpart2-sol-18", + "lineInfo": { + "dialogue": "Though I will tell you this, Elves used to die from old age around 1000 years ago.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Sol" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-sol-19", + "lineInfo": { + "dialogue": "I hope my knowledge was of assistance.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sol" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-mona-1", + "lineInfo": { + "dialogue": "Good day.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Mona" + } + }, + { + "fileOverride": "aldoreissecretpart2-mona-2", + "lineInfo": { + "dialogue": "I've heard of you and what happened in the Valley.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Mona" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-mona-3", + "lineInfo": { + "dialogue": "Oh... yeah, good job.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Mona" + } + }, + { + "fileOverride": "aldoreissecretpart2-mona-4", + "lineInfo": { + "dialogue": "Enjoy Aldorei now.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Mona" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-mona-5", + "lineInfo": { + "dialogue": "How come you are so curious?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mona" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-mona-6", + "lineInfo": { + "dialogue": "Goodbye.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mona" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-mona-7", + "lineInfo": { + "dialogue": "Oh my.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Mona" + } + }, + { + "fileOverride": "aldoreissecretpart2-mona-8", + "lineInfo": { + "dialogue": "Your attitude is really starting to annoy me, young traveler.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Mona" + } + }, + { + "fileOverride": "aldoreissecretpart2-mona-9", + "lineInfo": { + "dialogue": "I don't care if you've defeated all the monsters in the world, never ask a woman like me of her age.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Mona" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-mona-10", + "lineInfo": { + "dialogue": "Okay.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Mona" + } + }, + { + "fileOverride": "aldoreissecretpart2-mona-11", + "lineInfo": { + "dialogue": "I'm sorry to hear that.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Mona" + } + }, + { + "fileOverride": "aldoreissecretpart2-mona-12", + "lineInfo": { + "dialogue": "But why are you telling me that?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Mona" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-mona-13", + "lineInfo": { + "dialogue": "Uhm. Actually I'm busy, I have a lot to do today.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Mona" + } + }, + { + "fileOverride": "aldoreissecretpart2-mona-14", + "lineInfo": { + "dialogue": "Sorry, please leave.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Mona" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-mona-15", + "lineInfo": { + "dialogue": "You seem like such a kind adventurer, you humans aren't all so bad.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Mona" + } + }, + { + "fileOverride": "aldoreissecretpart2-mona-16", + "lineInfo": { + "dialogue": "Sure I'll answer some questions!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Mona" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-mona-17", + "lineInfo": { + "dialogue": "You never ask a woman her age, did you not know that?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Mona" + } + }, + { + "fileOverride": "aldoreissecretpart2-mona-18", + "lineInfo": { + "dialogue": "All I can say is that I am old enough.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Mona" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-mona-19", + "lineInfo": { + "dialogue": "I'm so sorry to hear that.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Mona" + } + }, + { + "fileOverride": "aldoreissecretpart2-mona-20", + "lineInfo": { + "dialogue": "I don't really see how that is connected to Aldorei though.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Mona" + } + }, + { + "fileOverride": "aldoreissecretpart2-mona-21", + "lineInfo": { + "dialogue": "Humans die you know.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Mona" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-mona-22", + "lineInfo": { + "dialogue": "Well... when I think about it- no.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Mona" + } + }, + { + "fileOverride": "aldoreissecretpart2-mona-23", + "lineInfo": { + "dialogue": "Actually, there is an old tale for children about a dying elf.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Mona" + } + }, + { + "fileOverride": "aldoreissecretpart2-mona-24", + "lineInfo": { + "dialogue": "I never thought about it much since I've never seen anyone in Aldorei die before.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Mona" + } + }, + { + "fileOverride": "aldoreissecretpart2-mona-25", + "lineInfo": { + "dialogue": "I heard that there is some old graveyard somewhere in Aldorei, probably just some weird folktale.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Mona" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-mona-26", + "lineInfo": { + "dialogue": "Hope I was of assistance.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mona" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-man-1", + "lineInfo": { + "dialogue": "... Zzzzz...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-2", + "lineInfo": { + "dialogue": "... Oh-uh, good morning?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-3", + "lineInfo": { + "dialogue": "I was just taking a... little nap, no need to be so loud.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-4", + "lineInfo": { + "dialogue": "So why did you wake me?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Mané" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-man-5", + "lineInfo": { + "dialogue": "... Goodnight...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mané" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-man-6", + "lineInfo": { + "dialogue": "... Meh", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-7", + "lineInfo": { + "dialogue": "I'm not that much for... image and status.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-8", + "lineInfo": { + "dialogue": "That's all anyone ever talks about here... zzz...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Mané" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-man-9", + "lineInfo": { + "dialogue": "... Because I'm tired?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-10", + "lineInfo": { + "dialogue": "What a strange question.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-11", + "lineInfo": { + "dialogue": "You see- I'm a moon elf, I draw power from the moon.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-12", + "lineInfo": { + "dialogue": "You humans are really stupid I have to say... zzz...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Mané" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-man-13", + "lineInfo": { + "dialogue": "It's the capital of the elves, a dream come true for all elves to live here.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-14", + "lineInfo": { + "dialogue": "Well... almost all.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-15", + "lineInfo": { + "dialogue": "Aldorei might look really pretty from the outside, but really, they are all hiding something here.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-16", + "lineInfo": { + "dialogue": "I'm younger than most here, you see. I'm just about a hundred years old.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-17", + "lineInfo": { + "dialogue": "There's a few places where we aren't allowed in. The more you think about it, the more controlled everything is here.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Mané" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-man-18", + "lineInfo": { + "dialogue": "Anything else?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mané" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-man-19", + "lineInfo": { + "dialogue": "No. Do you not know of the child regulations here?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-20", + "lineInfo": { + "dialogue": "There are very strict restrictions on who or when someone can have children here.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-21", + "lineInfo": { + "dialogue": "I'm the only new elf this century, at least around here.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-22", + "lineInfo": { + "dialogue": "This is the main reason elves have started moving to Efilim, to start families.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Mané" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-man-23", + "lineInfo": { + "dialogue": "I can't really say... you really don't want to break the rules here.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-24", + "lineInfo": { + "dialogue": "I'd keep a low profile if I were you.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Mané" + } + }, + { + "fileOverride": "aldoreissecretpart2-man-25", + "lineInfo": { + "dialogue": "I can give you some information but you need to leave me alone after.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Mané" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-man-26", + "lineInfo": { + "dialogue": "I heard about a hidden chamber under the town. Coincidentally, we aren't allowed to go down there.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Mané" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-man-27", + "lineInfo": { + "dialogue": "Please keep your voice down.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mané" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-1", + "lineInfo": { + "dialogue": "Amber here! Reporting for duty.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-2", + "lineInfo": { + "dialogue": "Are you lost, little adventurer?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-3", + "lineInfo": { + "dialogue": "Worry not, the great Amber is here to help you find your way!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Amber" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-4", + "lineInfo": { + "dialogue": "What can I do for you?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Amber" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-5", + "lineInfo": { + "dialogue": "Goodbye human!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-6", + "lineInfo": { + "dialogue": "Enjoy this wonderful town, don't hesitate to ask me for help!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Amber" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-7", + "lineInfo": { + "dialogue": "What.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-8", + "lineInfo": { + "dialogue": "... That is... not nice.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-9", + "lineInfo": { + "dialogue": "I... I.... No! Bullies don't affect me... *sniffles*", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Amber" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-10", + "lineInfo": { + "dialogue": "I am very happy!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-11", + "lineInfo": { + "dialogue": "Everyday I get to catch bad guys, I'm living the dream!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-12", + "lineInfo": { + "dialogue": "Well... more like every month or so, or... even once every year. There aren't many bad guys around here.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Amber" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-13", + "lineInfo": { + "dialogue": "My name is Amber of the Sol Embassy Royal Task Force!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-14", + "lineInfo": { + "dialogue": "It is my duty to protect the city from wrongdoers!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-15", + "lineInfo": { + "dialogue": "YOU AREN'T A THIEF ARE YOU? OR A ROBBER? OR MURDERER!? ARSONIST!?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-16", + "lineInfo": { + "dialogue": "Sorry, sorry, sorry!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-17", + "lineInfo": { + "dialogue": "I let my imagination get the best of me!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-18", + "lineInfo": { + "dialogue": "My main job is patrolling the grounds and making sure no one is doing anything they shouldn't.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-19", + "lineInfo": { + "dialogue": "I also report anything I hear people talking about that they shouldn't be.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-20", + "lineInfo": { + "dialogue": "Maybe I shouldn't have said all of that...", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Amber" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-21", + "lineInfo": { + "dialogue": "Can I help you with anything else?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Amber" + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-22", + "lineInfo": { + "dialogue": "Goodbye human!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Amber" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-23", + "lineInfo": { + "dialogue": "Enjoy this wonderful town, don't hesitate to ask me for help!", + "line": { + "current": 2, + "max": 1 + }, + "npc": "Amber" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-24", + "lineInfo": { + "dialogue": "Anything I see!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-25", + "lineInfo": { + "dialogue": "I report who comes and leaves the town. Who sells what, who buys what and who talks with who.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-26", + "lineInfo": { + "dialogue": "The list goes on and on and on and on and on.... and on... and on.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-27", + "lineInfo": { + "dialogue": "They like keeping track of what happens inside the town!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Amber" + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-28", + "lineInfo": { + "dialogue": "The Sol Embassy and its elders.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-29", + "lineInfo": { + "dialogue": "There are six elders who rule over Aldorei!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-30", + "lineInfo": { + "dialogue": "They don't often come out in public, usually they like to keep to themselves. I don't even know what all of them look like!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Amber" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-31", + "lineInfo": { + "dialogue": "If you see anything out of the ordinary, report it to me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Amber" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-16", + "lineInfo": { + "dialogue": "Hmm... that is all very interesting, the more I hear the more right I feel like I am.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-17", + "lineInfo": { + "dialogue": "Even though the relationship between Efilim and Aldorei isn't the best I would still hope that Aldorei isn't doing something to kill us off.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-18", + "lineInfo": { + "dialogue": "I think it's worth looking into the information you've gained.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-19", + "lineInfo": { + "dialogue": "Where should we start?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Olon" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-20", + "lineInfo": { + "dialogue": "I don't know how that will help solve anything.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-21", + "lineInfo": { + "dialogue": "Hmm- maybe you know something that I don't?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-22", + "lineInfo": { + "dialogue": "Sure, let's meet up at the potion merchant then.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Olon" + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-23", + "lineInfo": { + "dialogue": "Good idea! I overheard some elves talk about an underground river running under the town.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-24", + "lineInfo": { + "dialogue": "So if you come across water, you'll find the river.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-25", + "lineInfo": { + "dialogue": "I'll keep my distance, don't want to draw too much attention.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Olon" + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-26", + "lineInfo": { + "dialogue": "I don't know if that'll help us, but sure.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-27", + "lineInfo": { + "dialogue": "Let's talk to Amber again.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Olon" + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-32", + "lineInfo": { + "dialogue": "Amber here! Ready to catch the bad guys!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-33", + "lineInfo": { + "dialogue": "Are you here to report something?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-34", + "lineInfo": { + "dialogue": "Hold on! Why are you with an Efilim elf? Is this some sort of spy mission to take over Aldorei and turn it into a capitalistic society?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-35", + "lineInfo": { + "dialogue": "I will have to report this to the elders immediately!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-28", + "lineInfo": { + "dialogue": "soldier, deal with this situation... NOW!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Olon" + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-36", + "lineInfo": { + "dialogue": "This is a serious offense.. I think...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Amber" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-37", + "lineInfo": { + "dialogue": "I am a respected member of the task force. My only friend is the law.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-38", + "lineInfo": { + "dialogue": "Say goodbye to... your freedom!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-39", + "lineInfo": { + "dialogue": "I'm not sure what the punishment for talking to an Efilim elf is, but I would imagine at least hanging at dawn. Or is there even a punishment?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-29", + "lineInfo": { + "dialogue": "Let's just get out of here. I say looking into the underground river would have been the smartest move in the first place.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Olon" + } + } + ] + }, + "56": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-amber-40", + "lineInfo": { + "dialogue": "I am a respected member of the task force. My only friend is the law.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-41", + "lineInfo": { + "dialogue": "But money... I could go shopping in Cinfras.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-42", + "lineInfo": { + "dialogue": "GAH! MY BRAIN, IT'S BECOMING CORRUPT! But money!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-amber-43", + "lineInfo": { + "dialogue": "Fine! [128 Emeralds], now", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Amber" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-30", + "lineInfo": { + "dialogue": "Alright time to listen to me now.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-31", + "lineInfo": { + "dialogue": "I heard about an underground river, so let's try to find that, shall we.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Olon" + } + } + ] + }, + "57": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-32", + "lineInfo": { + "dialogue": "I'm going to be completely honest with you.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-33", + "lineInfo": { + "dialogue": "What exactly are we doing here?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Olon" + } + } + ] + }, + "58": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-34", + "lineInfo": { + "dialogue": "A... drink?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-35", + "lineInfo": { + "dialogue": "Why didn't you just say that. Here, it's on me.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-36", + "lineInfo": { + "dialogue": "Two Elven Herbal Brews please.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-37", + "lineInfo": { + "dialogue": "Here you go!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-38", + "lineInfo": { + "dialogue": "Can we get back on track now?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-39", + "lineInfo": { + "dialogue": "I overheard some elves talk about an underground river running under the town. So if you come across water, you'll find the river.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Olon" + } + } + ] + }, + "59": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-40", + "lineInfo": { + "dialogue": "Let's hope we didn't draw any attention doing all of that unnecessary stuff.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-41", + "lineInfo": { + "dialogue": "You know, finding this mysterious location might be harder than I thought.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-42", + "lineInfo": { + "dialogue": "Let me think...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-43", + "lineInfo": { + "dialogue": "So realistically, if it's an abandoned elven site it should have some leftover artifacts.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-44", + "lineInfo": { + "dialogue": "Can you manage this yourself? Look for markings on the walls that resemble Aldorei.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Olon" + } + } + ] + }, + "60": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-45", + "lineInfo": { + "dialogue": "Seems like no elves have followed us down here.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Olon" + } + } + ] + }, + "61": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-46", + "lineInfo": { + "dialogue": "Let's look around for artifacts that resemble Aldorei down here.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Olon" + } + } + ] + }, + "62": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-47", + "lineInfo": { + "dialogue": "Let's start this way!", + "npc": "[1/] Olon" + } + } + ] + }, + "63": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-48", + "lineInfo": { + "dialogue": "AAHHH! I SLIPPED.", + "npc": "[2/] Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-49", + "lineInfo": { + "dialogue": "Erm- thank you.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-50", + "lineInfo": { + "dialogue": "Hmph- this looks pretty suspicious to me.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-51", + "lineInfo": { + "dialogue": "Sounds like it's hollow on the otherside, maybe we can get through here.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-52", + "lineInfo": { + "dialogue": "Barely a scratch.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-53", + "lineInfo": { + "dialogue": "We should try combining our magic, soldier.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-54", + "lineInfo": { + "dialogue": "Get close to the boulders and cast a spell, I will follow your lead.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Olon" + } + } + ] + }, + "64": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-55", + "lineInfo": { + "dialogue": "Again! Looks like it's working!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "65": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-56", + "lineInfo": { + "dialogue": "We almost got it. Again!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "66": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-57", + "lineInfo": { + "dialogue": "Good job! Team work makes a dream work, or whatever the saying is.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "67": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-58", + "lineInfo": { + "dialogue": "Let's take a look around.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "68": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-59", + "lineInfo": { + "dialogue": "Did you just... dig up a grave?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-60", + "lineInfo": { + "dialogue": "This is an important piece of history!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-61", + "lineInfo": { + "dialogue": "I will look away and pretend I didn't see that.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Olon" + } + } + ] + }, + "69": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-62", + "lineInfo": { + "dialogue": "Let's take a look around!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "70": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-63", + "lineInfo": { + "dialogue": "Try looking around the graves a bit? Maybe they can give us some information.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "71": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-64", + "lineInfo": { + "dialogue": "I assume you found the same stuff I did...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-65", + "lineInfo": { + "dialogue": "So what changed?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-66", + "lineInfo": { + "dialogue": "What do you think about all of this?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Olon" + } + } + ] + }, + "72": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-67", + "lineInfo": { + "dialogue": "It's sad to say, but it's true.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-68", + "lineInfo": { + "dialogue": "People who are knowledgeable, magically gifted or well versed in the arts are seen as better.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-69", + "lineInfo": { + "dialogue": "In that case- I assume majority of elves were buried in the lesser ones.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-70", + "lineInfo": { + "dialogue": "I- I'll make sure Efilim never becomes like this...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Olon" + } + } + ] + }, + "73": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-71", + "lineInfo": { + "dialogue": "What do you think about all of this?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "74": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-72", + "lineInfo": { + "dialogue": "1000 years ago... could this be connected to the portal over in the Wynn province?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-73", + "lineInfo": { + "dialogue": "Hmm...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-74", + "lineInfo": { + "dialogue": "Seems unlikely, how come they gained immortality?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-75", + "lineInfo": { + "dialogue": "Did the elves of Aldorei actually grasp the light?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Olon" + } + } + ] + }, + "75": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-76", + "lineInfo": { + "dialogue": "Hmm?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "76": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-77", + "lineInfo": { + "dialogue": "It's the biggest accomplishment an elf can reach.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-78", + "lineInfo": { + "dialogue": "By working and studying the arts of magic and manners an elf may ascend into the light.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-79", + "lineInfo": { + "dialogue": "And witness him- The Beast of Light, Orphion.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Olon" + } + } + ] + }, + "77": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-80", + "lineInfo": { + "dialogue": "I think it's time we pay the elders a visit.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-81", + "lineInfo": { + "dialogue": "They have some explaining to do.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-82", + "lineInfo": { + "dialogue": "Let's go soldier, they meet up above the bank.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Olon" + } + } + ] + }, + "78": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-83", + "lineInfo": { + "dialogue": "Exactly what I was thinking.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-84", + "lineInfo": { + "dialogue": "Let's go soldier, they meet up above the bank.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Olon" + } + } + ] + }, + "79": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-85", + "lineInfo": { + "dialogue": "They should be at the top of this building. Follow the golden carpet to get there!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "80": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-86", + "lineInfo": { + "dialogue": "soldier! Wait!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-87", + "lineInfo": { + "dialogue": "We need to watch out for the guards.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Olon" + } + } + ] + }, + "81": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-88", + "lineInfo": { + "dialogue": "The guards are coming!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "82": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-89", + "lineInfo": { + "dialogue": "This is our chance to run past!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "83": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-solembassyguard-1", + "lineInfo": { + "dialogue": "HALT! A meeting is taking place, no one goes past us.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Sol Embassy Guard" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-90", + "lineInfo": { + "dialogue": "We don't have time for this... GAH!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-91", + "lineInfo": { + "dialogue": "The truth is so close! I...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-92", + "lineInfo": { + "dialogue": "I'm sorry!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-solembassyguard-2", + "lineInfo": { + "dialogue": "Hey! What are you doing?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Sol Embassy Guard" + } + } + ] + }, + "84": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-93", + "lineInfo": { + "dialogue": "I feel really bad...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-94", + "lineInfo": { + "dialogue": "This wasn't supposed to happen, I just want to know what happened to my parents!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-95", + "lineInfo": { + "dialogue": "I hope they didn't get too hurt from that... but we have come this far.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-96", + "lineInfo": { + "dialogue": "No point in turning back now. Come soldier, let's go.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Olon" + } + } + ] + }, + "85": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-1", + "lineInfo": { + "dialogue": "Alright- this meeting is over with, glad we got to an agreement.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Elder Oak" + } + } + ] + }, + "86": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-97", + "lineInfo": { + "dialogue": "Pardon me!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-98", + "lineInfo": { + "dialogue": "Ahm- excuse me!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-99", + "lineInfo": { + "dialogue": "Ehm- I know this is impolite of me, which is exactly why I'm doing it!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-100", + "lineInfo": { + "dialogue": "We know your dark secrets and we have proof!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-2", + "lineInfo": { + "dialogue": "What nonsense, who let this ginger rat in here!?", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-101", + "lineInfo": { + "dialogue": "Who are you calling a rat!? Pulling the ginger card too!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderwillow-1", + "lineInfo": { + "dialogue": "Can somebody please get the Sol Embassy Guards for us?", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Elder Willow" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-3", + "lineInfo": { + "dialogue": "Wait a second... human, what are you doing here?", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Elder Oak" + } + } + ] + }, + "87": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-4", + "lineInfo": { + "dialogue": "We saw you arrive with this elf, us elders aren't that gullible.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-102", + "lineInfo": { + "dialogue": "soldier... I really thought you'd have my back out there.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Olon" + } + } + ] + }, + "88": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-5", + "lineInfo": { + "dialogue": "What are you really doing here?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Elder Oak" + } + } + ] + }, + "89": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-6", + "lineInfo": { + "dialogue": "So you admit that your invitation to Aldorei is being used to threaten us.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-7", + "lineInfo": { + "dialogue": "I knew letting foreigners into our town would come back to bite us.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-8", + "lineInfo": { + "dialogue": "Guards- arrest these pests and get them to the dungeons!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Elder Oak" + } + } + ] + }, + "90": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-9", + "lineInfo": { + "dialogue": "An explanation to what exactly?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-10", + "lineInfo": { + "dialogue": "And you admit you're apart of this elf's posse?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elder Oak" + } + } + ] + }, + "91": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderalder-1", + "lineInfo": { + "dialogue": "Wait- before you do!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-2", + "lineInfo": { + "dialogue": "You said you had proof of something, tell me- what have you found?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-103", + "lineInfo": { + "dialogue": "Aldorei's secret, you obtained immortality!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-104", + "lineInfo": { + "dialogue": "We found the old cemetery under the city and aren't afraid to expose you to the world!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-105", + "lineInfo": { + "dialogue": "My parents both suffered and I only have you to blame for it.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-3", + "lineInfo": { + "dialogue": "Really- that's quite... interesting.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-11", + "lineInfo": { + "dialogue": "That's enough! To the dungeons with you now!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Elder Oak" + } + } + ] + }, + "92": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-12", + "lineInfo": { + "dialogue": "I'm sure you must realize by now we are the elders for a reason?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-13", + "lineInfo": { + "dialogue": "Us elves are ten times more powerful than any human by nature.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-14", + "lineInfo": { + "dialogue": "Just because we tend to solve things peacefully doesn't mean we can't use brute force.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Elder Oak" + } + } + ] + }, + "93": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-106", + "lineInfo": { + "dialogue": "No! soldier, I am not letting this go! I will get justice for my parents.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "94": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderwillow-2", + "lineInfo": { + "dialogue": "Pfft- it's merely a design flaw.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Elder Willow" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderwillow-3", + "lineInfo": { + "dialogue": "Don't try to trick us with your mind games.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Elder Willow" + } + } + ] + }, + "95": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-15", + "lineInfo": { + "dialogue": "Okay, where are the guards?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Elder Oak" + } + } + ] + }, + "96": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-16", + "lineInfo": { + "dialogue": "You did WHAT?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-17", + "lineInfo": { + "dialogue": "I guess we'll just have to escort you to the dungeons ourselves!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-18", + "lineInfo": { + "dialogue": "You've practically doubled your sentence- a thousand years and another thousand!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Elder Oak" + } + } + ] + }, + "97": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-19", + "lineInfo": { + "dialogue": "Hmph-", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-20", + "lineInfo": { + "dialogue": "So you managed to time it with their lunch breaks.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-21", + "lineInfo": { + "dialogue": "You're more cleaver than I thought, Efilim Elf.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-22", + "lineInfo": { + "dialogue": "I guess we'll just have to escort you ourselves!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Elder Oak" + } + } + ] + }, + "98": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-107", + "lineInfo": { + "dialogue": "Thats it! soldier, let's run!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-108", + "lineInfo": { + "dialogue": "Follow me!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Olon" + } + } + ] + }, + "99": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-109", + "lineInfo": { + "dialogue": "Up the stairs, soldier!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "100": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-110", + "lineInfo": { + "dialogue": "Get behind me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "101": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-111", + "lineInfo": { + "dialogue": "Quickly- let's head outside!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "102": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-112", + "lineInfo": { + "dialogue": "You know... I didn't really think that would work, and I was right.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-113", + "lineInfo": { + "dialogue": "But I think I figured it out...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Olon" + } + } + ] + }, + "103": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-114", + "lineInfo": { + "dialogue": "I mean obviously?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-115", + "lineInfo": { + "dialogue": "No- but I noticed something that didn't add up with our previous information.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-116", + "lineInfo": { + "dialogue": "One of the seats were empty and one of the elves mentioned six elders, did she not?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-117", + "lineInfo": { + "dialogue": "I glanced over at the shelves behind them and saw papers signed by another name.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-118", + "lineInfo": { + "dialogue": "So the question is... what happened to them?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Olon" + } + } + ] + }, + "104": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-119", + "lineInfo": { + "dialogue": "I'm guessing the Elders got into a big disagreement and decided to rid of them.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-120", + "lineInfo": { + "dialogue": "So I doubt they have any records of that occurring here...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-121", + "lineInfo": { + "dialogue": "Our best bet is to find somebody that may have seen what happened here.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-122", + "lineInfo": { + "dialogue": "Y'know I'm pretty good friends with the Cinfras Scouts.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-123", + "lineInfo": { + "dialogue": "They are really observant of everything that goes on in and around the canyons.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-124", + "lineInfo": { + "dialogue": "Meet me outside the Cinfras Guild Hall, speak with me if you'd like to travel there together.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Olon" + } + } + ] + }, + "105": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-125", + "lineInfo": { + "dialogue": "Exactly! You've got a keen eye for this kinda thing.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-126", + "lineInfo": { + "dialogue": "The question is if she lied, or if something else happened.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-127", + "lineInfo": { + "dialogue": "One of the seats were empty but most importantly...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Olon" + } + } + ] + }, + "106": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-128", + "lineInfo": { + "dialogue": "Let's go then! Glad you want to travel with me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "107": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-129", + "lineInfo": { + "dialogue": "Here we are! The capital of Gavel, home of a lot of things I'm sure.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-130", + "lineInfo": { + "dialogue": "Alright- so we have to come up with a plan on what to do next, I have a few suggestions myself.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-131", + "lineInfo": { + "dialogue": "I've done some work for the Guild Hall staff in the past and happen to know a few of them.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-132", + "lineInfo": { + "dialogue": "We are actually quite good friends, what do you think?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Olon" + } + } + ] + }, + "108": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-133", + "lineInfo": { + "dialogue": "Sounds like a good plan to me.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-134", + "lineInfo": { + "dialogue": "Head inside and look for someone who doesn't seem busy.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Olon" + } + } + ] + }, + "109": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-135", + "lineInfo": { + "dialogue": "Harvy! How're you doing?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-harvy-1", + "lineInfo": { + "dialogue": "... Olon?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Harvy" + } + }, + { + "fileOverride": "aldoreissecretpart2-harvy-2", + "lineInfo": { + "dialogue": "I haven't seen you in so long! I'm doing good, family too!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Harvy" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-136", + "lineInfo": { + "dialogue": "Glad to hear! Listen- we're quite busy today, do you know where the old military documents are being kept?", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-harvy-3", + "lineInfo": { + "dialogue": "Is this about the theory you had going? Actually- I recently did some work there.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Harvy" + } + }, + { + "fileOverride": "aldoreissecretpart2-harvy-4", + "lineInfo": { + "dialogue": "There's an elevator up the stairs next to me.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Harvy" + } + }, + { + "fileOverride": "aldoreissecretpart2-harvy-5", + "lineInfo": { + "dialogue": "Please come back and talk later! I miss our conversations.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Harvy" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-137", + "lineInfo": { + "dialogue": "Perfect! soldier, let's take that elevator upstairs right away.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Olon" + } + } + ] + }, + "110": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-138", + "lineInfo": { + "dialogue": "Wait for me, soldier!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Olon" + } + } + ] + }, + "111": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-139", + "lineInfo": { + "dialogue": "... Nice weather today!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "112": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-140", + "lineInfo": { + "dialogue": "So you want us to sneak in?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-141", + "lineInfo": { + "dialogue": "Do you even know where we need to go?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-142", + "lineInfo": { + "dialogue": "Thought so... good thing I'm here then!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-143", + "lineInfo": { + "dialogue": "As I previously mentioned, I've been helping out with keeping the gardens inside tidy.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-144", + "lineInfo": { + "dialogue": "I've picked up a few things here and there, obviously! The conclusion I have is...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-145", + "lineInfo": { + "dialogue": "There's a room at the top of the guild hall that stores old military documents.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-146", + "lineInfo": { + "dialogue": "It isn't really in use anymore, meaning the way up won't be easy... meet me under the bridge.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Olon" + } + } + ] + }, + "113": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-147", + "lineInfo": { + "dialogue": "The archive should be at the top of one of the big towers of the Guild Hall.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-148", + "lineInfo": { + "dialogue": "I had a brilliant idea of blessing you with some of my magic that you can hopefully use to get in.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-149", + "lineInfo": { + "dialogue": "I want to go meet up with my old friend, I'll hopefully see you soon.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-150", + "lineInfo": { + "dialogue": "Do you see the pool of white magic next to us?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-151", + "lineInfo": { + "dialogue": "Just hop in when you are ready to start.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Olon" + } + } + ] + }, + "114": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-152", + "lineInfo": { + "dialogue": "Alright. Get ready!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "115": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-153", + "lineInfo": { + "dialogue": "Hopefully this will help you.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "116": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-154", + "lineInfo": { + "dialogue": "The documents should be in here somewhere.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "117": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-155", + "lineInfo": { + "dialogue": "You found it? Great, it's just as I thought.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-156", + "lineInfo": { + "dialogue": "Alright- this is the plan. I will stay behind and look for a map of the place mentioned, they almost always mark the reports properly.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-157", + "lineInfo": { + "dialogue": "Meet me in Aldorei Town, at the eastern town exit. Let's try to avoid the elders for now.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-158", + "lineInfo": { + "dialogue": "If you want to get back to Aldorei Town I heard that there's a so called ''juggler'' merchant in Cinfras that will bring you there for free.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-159", + "lineInfo": { + "dialogue": "You could always walk too, I suppose.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Olon" + } + } + ] + }, + "118": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-160", + "lineInfo": { + "dialogue": "Alright, here we are.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-161", + "lineInfo": { + "dialogue": "This road leads to the canyon of the lost, so we may have to look around for a while.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-162", + "lineInfo": { + "dialogue": "The canyon moves on its own. Alright, let's get going.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Olon" + } + } + ] + }, + "119": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderalder-4", + "lineInfo": { + "dialogue": "Olon! soldier, wait!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-163", + "lineInfo": { + "dialogue": "Oh no- the elders.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-5", + "lineInfo": { + "dialogue": "I'm not here to stop you. Actually, I wanted to help out.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-6", + "lineInfo": { + "dialogue": "There are a lot of things wrong with this town, this society. The judgements that we've made...", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-7", + "lineInfo": { + "dialogue": "Us elves aren't perfect. We like to say that- and frankly, many of us believe it too.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-8", + "lineInfo": { + "dialogue": "I've always wanted to be the change in Aldorei but it's troublesome to convince those who are stuck in their crooked ways.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-9", + "lineInfo": { + "dialogue": "Please, bring back Elder Birch- for me. Follow the mountain road to the right until you come across a cave with mushrooms.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-10", + "lineInfo": { + "dialogue": "In the meantime, I have some things to ask the Elders- good luck, both of you.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Elder Alder" + } + } + ] + }, + "120": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-1", + "lineInfo": { + "dialogue": "You have one minute to explain what you're doing here and who you are before I collapse the mountains around you.", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-2", + "lineInfo": { + "dialogue": "An elf and a human- inside of my home!", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-164", + "lineInfo": { + "dialogue": "Woah-woah! Let's take a breath.", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-3", + "lineInfo": { + "dialogue": "You can tell THEM I haven't left my home since my banishment. I haven't said a word, nor have I even considered doing anything.", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-165", + "lineInfo": { + "dialogue": "We aren't with the Elders. I'm from Efilim! We are here for the truth.", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-4", + "lineInfo": { + "dialogue": "...", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-5", + "lineInfo": { + "dialogue": "So this is a test, huh?", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-166", + "lineInfo": { + "dialogue": "What? No!", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-6", + "lineInfo": { + "dialogue": "Do they... want... me back? Is this why you are here?", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-167", + "lineInfo": { + "dialogue": "We aren't connected to the Elders in any way! I'm here for personal reasons.", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-7", + "lineInfo": { + "dialogue": "I won't tell you anything!", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Elder Birch" + } + } + ] + }, + "121": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-8", + "lineInfo": { + "dialogue": "Don't play dumb.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-9", + "lineInfo": { + "dialogue": "This is some sort of test from the Elders.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-10", + "lineInfo": { + "dialogue": "If not, convince me otherwise.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Elder Birch" + } + } + ] + }, + "122": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-11", + "lineInfo": { + "dialogue": "Even though I have been banished, I would never want something like that.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-12", + "lineInfo": { + "dialogue": "Aldorei is my home!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Elder Birch" + } + } + ] + }, + "123": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-13", + "lineInfo": { + "dialogue": "Tough luck- I don't know how that would convince me you're not with the elders.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-14", + "lineInfo": { + "dialogue": "You'll have to try harder than that.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Elder Birch" + } + } + ] + }, + "124": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-15", + "lineInfo": { + "dialogue": "If the Elders sent you, then you should already know the answer.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-16", + "lineInfo": { + "dialogue": "I am not telling you anything...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Elder Birch" + } + } + ] + }, + "125": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-17", + "lineInfo": { + "dialogue": "What!?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-18", + "lineInfo": { + "dialogue": "Where did that accusation come from?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-19", + "lineInfo": { + "dialogue": "Are you two a bit slow or what? We are not killing anyone!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-20", + "lineInfo": { + "dialogue": "If anything, the Efilim elves brought it upon themselves by leaving our city.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Elder Birch" + } + } + ] + }, + "126": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-21", + "lineInfo": { + "dialogue": "Elves are magical, that's why the city is magical.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-22", + "lineInfo": { + "dialogue": "I'm not going to tell you anything.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Elder Birch" + } + } + ] + }, + "127": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-23", + "lineInfo": { + "dialogue": "I've already told you.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-24", + "lineInfo": { + "dialogue": "Aldorei doesn't care about Efilim elves, why would they kill them?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Elder Birch" + } + } + ] + }, + "128": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-25", + "lineInfo": { + "dialogue": "Well, why are you here then?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-26", + "lineInfo": { + "dialogue": "If you are so close, what do you need me for?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Elder Birch" + } + } + ] + }, + "129": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-27", + "lineInfo": { + "dialogue": "I've said too much.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-28", + "lineInfo": { + "dialogue": "Let's just say the town is magical. That's all you need to know.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-29", + "lineInfo": { + "dialogue": "Why are you even wondering?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Elder Birch" + } + } + ] + }, + "130": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-30", + "lineInfo": { + "dialogue": "Wow!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-31", + "lineInfo": { + "dialogue": "You sound like a genius.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-32", + "lineInfo": { + "dialogue": "Of course things happened- things happen everywhere!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Elder Birch" + } + } + ] + }, + "131": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-33", + "lineInfo": { + "dialogue": "Really... it seems I can't escape the past.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-34", + "lineInfo": { + "dialogue": "I don't know what it is... but I want you to tell me more...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-35", + "lineInfo": { + "dialogue": "Maybe it's time- time to confront the elders again. We must go.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Elder Birch" + } + } + ] + }, + "132": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-36", + "lineInfo": { + "dialogue": "What?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-37", + "lineInfo": { + "dialogue": "Prove it! I can't believe they would just forget about me so quickly.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-38", + "lineInfo": { + "dialogue": "Keep trying.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Elder Birch" + } + } + ] + }, + "133": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-39", + "lineInfo": { + "dialogue": "Alright that's enough!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Elder Birch" + } + } + ] + }, + "134": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-40", + "lineInfo": { + "dialogue": "So what? That doesn't prove anything.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Elder Birch" + } + } + ] + }, + "135": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-41", + "lineInfo": { + "dialogue": "...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-42", + "lineInfo": { + "dialogue": "Alder...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-43", + "lineInfo": { + "dialogue": "What... what did he say about me?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Elder Birch" + } + } + ] + }, + "136": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-44", + "lineInfo": { + "dialogue": "Alder would never say that... especially not to the likes of you.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-45", + "lineInfo": { + "dialogue": "Although- I do miss him dearly...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Elder Birch" + } + } + ] + }, + "137": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-46", + "lineInfo": { + "dialogue": "Of course... yes...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Elder Birch" + } + } + ] + }, + "138": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-47", + "lineInfo": { + "dialogue": "Of course he did, he has always taken my side.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-48", + "lineInfo": { + "dialogue": "You know what- I will come with you.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-49", + "lineInfo": { + "dialogue": "But I won't tell you anything. I'm only coming because of Alder.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Elder Birch" + } + } + ] + }, + "139": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderbirch-50", + "lineInfo": { + "dialogue": "Let me get myself together...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-51", + "lineInfo": { + "dialogue": "Go on ahead. This is not something I expected to happen...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Elder Birch" + } + } + ] + }, + "140": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-168", + "lineInfo": { + "dialogue": "We're back.", + "line": { + "current": 1, + "max": 23 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-23", + "lineInfo": { + "dialogue": "You've got guts coming back here after everyth-", + "line": { + "current": 2, + "max": 23 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-169", + "lineInfo": { + "dialogue": "Actually- we have someone that you might be interested in meeting.", + "line": { + "current": 3, + "max": 23 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-24", + "lineInfo": { + "dialogue": "What is the meaning of this?!", + "line": { + "current": 4, + "max": 23 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-11", + "lineInfo": { + "dialogue": "B-birch...", + "line": { + "current": 5, + "max": 23 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-12", + "lineInfo": { + "dialogue": "It's been so long, I didn't think you would come back...", + "line": { + "current": 6, + "max": 23 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-52", + "lineInfo": { + "dialogue": "Alder- I am sorry but the only reason I have returned is to set things right once and for all.", + "line": { + "current": 7, + "max": 23 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-53", + "lineInfo": { + "dialogue": "These two individuals have the right to know what's going on.", + "line": { + "current": 8, + "max": 23 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-25", + "lineInfo": { + "dialogue": "Are you out of your MIND! We voted on this all those years ago!", + "line": { + "current": 9, + "max": 23 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-26", + "lineInfo": { + "dialogue": "If you tell them ANYTHING about the tree I will make sure your eternal life ends right here and now!", + "line": { + "current": 10, + "max": 23 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-54", + "lineInfo": { + "dialogue": "Oak- that is ENOUGH! Can't you see- this human is fighting the war we begun!", + "line": { + "current": 11, + "max": 23 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-55", + "lineInfo": { + "dialogue": "They've earned it- they should know. Salvation of our light, our redemption!", + "line": { + "current": 12, + "max": 23 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-13", + "lineInfo": { + "dialogue": "I agree with Elder Birch, sir.", + "line": { + "current": 13, + "max": 23 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderwillow-4", + "lineInfo": { + "dialogue": "Sorry sir, as do I.", + "line": { + "current": 14, + "max": 23 + }, + "npc": "Elder Willow" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-56", + "lineInfo": { + "dialogue": "soldier, Olon- the war you are fighting...", + "line": { + "current": 15, + "max": 23 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-57", + "lineInfo": { + "dialogue": "We- we are the ones to blame. Our kind, our people...", + "line": { + "current": 16, + "max": 23 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-58", + "lineInfo": { + "dialogue": "The elves are the reason the world is in calamity. All because of one, senseless, selfish mistake.", + "line": { + "current": 17, + "max": 23 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-59", + "lineInfo": { + "dialogue": "The worst fate that this world has seen, a fate beyond comprehension.", + "line": { + "current": 18, + "max": 23 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-60", + "lineInfo": { + "dialogue": "Your leading question, about our immortality. The answer is simple- but there is more to it.", + "line": { + "current": 19, + "max": 23 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-61", + "lineInfo": { + "dialogue": "We... we revealed the first gate- giving way for the darkness...", + "line": { + "current": 20, + "max": 23 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-170", + "lineInfo": { + "dialogue": "But- I don't understand... why?", + "line": { + "current": 21, + "max": 23 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-62", + "lineInfo": { + "dialogue": "I'd rather if we show you. Meet me under the Cherry Blossom tree.", + "line": { + "current": 22, + "max": 23 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-14", + "lineInfo": { + "dialogue": "I- I will join you as well.", + "line": { + "current": 23, + "max": 23 + }, + "npc": "Elder Alder" + } + } + ] + }, + "141": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderalder-15", + "lineInfo": { + "dialogue": "This place- here is where it all began.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-16", + "lineInfo": { + "dialogue": "The center of the Elven society, under the tree that protects our civilization.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-63", + "lineInfo": { + "dialogue": "And, brings upon us our immortality...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-64", + "lineInfo": { + "dialogue": "The roots expand deep inside this cavern that we've used for storage over the years.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-65", + "lineInfo": { + "dialogue": "At least two Elders are required to open the passage. We will open the way for you two now.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-17", + "lineInfo": { + "dialogue": "Be careful, nobody was meant to return there so certain defense mechanisms were put in place.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-18", + "lineInfo": { + "dialogue": "Also, the information you will learn can harm all elves, unfortunately some things must be kept a secret.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Elder Alder" + } + } + ] + }, + "142": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-171", + "lineInfo": { + "dialogue": "Wait up!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-172", + "lineInfo": { + "dialogue": "What is this place?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-173", + "lineInfo": { + "dialogue": "I've had a very bad feeling that we won't like what we see...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-174", + "lineInfo": { + "dialogue": "Well... It's too late to back down now.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Olon" + } + } + ] + }, + "143": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-175", + "lineInfo": { + "dialogue": "What is this place?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-176", + "lineInfo": { + "dialogue": "Do you feel the magical energy, it's almost like I can touch it.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Olon" + } + } + ] + }, + "144": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-177", + "lineInfo": { + "dialogue": "Is the water filled with logs?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "145": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-178", + "lineInfo": { + "dialogue": "Have you noticed this... plant in the middle.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-179", + "lineInfo": { + "dialogue": "It seems like this place is so alive, I mean just look at all of this coming from the logs!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Olon" + } + } + ] + }, + "146": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-180", + "lineInfo": { + "dialogue": "If you are here to stop us, we won't hesitate to hurt you!", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-27", + "lineInfo": { + "dialogue": "On the contrary. I... realize, that this is something we can no longer keep quiet about.", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-28", + "lineInfo": { + "dialogue": "When you brought back Birch... it brought back memories, and I must admit. It made me realize I had lost myself along the way.", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-29", + "lineInfo": { + "dialogue": "We were ashamed of our actions- all of us. Scared for our people. If they knew the truth... there would be riots, wars, innocents would die!", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-30", + "lineInfo": { + "dialogue": "But because we locked up Aldorei from the outside, we grew a... god complex, so to speak.", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-31", + "lineInfo": { + "dialogue": "We lost track of why we locked ourselves in.", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-19", + "lineInfo": { + "dialogue": "You will find the answers to your questions once you lay grasp of the wood.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Elder Alder" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-66", + "lineInfo": { + "dialogue": "I assume you two already noticed the intense magical energy coming from here.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-67", + "lineInfo": { + "dialogue": "This is the source of our immortality.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderbirch-68", + "lineInfo": { + "dialogue": "The remnants of the original Guardian of the Forest.", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Elder Birch" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderalder-20", + "lineInfo": { + "dialogue": "Enter the log- please.", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Elder Alder" + } + } + ] + }, + "147": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderprometheus-1", + "lineInfo": { + "dialogue": "I have summoned you two for an important meeting.", + "line": { + "current": 1, + "max": 15 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-2", + "lineInfo": { + "dialogue": "I had another vision...", + "line": { + "current": 2, + "max": 15 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderelm-1", + "lineInfo": { + "dialogue": "What did you see this time?", + "line": { + "current": 3, + "max": 15 + }, + "npc": "Elder Elm" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-3", + "lineInfo": { + "dialogue": "It was unclear... The only thing I'm certain of is that he contacted me.", + "line": { + "current": 4, + "max": 15 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-4", + "lineInfo": { + "dialogue": "I think... I think he wants us to witness him. This is finally our chance to grasp the light.", + "line": { + "current": 5, + "max": 15 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-5", + "lineInfo": { + "dialogue": "And I know how we do that!", + "line": { + "current": 6, + "max": 15 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderhickory-1", + "lineInfo": { + "dialogue": "What are you implying?", + "line": { + "current": 7, + "max": 15 + }, + "npc": "Elder Hickory" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-6", + "lineInfo": { + "dialogue": "The Guardian of the Forest.", + "line": { + "current": 8, + "max": 15 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-7", + "lineInfo": { + "dialogue": "You must have realized by now that he is a direct contact to the other side. I think... I think it's time.", + "line": { + "current": 9, + "max": 15 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderhickory-2", + "lineInfo": { + "dialogue": "You don't mean...", + "line": { + "current": 10, + "max": 15 + }, + "npc": "Elder Hickory" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderelm-2", + "lineInfo": { + "dialogue": "... cutting down the Guardian of the Forest!?", + "line": { + "current": 11, + "max": 15 + }, + "npc": "Elder Elm" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-8", + "lineInfo": { + "dialogue": "Believe me- I hear how ludicrous this all sounds.", + "line": { + "current": 12, + "max": 15 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-9", + "lineInfo": { + "dialogue": "But think, why would I have visions of witnessing him moments after visions of the Guardian?", + "line": { + "current": 13, + "max": 15 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-10", + "lineInfo": { + "dialogue": "We would be the first of our kind to witness him before death!", + "line": { + "current": 14, + "max": 15 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-11", + "lineInfo": { + "dialogue": "I believe that's what he wants!", + "line": { + "current": 15, + "max": 15 + }, + "npc": "Elder Prometheus" + } + } + ] + }, + "148": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderprometheus-12", + "lineInfo": { + "dialogue": "People of Aldorei!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-13", + "lineInfo": { + "dialogue": "Today is the day we meet our God!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-14", + "lineInfo": { + "dialogue": "We will take down the Guardian of the Forest to open a gateway!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-15", + "lineInfo": { + "dialogue": "Today we establish history and a new chapter for all elves!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Elder Prometheus" + } + } + ] + }, + "149": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-lari-1", + "lineInfo": { + "dialogue": "Uhm... Elder-", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-16", + "lineInfo": { + "dialogue": "... What do you want?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-17", + "lineInfo": { + "dialogue": "We do not have the time. Move along, young one.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-lari-2", + "lineInfo": { + "dialogue": "Wait! I don't think.. this is a good idea.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-18", + "lineInfo": { + "dialogue": "And... who are you?", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-lari-3", + "lineInfo": { + "dialogue": "But... I really don't think you should go ahead and hurt the Gua-", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-19", + "lineInfo": { + "dialogue": "As the Elders of this town we've already decided on this. You are welcome to join us for this moment, young elf.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-20", + "lineInfo": { + "dialogue": "But if you as much as try to stop us, you will be banished.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Elder Prometheus" + } + } + ] + }, + "150": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderprometheus-21", + "lineInfo": { + "dialogue": "This.. THIS IS IT!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Elder Prometheus" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderprometheus-22", + "lineInfo": { + "dialogue": "We... WE DID IT!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Elder Prometheus" + } + } + ] + }, + "151": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderprometheus-23", + "lineInfo": { + "dialogue": "I can barely.... this pressure!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Elder Prometheus" + } + } + ] + }, + "152": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-lari-4", + "lineInfo": { + "dialogue": "It's leading me... here?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "aldoreissecretpart2-lari-5", + "lineInfo": { + "dialogue": "What do you want?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "aldoreissecretpart2-lari-6", + "lineInfo": { + "dialogue": "Why me?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Lari" + } + } + ] + }, + "153": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-181", + "lineInfo": { + "dialogue": "I..", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-182", + "lineInfo": { + "dialogue": "Let's hear them out...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Olon" + } + } + ] + }, + "154": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-32", + "lineInfo": { + "dialogue": "Do you realize now?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-33", + "lineInfo": { + "dialogue": "This secret can never leave Aldorei. If it does- people will riot and wars will break out.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-34", + "lineInfo": { + "dialogue": "Elves who had nothing to do with their decision will die.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-35", + "lineInfo": { + "dialogue": "This is far greater than any of us.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-36", + "lineInfo": { + "dialogue": "I understand you may have questions.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Elder Oak" + } + } + ] + }, + "155": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-37", + "lineInfo": { + "dialogue": "Elder Prometheus died of old age, almost everyone from that time is dead. He elected us six to keep the secret safe.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-38", + "lineInfo": { + "dialogue": "Apparently the immortality hadn't set in just yet- magic takes time.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-39", + "lineInfo": { + "dialogue": "I don't think he really understood the extent of what he had done. We slowly began connecting the dots.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-40", + "lineInfo": { + "dialogue": "Everything seemed to lead back to the portals opening- the war in Wynn and the attack on Gavel.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Elder Oak" + } + } + ] + }, + "156": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-41", + "lineInfo": { + "dialogue": "I understand you may have questions.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Elder Oak" + } + } + ] + }, + "157": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-42", + "lineInfo": { + "dialogue": "The magical wood from the Guardian of the Forest must radiate magic that grants us our life.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-43", + "lineInfo": { + "dialogue": "This is why we locked up Aldorei, letting people live immortal lives would have dire consequences.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-44", + "lineInfo": { + "dialogue": "We tried to at least make up for some of the damage we had done...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Elder Oak" + } + } + ] + }, + "158": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-45", + "lineInfo": { + "dialogue": "The portal being opened here caused a chain reaction that opened every portal.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-46", + "lineInfo": { + "dialogue": "This is unfortunately what cursed the world and made it possible for the corruption to leak into Wynn and beings of darkness to breach Gavel.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Elder Oak" + } + } + ] + }, + "159": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-47", + "lineInfo": { + "dialogue": "This used to be an open cave that we decided to hide the rest of the Guardian in.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-48", + "lineInfo": { + "dialogue": "It seems like the immense magic transformed this place to look like this...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Elder Oak" + } + } + ] + }, + "160": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-elderoak-49", + "lineInfo": { + "dialogue": "Please... keep this quiet.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-50", + "lineInfo": { + "dialogue": "We can't put innocent lives at risk- don't you agree?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-51", + "lineInfo": { + "dialogue": "Take these please!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Elder Oak" + } + }, + { + "fileOverride": "aldoreissecretpart2-elderoak-52", + "lineInfo": { + "dialogue": "We will make our leave, you can jump after us to return to Aldorei Town.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Elder Oak" + } + } + ] + }, + "161": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-183", + "lineInfo": { + "dialogue": "I need to think.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-184", + "lineInfo": { + "dialogue": "I knew that I was getting myself into... things- but not this.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-185", + "lineInfo": { + "dialogue": "My own people have cursed the world...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-186", + "lineInfo": { + "dialogue": "Please, visit me in Efilim sometime. Hopefully I've come to terms with everything by then.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Olon" + } + } + ] + }, + "162": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-187", + "lineInfo": { + "dialogue": "Book number three finished!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-188", + "lineInfo": { + "dialogue": "Oh, hi soldier.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-189", + "lineInfo": { + "dialogue": "I didn't even hear you come in. I was too sucked up in this interesting book ''Live Life Love Life''.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-190", + "lineInfo": { + "dialogue": "*sigh*", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-191", + "lineInfo": { + "dialogue": "I've been reading all day to get myself in a different head space.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-192", + "lineInfo": { + "dialogue": "Ah, who am I kidding- this book SUCKS!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-193", + "lineInfo": { + "dialogue": "Come back tomorrow, please. I have about five more books to get through.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Olon" + } + } + ] + }, + "163": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-194", + "lineInfo": { + "dialogue": "Hi there! Great timing.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-195", + "lineInfo": { + "dialogue": "I got inspired from my journey through the world of motivational writing yesterday.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-196", + "lineInfo": { + "dialogue": "The best thing in the world is to help people around you, is that not right?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-197", + "lineInfo": { + "dialogue": "This way I'll keep myself busy while still being of assistance.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Olon" + } + } + ] + }, + "164": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-198", + "lineInfo": { + "dialogue": "Well, I'm doing better. Thank you for asking.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-199", + "lineInfo": { + "dialogue": "My shame is slowly turning to hatred for those old elders, maybe that's progress.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-200", + "lineInfo": { + "dialogue": "Please come back tomorrow, I have a gift for you.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Olon" + } + } + ] + }, + "165": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-201", + "lineInfo": { + "dialogue": "I... I know that.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-202", + "lineInfo": { + "dialogue": "I know I couldn’t have done anything, I just find it so stupid.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-203", + "lineInfo": { + "dialogue": "Stupid that the so called, ''all mighty, selfless elves'' did something like this.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-204", + "lineInfo": { + "dialogue": "Please come back tomorrow, I have a gift for you.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Olon" + } + } + ] + }, + "166": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-205", + "lineInfo": { + "dialogue": "Goodbye.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "167": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-206", + "lineInfo": { + "dialogue": "''Sunshine after Rain''... I can't wait for this one...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "168": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-207", + "lineInfo": { + "dialogue": "Shoot!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-208", + "lineInfo": { + "dialogue": "You are earlier than I expected.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-209", + "lineInfo": { + "dialogue": "I was planning to cook you a nice meal as a thank you for getting me through these past two days and for helping me earlier.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-210", + "lineInfo": { + "dialogue": "I decided to pick up a couple of new hobbies to get my mind working, cooking being one of them.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-211", + "lineInfo": { + "dialogue": "You have truly done more for me than I could have ever imagined. I’m proud to call you my friend.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-212", + "lineInfo": { + "dialogue": "However...", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-213", + "lineInfo": { + "dialogue": "I may or may not have forgot a couple of ingredients for my stew!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-214", + "lineInfo": { + "dialogue": "Can you go around the forest and see if you can find [4 Leafy Stalk] and [2 Mycanoid Spores] please.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Olon" + } + } + ] + }, + "169": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-215", + "lineInfo": { + "dialogue": "Here you go!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-216", + "lineInfo": { + "dialogue": "I think I’m finally getting over my guilt.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-217", + "lineInfo": { + "dialogue": "I realized that I never really took time to grieve my parents' death and I guess I was so occupied with finding an answer to my big conspiracy that Aldorei killed them.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-218", + "lineInfo": { + "dialogue": "Then finding out all of that information... it all just came crashing down on me.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-219", + "lineInfo": { + "dialogue": "I'm grateful that you managed to pull me out of that dark space, soldier.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-220", + "lineInfo": { + "dialogue": "Come visit me tomorrow again, please.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Olon" + } + } + ] + }, + "170": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-221", + "lineInfo": { + "dialogue": "Come back tomorrow.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + }, + "171": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-222", + "lineInfo": { + "dialogue": "Finally!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-223", + "lineInfo": { + "dialogue": "I stayed up all night working on this new project of mine.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-224", + "lineInfo": { + "dialogue": "I picked up the wonderful art of painting and decided to make something for you.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-225", + "lineInfo": { + "dialogue": "I've also gone the entire day feeling good, for once.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-226", + "lineInfo": { + "dialogue": "I feel like I'm back on track. So it's time for me to start stressing over another conspiracy.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-227", + "lineInfo": { + "dialogue": "I'm actually on my way to the Cinfras library to do some light reading, hoping to stumble upon another mystery.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-228", + "lineInfo": { + "dialogue": "Anyway, here you go!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Olon" + } + }, + { + "fileOverride": "aldoreissecretpart2-olon-229", + "lineInfo": { + "dialogue": "Hope you're careful on wherever your journey leads you. If you ever need me, just drop by.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Olon" + } + } + ] + }, + "172": { + "dialogues": [ + { + "fileOverride": "aldoreissecretpart2-olon-230", + "lineInfo": { + "dialogue": "I do some gardening when I'm stressed.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olon" + } + } + ] + } + } + }, + "All Roads To Peace": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-captaingoruca-1", + "lineInfo": { + "dialogue": "The orcs are getting unruly... Could you come back when you're Level 64, and have some experience dealing with orcs?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Goruca" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-captaingoruca-2", + "lineInfo": { + "dialogue": "Hm. It's been long enough, we should've heard back from the diplomacy squad by now...", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-3", + "lineInfo": { + "dialogue": "Ah, hello there, Wynn soldier. You should stick around! We were just launching a counterattack against the orc citadel.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-4", + "lineInfo": { + "dialogue": "Since you've helped with curbing the orcs elsewhere, you can join in the festivities- Oh, that's them coming over the hills!", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-soldier1-1", + "lineInfo": { + "dialogue": "...A CATAPULT! Since when did orcs have the knowhow to make a CATAPULT?!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Soldier" + } + }, + { + "fileOverride": "allroadstopeace-soldier2-1", + "lineInfo": { + "dialogue": "I don't know, but they just decimated our golems with it. How are we supposed to deal with that chieftain without our protection?", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Soldier" + } + }, + { + "fileOverride": "allroadstopeace-soldier2-2", + "lineInfo": { + "dialogue": "Let's just get to the medical tent and go from there. The captain will need to hear about this.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Soldier" + } + }, + { + "fileOverride": "allroadstopeace-soldier1-2", + "lineInfo": { + "dialogue": "Nonono, you don't understand- a CATAPULT?! Seriously, I can't get over this! Orc catapult! What's the world coming to?!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Soldier" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-5", + "lineInfo": { + "dialogue": "...why do you always have to embarrass me in front of the humans, you idiots...", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-6", + "lineInfo": { + "dialogue": "Obviously it seems we need some backup, soldier. Would you mind coming along to the medical tent with me?", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Captain Goruca" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-captaingoruca-7", + "lineInfo": { + "dialogue": "You lot are useless, you are! We had you sent off with thirty golems! THIRTY! And you come back with nothing to show? Do you have any idea how much that cost us?!", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-soldier1-3", + "lineInfo": { + "dialogue": "ORC CATAPULT! I'm telling you, Captain! They crushed our guard golems with huge honking boulders! What are we supposed to do against that?!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Soldier" + } + }, + { + "fileOverride": "allroadstopeace-soldier2-3", + "lineInfo": { + "dialogue": "He's right, captain. After the golems were crushed, the orcs spilled out from the fortress. If we didn't retreat we would've been killed, with just the four of us.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Soldier" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-8", + "lineInfo": { + "dialogue": "...fine. I suppose you have a point. And that means it's a good thing we have a human here to pick up all your slack.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-9", + "lineInfo": { + "dialogue": "Human! Let me give you the lowdown. Since you helped us reclaim the outpost up north, the orcs have gotten much more aggressive.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-10", + "lineInfo": { + "dialogue": "There have been many attacks here at town, and we’ve been struggling to fend them off. Thanks to the incompetence of our troops, we haven't been able to-", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-soldier1-4", + "lineInfo": { + "dialogue": "ORC CATAPULT!! ORC CATAPULT!! Listen to the words I am telling you! ORC! CATAPULT!", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Soldier" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-11", + "lineInfo": { + "dialogue": "...we haven't been able to get the orc chieftain to listen to reason and sign a new ceasefire yet. If this keeps up, we'll be overwhelmed. The brutes only seem to listen to force...", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-12", + "lineInfo": { + "dialogue": "And that's where you come in, soldier. We need you to go to the orc fortress and break through their line of defenses. Maybe if we show them we can equal their force, they'll listen, right?", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-13", + "lineInfo": { + "dialogue": "The fortress is off to the northeast, it's visible from town. Don't come back without a ceasefire- Or the chieftain's head, if peace is out of the question!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Captain Goruca" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-captaingoruca-14", + "lineInfo": { + "dialogue": "Make whatever preparations you need to break through the orcish defenses, and then go to the orcish fortress!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-15", + "lineInfo": { + "dialogue": "Remember, don't come back without a cease-fire...or if peace is out of the question, the chieftain's head!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Captain Goruca" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-bitteliso-1", + "lineInfo": { + "dialogue": "Hmh! Human! Just like say, Serepe. Villager fail, then send human to kill.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Guard Bitteliso" + } + }, + { + "fileOverride": "allroadstopeace-serepe-1", + "lineInfo": { + "dialogue": "Idiot big-noses! Human strong, but only one. Need more to break Centerworld!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Guard Serepe" + } + }, + { + "fileOverride": "allroadstopeace-serepe-2", + "lineInfo": { + "dialogue": "One against four... Human not beat even one. Ismikku! Hulve!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Guard Serepe" + } + }, + { + "fileOverride": "allroadstopeace-serepe-3", + "lineInfo": { + "dialogue": "KNOCK HUMAN DOWN!!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Orc Guards" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-zuett-1", + "lineInfo": { + "dialogue": "Idiot. Idiot human. Will die in open. Come.", + "line": { + "current": 1, + "max": 14 + }, + "npc": "???" + } + }, + { + "fileOverride": "allroadstopeace-zuett-2", + "lineInfo": { + "dialogue": "RRRGHH! Armor heavy! How human carry much weight, but so weak without?!", + "line": { + "current": 2, + "max": 14 + }, + "npc": "???" + } + }, + { + "fileOverride": "allroadstopeace-zuett-3", + "lineInfo": { + "dialogue": "Need medicine for...urgh. Blood... Where yarrow root...", + "line": { + "current": 3, + "max": 14 + }, + "npc": "???" + } + }, + { + "fileOverride": "allroadstopeace-zuett-4", + "lineInfo": { + "dialogue": "Mmh. Get up. Human! Get up! See human breathing, you awake!", + "line": { + "current": 4, + "max": 14 + }, + "npc": "???" + } + }, + { + "fileOverride": "allroadstopeace-zuett-5", + "lineInfo": { + "dialogue": "Name Zuett. Your name, Idiot. But only because taught wrong. So will help idiot. Take medicine.", + "line": { + "current": 5, + "max": 14 + }, + "npc": "???" + } + }, + { + "fileOverride": "allroadstopeace-zuett-6", + "lineInfo": { + "dialogue": "Hmh! Better than silly magic potion. Earth heals best...", + "line": { + "current": 6, + "max": 14 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-7", + "lineInfo": { + "dialogue": "Anyway. Why you here? Why now? Give me good reason. Because kill orcs for \"peace\"?", + "line": { + "current": 7, + "max": 14 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-8", + "lineInfo": { + "dialogue": "Hmh. Mhm, mhm. Yes, idiot villagers come by, lots of metal villager too. Say want peace- just want kill. Evil war machines.", + "line": { + "current": 8, + "max": 14 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-9", + "lineInfo": { + "dialogue": "Human really want peace? Then listen to Zuett. Killing not the way. Orcs strong, but not killers. Villager say, but villager wrong.", + "line": { + "current": 9, + "max": 14 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-10", + "lineInfo": { + "dialogue": "We... Orcs... Not listen to just force. Orcs see strength, not idiot-killing. Human been idiot-killing. Time to stop.", + "line": { + "current": 10, + "max": 14 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-11", + "lineInfo": { + "dialogue": "Whole war stupid. War killing us. Not all Orcs meant to fight. Human need learn first.", + "line": { + "current": 11, + "max": 14 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-12", + "lineInfo": { + "dialogue": "Need talk with Arrai-Veretel. But first, need trust. To start trust, listen to Zuett.", + "line": { + "current": 12, + "max": 14 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-13", + "lineInfo": { + "dialogue": "Will give guards peace offer. [Elite Boar Meat]. Go hunt. Look bushes up north.", + "line": { + "current": 13, + "max": 14 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-14", + "lineInfo": { + "dialogue": "If want walk away like coward, do now. If human trust me...meet by fort after get meat.", + "line": { + "current": 14, + "max": 14 + }, + "npc": "Zuett" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-zuett-15", + "lineInfo": { + "dialogue": "Human. Hunt meat- chase boar out of bush. Hunt boar, and bring meat. Simple?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Zuett" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-zuett-16", + "lineInfo": { + "dialogue": "RRRRGH! HUMAN!! WHAT YOU DO?!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-17", + "lineInfo": { + "dialogue": "Zuett not stupid! Zuett saw human hunt!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-18", + "lineInfo": { + "dialogue": "Zuett saw human THROW AWAY MEAT!!! WHY IDIOT HUMAN BEING BIGGER IDIOT?!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-19", + "lineInfo": { + "dialogue": "Human think Zuett joking?! Human think war some sillyfunny?! GET MORE MEAT!!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Zuett" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-zuett-20", + "lineInfo": { + "dialogue": "Hmh. Hunt like child, but succeed anyway. Human should rely less on magic. Human serious, though.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-21", + "lineInfo": { + "dialogue": "Good. Human really want peace. Help stop stupid war... Even though human and villager start anyway...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-22", + "lineInfo": { + "dialogue": "Follow. We go Centerworld. Guards still angry, but can say good for you. Stay quiet- Zuett do talk.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Zuett" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-serepe-4", + "lineInfo": { + "dialogue": "Zuett! What you do? Thought drag away human to kill for good! Why bringing back now?", + "line": { + "current": 1, + "max": 21 + }, + "npc": "Guard Serepe" + } + }, + { + "fileOverride": "allroadstopeace-bitteliso-2", + "lineInfo": { + "dialogue": "Zuett bleeding heart. Strong in compassion. Saw hurt, thought help. Stupid, but can respect.", + "line": { + "current": 2, + "max": 21 + }, + "npc": "Guard Bitteliso" + } + }, + { + "fileOverride": "allroadstopeace-zuett-23", + "lineInfo": { + "dialogue": "Listen to Zuett! Human want peace. Came for peace, but was taught peace come from idiot-killing by villager.", + "line": { + "current": 3, + "max": 21 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-bitteliso-3", + "lineInfo": { + "dialogue": "Grrrh! All human say! What special about this human?", + "line": { + "current": 4, + "max": 21 + }, + "npc": "Guard Bitteliso" + } + }, + { + "fileOverride": "allroadstopeace-zuett-24", + "lineInfo": { + "dialogue": "Human listen to Zuett. Hunt spineback boar, bring meat. See? If human not care, human not listen. Not hunt.", + "line": { + "current": 5, + "max": 21 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-serepe-5", + "lineInfo": { + "dialogue": "...hm. ... ... ...can respect human strength. Can hunt spineback, mean strong.", + "line": { + "current": 6, + "max": 21 + }, + "npc": "Guard Serepe" + } + }, + { + "fileOverride": "allroadstopeace-bitteliso-4", + "lineInfo": { + "dialogue": "But strong not mean trust! Strength of body only one thing.", + "line": { + "current": 7, + "max": 21 + }, + "npc": "Guard Bitteliso" + } + }, + { + "fileOverride": "allroadstopeace-onluk-1", + "lineInfo": { + "dialogue": "RESSINTER HURT! RESSINTER HURT BAD! NEED HELP!! HELP NOW!!", + "line": { + "current": 8, + "max": 21 + }, + "npc": "???" + } + }, + { + "fileOverride": "allroadstopeace-zuett-25", + "lineInfo": { + "dialogue": "Onluk! Tell what happen! Ressinter...healer hurt?", + "line": { + "current": 9, + "max": 21 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-serepe-6", + "lineInfo": { + "dialogue": "!! Ressinter only healer! Zuett want be healer, Creinu want be healer, but not!", + "line": { + "current": 10, + "max": 21 + }, + "npc": "Guard Serepe" + } + }, + { + "fileOverride": "allroadstopeace-onluk-2", + "lineInfo": { + "dialogue": "KREIMU! Get Kreimu! Mudspring camp! She good healer!", + "line": { + "current": 11, + "max": 21 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-bitteliso-5", + "lineInfo": { + "dialogue": "Will go! Fast runner! Ressinter no die today! Serepe, deal with human!", + "line": { + "current": 12, + "max": 21 + }, + "npc": "Guard Bitteliso" + } + }, + { + "fileOverride": "allroadstopeace-zuett-26", + "lineInfo": { + "dialogue": "Hm... HM!! Human, uh, human good healer! Heal own injury with medicine! Human will help!", + "line": { + "current": 13, + "max": 21 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-serepe-7", + "lineInfo": { + "dialogue": "Gwuh?! Zuett! Lying bad! Human idiot no hea-", + "line": { + "current": 14, + "max": 21 + }, + "npc": "Guard Serepe" + } + }, + { + "fileOverride": "allroadstopeace-onluk-3", + "lineInfo": { + "dialogue": "RESSINTER DYING! NO CARE IF LIE! ANY HEALER BETTER THAN NO HEALER!", + "line": { + "current": 15, + "max": 21 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-serepe-8", + "lineInfo": { + "dialogue": "HEY! ONLUK IDIOT! NO LET HUMAN IN!", + "line": { + "current": 16, + "max": 21 + }, + "npc": "Guard Serepe" + } + }, + { + "fileOverride": "allroadstopeace-zuett-27", + "lineInfo": { + "dialogue": "Onluk, tell! How Ressinter hurt?", + "line": { + "current": 17, + "max": 21 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-onluk-4", + "lineInfo": { + "dialogue": "Cannon backfire! Caught in blast! Cut up all over, bleeding bad! Healer already brought medicine tent!", + "line": { + "current": 18, + "max": 21 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-zuett-28", + "lineInfo": { + "dialogue": "Hhhgh. Bad injury... Human. Heal Ressinter, fast!", + "line": { + "current": 19, + "max": 21 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-29", + "lineInfo": { + "dialogue": "Make balm to keep healer alive! Even if only keep alive for Kreimu to heal, keep Ressinter alive!", + "line": { + "current": 20, + "max": 21 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-30", + "lineInfo": { + "dialogue": "Mix herbs. Use medicine book. And stay in tent!", + "line": { + "current": 21, + "max": 21 + }, + "npc": "Zuett" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-onluk-5", + "lineInfo": { + "dialogue": "Nunexetor! Why you here? Should be with goblin!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-1", + "lineInfo": { + "dialogue": "Heard you yelling from under the tower. Wondered what was going on. Now I'm here. Why's there a human here?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-onluk-6", + "lineInfo": { + "dialogue": "Zuett say human good healer. No other healers here! If Ressinter die, will kill human, and hit Zuett since lying!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-2", + "lineInfo": { + "dialogue": "...mmh. None of the goblins know healing here. You're right. Help our healer, human- or it's your life on the line too.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Nunexetor" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-zuett-31", + "lineInfo": { + "dialogue": "Not know much about medicine yet. Medicine give to you, last one- Was made before. Know this though.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-32", + "lineInfo": { + "dialogue": "Ressinter bleeding bad. Find herb good for bleeding. Won't need more than two herb of type, too.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Zuett" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-zuett-33", + "lineInfo": { + "dialogue": "Make balm to keep healer alive! Even if only keep alive for Kreimu to heal, keep Ressinter alive!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-34", + "lineInfo": { + "dialogue": "Mix herbs. Use medicine book. And stay in tent!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Zuett" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-bitteliso-6", + "lineInfo": { + "dialogue": "KREIMU HERE! HEAL RESSINTER!! NOW!!!", + "line": { + "current": 1, + "max": 24 + }, + "npc": "Bitteliso" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-1", + "lineInfo": { + "dialogue": "Gwuh, yes! Stop shouting! I- Urgh!", + "line": { + "current": 2, + "max": 24 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-2", + "lineInfo": { + "dialogue": "Here in time. Ressinter still alive...why other balm on cuts?", + "line": { + "current": 3, + "max": 24 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-3", + "lineInfo": { + "dialogue": "Wait, why human here? Ressinter hurt because human?", + "line": { + "current": 4, + "max": 24 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-onluk-7", + "lineInfo": { + "dialogue": "No, human try heal Ressinter!", + "line": { + "current": 5, + "max": 24 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-zuett-35", + "lineInfo": { + "dialogue": "Human try heal Ressinter. Thought better healer than Zuett. Try hard to keep Ressinter alive.", + "line": { + "current": 6, + "max": 24 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-4", + "lineInfo": { + "dialogue": "... ... ...Nunexetor. You sensible. Is true? Human try heal Ressinter?", + "line": { + "current": 7, + "max": 24 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-3", + "lineInfo": { + "dialogue": "Yes. The human made herb balms and tried to heal Ressinter.", + "line": { + "current": 8, + "max": 24 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-bitteliso-7", + "lineInfo": { + "dialogue": "So Zuett not lie. Human care about orc?", + "line": { + "current": 9, + "max": 24 + }, + "npc": "Bitteliso" + } + }, + { + "fileOverride": "allroadstopeace-zuett-36", + "lineInfo": { + "dialogue": "See? Human try. Maybe not heal Ressinter full, but try save life of someone call enemy by idiot Villager.", + "line": { + "current": 10, + "max": 24 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-37", + "lineInfo": { + "dialogue": "Human learn Villagers lie. Trying learn about us. War only because Villagers trick! Not because human bad!", + "line": { + "current": 11, + "max": 24 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-bitteliso-8", + "lineInfo": { + "dialogue": "...hmh! Can respect. Strong in mind if able to learn.", + "line": { + "current": 12, + "max": 24 + }, + "npc": "Bitteliso" + } + }, + { + "fileOverride": "allroadstopeace-onluk-8", + "lineInfo": { + "dialogue": "Agree with Bitteliso and Zuett!", + "line": { + "current": 13, + "max": 24 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-4", + "lineInfo": { + "dialogue": "... Agreed. We should get back to our tasks though.", + "line": { + "current": 14, + "max": 24 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-5", + "lineInfo": { + "dialogue": "Will stay for while in case Ressinter need medicine more.", + "line": { + "current": 15, + "max": 24 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-zuett-38", + "lineInfo": { + "dialogue": "Sorry to put human up to task sudden, but now more orc trust you.", + "line": { + "current": 16, + "max": 24 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-39", + "lineInfo": { + "dialogue": "Since orc trust...maybe can talk to Arrai-Veretel now. Follow.", + "line": { + "current": 17, + "max": 24 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-ureietun-1", + "lineInfo": { + "dialogue": "No enter! Much camp see human heal, but still no trust human!", + "line": { + "current": 18, + "max": 24 + }, + "npc": "Ureietun" + } + }, + { + "fileOverride": "allroadstopeace-zuett-40", + "lineInfo": { + "dialogue": "Ureietun! Human help save Ressinter life! Why no trust?", + "line": { + "current": 19, + "max": 24 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-ureietun-2", + "lineInfo": { + "dialogue": "Human being led by you. Human led by villager too! Teach good thing, yes, but what if human just copying?", + "line": { + "current": 20, + "max": 24 + }, + "npc": "Ureietun" + } + }, + { + "fileOverride": "allroadstopeace-ureietun-3", + "lineInfo": { + "dialogue": "Human can earn trust alone! Zuett, stay in Arrai-room.", + "line": { + "current": 21, + "max": 24 + }, + "npc": "Ureietun" + } + }, + { + "fileOverride": "allroadstopeace-zuett-41", + "lineInfo": { + "dialogue": "But-", + "line": { + "current": 22, + "max": 24 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-ureietun-4", + "lineInfo": { + "dialogue": "RRRRRGH! STUPID ZUETT! WAR HAPPEN FOR REASON! GO AWAY!", + "line": { + "current": 23, + "max": 24 + }, + "npc": "Ureietun" + } + }, + { + "fileOverride": "allroadstopeace-ureietun-5", + "lineInfo": { + "dialogue": "...can trust human not kill. Human can walk around Centerworld. But human no see Arrai-Veretel!", + "line": { + "current": 24, + "max": 24 + }, + "npc": "Ureietun" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-ressinter-1", + "lineInfo": { + "dialogue": "Whuh! LOMOSTER! LOMOSTER HURT!", + "line": { + "current": 1, + "max": 28 + }, + "npc": "Ressinter" + } + }, + { + "fileOverride": "allroadstopeace-onluk-9", + "lineInfo": { + "dialogue": "No! Lomoster okay! Ressinter not okay- Wait. Ressinter sort of okay! Need rest still!", + "line": { + "current": 2, + "max": 28 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-ressinter-2", + "lineInfo": { + "dialogue": "But Lomoster at cannon when explode!", + "line": { + "current": 3, + "max": 28 + }, + "npc": "Ressinter" + } + }, + { + "fileOverride": "allroadstopeace-onluk-10", + "lineInfo": { + "dialogue": "Lomoster wear armor. Armor took hurt, Lomoster okay!", + "line": { + "current": 4, + "max": 28 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-ressinter-3", + "lineInfo": { + "dialogue": "...mmmh, fine... Wait, why human here?", + "line": { + "current": 5, + "max": 28 + }, + "npc": "Ressinter" + } + }, + { + "fileOverride": "allroadstopeace-zuett-42", + "lineInfo": { + "dialogue": "Human heal Ressinter. See? Human good healer!", + "line": { + "current": 6, + "max": 28 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-5", + "lineInfo": { + "dialogue": "I don’t believe it. How did-", + "line": { + "current": 7, + "max": 28 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-bitteliso-9", + "lineInfo": { + "dialogue": "KREIMU HERE! HEAL RESSINTER!! NOW!!!", + "line": { + "current": 8, + "max": 28 + }, + "npc": "Bitteliso" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-6", + "lineInfo": { + "dialogue": "Gwuh, yes! Stop shouting! I- Whuh...", + "line": { + "current": 9, + "max": 28 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-7", + "lineInfo": { + "dialogue": "Ressinter already okay! Bitteliso lying?!", + "line": { + "current": 10, + "max": 28 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-bitteliso-10", + "lineInfo": { + "dialogue": "Wait, Ressinter okay? How did- HUMAN?! WHY HUMAN IN CAMP?!", + "line": { + "current": 11, + "max": 28 + }, + "npc": "Bitteliso" + } + }, + { + "fileOverride": "allroadstopeace-onluk-11", + "lineInfo": { + "dialogue": "Human heal Ressinter! Not know how, but human save Ressinter life!", + "line": { + "current": 12, + "max": 28 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-zuett-43", + "lineInfo": { + "dialogue": "Told Bitteliso. Human learning! Save life of orc, even though idiot Villager say kill.", + "line": { + "current": 13, + "max": 28 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-8", + "lineInfo": { + "dialogue": "...how. How. HOW! How human so good at healing?! Why human help?", + "line": { + "current": 14, + "max": 28 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-zuett-44", + "lineInfo": { + "dialogue": "Can trust human. Human try unlearn bad villager teach.", + "line": { + "current": 15, + "max": 28 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-bitteliso-11", + "lineInfo": { + "dialogue": "...fine. Good human, not stupid human. Bitteliso sorry for beating. Here.", + "line": { + "current": 16, + "max": 28 + }, + "npc": "Bitteliso" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-6", + "lineInfo": { + "dialogue": "Shouldn’t we get back to what we were doing?", + "line": { + "current": 17, + "max": 28 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-9", + "lineInfo": { + "dialogue": "...will stay in case Ressinter need help.", + "line": { + "current": 18, + "max": 28 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-ressinter-4", + "lineInfo": { + "dialogue": "Ressinter not old man! No need sitter!", + "line": { + "current": 19, + "max": 28 + }, + "npc": "Ressinter" + } + }, + { + "fileOverride": "allroadstopeace-zuett-45", + "lineInfo": { + "dialogue": "Not know that human actually good at heal! Very good! Healer, not hunter. More orc trust you now.", + "line": { + "current": 20, + "max": 28 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-46", + "lineInfo": { + "dialogue": "Since orc trust...maybe can talk to Arrai-Veretel now. Follow!", + "line": { + "current": 21, + "max": 28 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-ureietun-6", + "lineInfo": { + "dialogue": "No enter! Much camp see human heal, but still no trust human!", + "line": { + "current": 22, + "max": 28 + }, + "npc": "Ureietun" + } + }, + { + "fileOverride": "allroadstopeace-zuett-47", + "lineInfo": { + "dialogue": "Ureietun! Human save Ressinter life! Why no trust?", + "line": { + "current": 23, + "max": 28 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-ureietun-7", + "lineInfo": { + "dialogue": "Human being led by you. Human led by villager too! Teach good thing, yes, but what if human just copying?", + "line": { + "current": 24, + "max": 28 + }, + "npc": "Ureietun" + } + }, + { + "fileOverride": "allroadstopeace-ureietun-8", + "lineInfo": { + "dialogue": "Human can earn trust alone! Zuett, stay in Arrai-room.", + "line": { + "current": 25, + "max": 28 + }, + "npc": "Ureietun" + } + }, + { + "fileOverride": "allroadstopeace-zuett-48", + "lineInfo": { + "dialogue": "But-", + "line": { + "current": 26, + "max": 28 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-ureietun-9", + "lineInfo": { + "dialogue": "RRRRRGH! STUPID ZUETT! WAR HAPPEN FOR REASON! GO AWAY!", + "line": { + "current": 27, + "max": 28 + }, + "npc": "Ureietun" + } + }, + { + "fileOverride": "allroadstopeace-ureietun-10", + "lineInfo": { + "dialogue": "Can trust human not kill. Human can walk around Centerworld. But human no see Arrai-Veretel!", + "line": { + "current": 28, + "max": 28 + }, + "npc": "Ureietun" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-ureietun-11", + "lineInfo": { + "dialogue": "Human stupid? I say no see Arrai-Veretel!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ureietun" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-yunelsu-1", + "lineInfo": { + "dialogue": "HRRRGH!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Yunelsu" + } + }, + { + "fileOverride": "allroadstopeace-yunelsu-2", + "lineInfo": { + "dialogue": "GRRGH! GRRGAAAH! MOOOOOOVE!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Yunelsu" + } + }, + { + "fileOverride": "allroadstopeace-yunelsu-3", + "lineInfo": { + "dialogue": "YUNELSU NOT BEATEN...HRRRK...BY ROCK!!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Yunelsu" + } + }, + { + "fileOverride": "allroadstopeace-yunelsu-4", + "lineInfo": { + "dialogue": "Hrrf...haaah...hhhuman! Weird...weird kind human!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Yunelsu" + } + }, + { + "fileOverride": "allroadstopeace-yunelsu-5", + "lineInfo": { + "dialogue": "Rock stuck. Trying to lift- for train strength! No one able to lift rock.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Yunelsu" + } + }, + { + "fileOverride": "allroadstopeace-yunelsu-6", + "lineInfo": { + "dialogue": "Yunelsu try throw rock into river! Have thrown other rock, not this one.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Yunelsu" + } + }, + { + "fileOverride": "allroadstopeace-yunelsu-7", + "lineInfo": { + "dialogue": "Human! Try move rock!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Yunelsu" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-yunelsu-8", + "lineInfo": { + "dialogue": "Human! Try move rock, use magic!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Yunelsu" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-yunelsu-9", + "lineInfo": { + "dialogue": "Hmm...human magic strong, but rock still not moving.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Yunelsu" + } + }, + { + "fileOverride": "allroadstopeace-yunelsu-10", + "lineInfo": { + "dialogue": "Work together! Cast magic at rock, I try lift again! Ready!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Yunelsu" + } + }, + { + "fileOverride": "allroadstopeace-yunelsu-11", + "lineInfo": { + "dialogue": "HGGGGRRK! GO!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Yunelsu" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-yunelsu-12", + "lineInfo": { + "dialogue": "Hrrgh... Hrrf. Must be...old earth rock.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Yunelsu" + } + }, + { + "fileOverride": "allroadstopeace-yunelsu-13", + "lineInfo": { + "dialogue": "Been here very long time. Stuck here, rock where earth wants rock to be.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Yunelsu" + } + }, + { + "fileOverride": "allroadstopeace-yunelsu-14", + "lineInfo": { + "dialogue": "Yunelsu find other rock then. Sometimes rock break, though.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Yunelsu" + } + }, + { + "fileOverride": "allroadstopeace-yunelsu-15", + "lineInfo": { + "dialogue": "See? Many broken rock. Hear can be good for armor though. You take.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Yunelsu" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-yunelsu-16", + "lineInfo": { + "dialogue": "Earth say what earth should be. Only need to listen to her.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Yunelsu" + } + }, + { + "fileOverride": "allroadstopeace-yunelsu-17", + "lineInfo": { + "dialogue": "Earth say rock should stay here, then rock stays here. Simple.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Yunelsu" + } + }, + { + "fileOverride": "allroadstopeace-yunelsu-18", + "lineInfo": { + "dialogue": "Hurts, seeing earth rot in north. Big-nose grubs should feel her pain too- they make earth sick!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Yunelsu" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-teiren-1", + "lineInfo": { + "dialogue": "Hey! Human! Human who hunt spineback boar and help heal healer!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Teiren" + } + }, + { + "fileOverride": "allroadstopeace-teiren-2", + "lineInfo": { + "dialogue": "Not stupid human who go around kill other orc! Good human! Can trust. So trust, will ask for small thing.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Teiren" + } + }, + { + "fileOverride": "allroadstopeace-teiren-3", + "lineInfo": { + "dialogue": "Human OFFERING help- Hmh! Very good human! Task simple. Southeast of fort, past ridge, Teiren old camp.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Teiren" + } + }, + { + "fileOverride": "allroadstopeace-teiren-4", + "lineInfo": { + "dialogue": "Used to live, but left because Freelancer jump down from mountain. Forgot important thing there!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Teiren" + } + }, + { + "fileOverride": "allroadstopeace-teiren-5", + "lineInfo": { + "dialogue": "Need stay here, make sure stupid Peloros no run into firepit. Has done before. So, you go get!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Teiren" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-teiren-6", + "lineInfo": { + "dialogue": "Oh, human forget. Teiren tell again! Southeast of fort, past ridge, Teiren old camp.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Teiren" + } + }, + { + "fileOverride": "allroadstopeace-teiren-7", + "lineInfo": { + "dialogue": "Forgot important thing there. Need make sure Peloros no run into firepit. So, you go get!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Teiren" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-freelancer-1", + "lineInfo": { + "dialogue": "Oi, oi! Y'oughta gimme 'at back right now, li'l lady!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Freelancer" + } + }, + { + "fileOverride": "allroadstopeace-alraune-1", + "lineInfo": { + "dialogue": "Absolutely NOT, you craven wind spirit! This belongs to me now!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Alraune" + } + }, + { + "fileOverride": "allroadstopeace-freelancer-2", + "lineInfo": { + "dialogue": "Lady, everything the wind touches is OURS! Not ta mention we’re so close to the mountains we live on! This camp's our property, and that thing you got's part of the camp!", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Freelancer" + } + }, + { + "fileOverride": "allroadstopeace-alraune-2", + "lineInfo": { + "dialogue": "Nonsense! This camp was built by those who respected the earth and its bounties. Now that its inhabitants have left, nature is free to reclaim it, as is right!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Alraune" + } + }, + { + "fileOverride": "allroadstopeace-freelancer-3", + "lineInfo": { + "dialogue": "Aw yeah? Issat it? You're a peach, gal, but I'll clip those petals, you don't give it up right now!", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Freelancer" + } + }, + { + "fileOverride": "allroadstopeace-alraune-3", + "lineInfo": { + "dialogue": "What a brutish lout you are, threatening an embodiment of nature! I won't give this up without a fight!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Alraune" + } + }, + { + "fileOverride": "allroadstopeace-freelancer-4", + "lineInfo": { + "dialogue": "Shouldn'ta crossed me, doll! Remember who spreads your pollen next time, huh?! Now to just take this back up the mountain...", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Freelancer" + } + }, + { + "fileOverride": "allroadstopeace-freelancer-5", + "lineInfo": { + "dialogue": "Oi! Who's THIS joker now? You lookin' ta empty your wallet for me or something?", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Freelancer" + } + }, + { + "fileOverride": "allroadstopeace-freelancer-6", + "lineInfo": { + "dialogue": "What, you want this thing too?! It's mine, y'hear? MINE! You can't have it!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Freelancer" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-teiren-8", + "lineInfo": { + "dialogue": "Human! Was right to send out. Peloros fall over chair and almost burn! Did find thing? Very distinctive, only thing left at camp.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Teiren" + } + }, + { + "fileOverride": "allroadstopeace-teiren-9", + "lineInfo": { + "dialogue": "Hmhm!! Yes! This what looking for! Very good human! Human deserve reward for be good human!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Teiren" + } + }, + { + "fileOverride": "allroadstopeace-teiren-10", + "lineInfo": { + "dialogue": "Oh? Human not know what thing is? Want know?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Teiren" + } + }, + { + "fileOverride": "allroadstopeace-teiren-11", + "lineInfo": { + "dialogue": "Silly! If human not know what thing is, no tell! Can learn for self.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Teiren" + } + }, + { + "fileOverride": "allroadstopeace-teiren-12", + "lineInfo": { + "dialogue": "Still. Here, for good human!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Teiren" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-teiren-13", + "lineInfo": { + "dialogue": "Will say, got thing from Earthpit. Was brought by Holehold gofer during party.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Teiren" + } + }, + { + "fileOverride": "allroadstopeace-teiren-14", + "lineInfo": { + "dialogue": "Special thing! Kept for long time. Important, so was bad to forget.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Teiren" + } + }, + { + "fileOverride": "allroadstopeace-teiren-15", + "lineInfo": { + "dialogue": "Will maybe invite human to next party!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Teiren" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-xoeinbor-1", + "lineInfo": { + "dialogue": "Grrh...stupid Jixy. Dumb human language!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Xoeinbor" + } + }, + { + "fileOverride": "allroadstopeace-xoeinbor-2", + "lineInfo": { + "dialogue": "Hrrh! Human! You language dumb! Name smart, flow like water in Orc language, look like dungpile on paper in human language!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Xoeinbor" + } + }, + { + "fileOverride": "allroadstopeace-xoeinbor-3", + "lineInfo": { + "dialogue": "Say name! Look at spell, say name! Try!! TRY!!!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Xoeinbor" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-xoeinbor-4", + "lineInfo": { + "dialogue": "Want human try again! Feel pain of good name in stupid language! SAY NAME!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Xoeinbor" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-xoeinbor-5", + "lineInfo": { + "dialogue": "NO! Wrong! Say wrong, all wrong! Sound even stupider than normal!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Xoeinbor" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-xoeinbor-6", + "lineInfo": { + "dialogue": "GRRRH! Confusing name! Not confusing in orcish! Human say all wrong!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Xoeinbor" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-xoeinbor-7", + "lineInfo": { + "dialogue": "Stupid stupid STUPID! Not at all say like spell! See stupid language now?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Xoeinbor" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-xoeinbor-8", + "lineInfo": { + "dialogue": "GAAAH!! No, no, no, no!!! Why need learn human language?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Xoeinbor" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-xoeinbor-9", + "lineInfo": { + "dialogue": "NAME NOT JOE! WHAT KIND NAME JOE?! JOE STUPID NAME!!! AAAAHH!!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Xoeinbor" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-xoeinbor-10", + "lineInfo": { + "dialogue": "Hmh. That right, human. Willing to try at least. See how bad name look?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Xoeinbor" + } + }, + { + "fileOverride": "allroadstopeace-xoeinbor-11", + "lineInfo": { + "dialogue": "Said \"shoon-bur.\" Not even LOOK like that in human letter!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Xoeinbor" + } + }, + { + "fileOverride": "allroadstopeace-xoeinbor-12", + "lineInfo": { + "dialogue": "Here. Needed show anger at stupid language, not show anger at human.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Xoeinbor" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-xoeinbor-13", + "lineInfo": { + "dialogue": "Supposed to learn human language for peace. Show orc good because big-nose grub say bad.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Xoeinbor" + } + }, + { + "fileOverride": "allroadstopeace-xoeinbor-14", + "lineInfo": { + "dialogue": "Idiot villager get human before orc, so human greet orc with weapon and death!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Xoeinbor" + } + }, + { + "fileOverride": "allroadstopeace-xoeinbor-15", + "lineInfo": { + "dialogue": "Now learn language but only in half, and name all stupid!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Xoeinbor" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-peloros-1", + "lineInfo": { + "dialogue": "Hm! Human, hunter, healer, halfwit soldier. Many things! Human also runner?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Peloros" + } + }, + { + "fileOverride": "allroadstopeace-peloros-2", + "lineInfo": { + "dialogue": "Peloros from Holehold. Camp home to messengers and runners. Have thing to deliver to Fruludir in green tower.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Peloros" + } + }, + { + "fileOverride": "allroadstopeace-peloros-3", + "lineInfo": { + "dialogue": "Human do instead. Want to see if human able. Supposed to be soldier- soldier must run to battlefield fast!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Peloros" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-peloros-4", + "lineInfo": { + "dialogue": "RGH! Can understand just fine, just not speak as good! No mock us!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Peloros" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-peloros-5", + "lineInfo": { + "dialogue": "Human want try again? Is training, not end of world. Practicing makes all stronger.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Peloros" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-peloros-6", + "lineInfo": { + "dialogue": "Then human run fast to green tower- deliver in 25 seconds! Or else come back. Not urgent delivery, so delay fine.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Peloros" + } + }, + { + "fileOverride": "allroadstopeace-peloros-7", + "lineInfo": { + "dialogue": "Will know human delivered in time. How? Human will see if run fast!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Peloros" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-peloros-8", + "lineInfo": { + "dialogue": "NO WASTE TIME! GO!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Peloros" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-fruludir-1", + "lineInfo": { + "dialogue": "Hm! Human have Peloros box. Peloros give human run training. Give here.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Fruludir" + } + }, + { + "fileOverride": "allroadstopeace-fruludir-2", + "lineInfo": { + "dialogue": "More than Zuett with human? Good sign. Maybe fighting stop soon.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Fruludir" + } + }, + { + "fileOverride": "allroadstopeace-fruludir-3", + "lineInfo": { + "dialogue": "Patience, human. Box full of signal flare. Will light one to show Peloros human got here in time.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Fruludir" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-fruludir-4", + "lineInfo": { + "dialogue": "Peloros train hard. Peloros work hard. Peloros work everyone hard, do everything hard.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Fruludir" + } + }, + { + "fileOverride": "allroadstopeace-fruludir-5", + "lineInfo": { + "dialogue": "Heard that Peloros thinking of making more race spot.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Fruludir" + } + }, + { + "fileOverride": "allroadstopeace-fruludir-6", + "lineInfo": { + "dialogue": "Maybe if war stop, then all orc can try run. Maybe human try run too.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Fruludir" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-fruludir-7", + "lineInfo": { + "dialogue": "Weird human. Talk with Zuett? Try hard to stop war. Fruludir no care about fight. Strong eyes, not strong body.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Fruludir" + } + }, + { + "fileOverride": "allroadstopeace-fruludir-8", + "lineInfo": { + "dialogue": "But, human not supposed be up here. Should leave.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Fruludir" + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-peloros-9", + "lineInfo": { + "dialogue": "Saw the firework. Human did well, finishing single morning exercise!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Peloros" + } + }, + { + "fileOverride": "allroadstopeace-peloros-10", + "lineInfo": { + "dialogue": "Orc do much training to stay strong. Orc runners must be fast and not tire to become Marathon!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Peloros" + } + }, + { + "fileOverride": "allroadstopeace-peloros-11", + "lineInfo": { + "dialogue": "Here. Human take. Train harder. Maybe visit Holehold- also place for relax, not just run. Stamina good for all.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Peloros" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-peloros-12", + "lineInfo": { + "dialogue": "Cliffhearth also have runners, but Cliffhearth more for communication. Make message instead of bring message.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Peloros" + } + }, + { + "fileOverride": "allroadstopeace-peloros-13", + "lineInfo": { + "dialogue": "All camp have purpose. Was more camp before, then villagers chase orcs away and make earth rot!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Peloros" + } + }, + { + "fileOverride": "allroadstopeace-peloros-14", + "lineInfo": { + "dialogue": "Maybe half many camp as before now. Need to be strong so big grubs not chase away again!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Peloros" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-creinu-1", + "lineInfo": { + "dialogue": "Grrmb. Dumb Kreimu. Stupid Wynn language...Gavel language...pfeh. Whatever language. Not orc language.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Creinu" + } + }, + { + "fileOverride": "allroadstopeace-creinu-2", + "lineInfo": { + "dialogue": "Her name, my name, sound same. Don't sound same in Orcish! But in YOUR language, sound same!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Creinu" + } + }, + { + "fileOverride": "allroadstopeace-creinu-3", + "lineInfo": { + "dialogue": "Not just that- Learning to be medicine orc. She medicine orc too! Healer, brewer, herbalist, whatever. Too much same!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Creinu" + } + }, + { + "fileOverride": "allroadstopeace-creinu-4", + "lineInfo": { + "dialogue": "Angry about it. Been distracting from training too. Human want help like help with Ressinter? Get Creinu- Crei...nu...not Kreimu...ingredient for medicine.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Creinu" + } + }, + { + "fileOverride": "allroadstopeace-creinu-5", + "lineInfo": { + "dialogue": "[3 Leafy Stalk]. Need to learn how to make much medicine out of little herb. Easy?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Creinu" + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-creinu-6", + "lineInfo": { + "dialogue": "What, human get confused and give stalks to Kreimu instead?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Creinu" + } + }, + { + "fileOverride": "allroadstopeace-creinu-7", + "lineInfo": { + "dialogue": "Bring me, Creinu- not Kreimu- [3 Leafy Stalks].", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Creinu" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-creinu-8", + "lineInfo": { + "dialogue": "Grrmbl... Dumb Kreimu... Human have stalks?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Creinu" + } + }, + { + "fileOverride": "allroadstopeace-creinu-9", + "lineInfo": { + "dialogue": "Good. Can take these, then- Alraune girl have sometimes. Tasty, but not good medicine.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Creinu" + } + }, + { + "fileOverride": "allroadstopeace-creinu-10", + "lineInfo": { + "dialogue": "Durbeo might like, actually. Durbeo orc in food storage tower behind me. Maybe he want help too?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Creinu" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-creinu-11", + "lineInfo": { + "dialogue": "Even when Kreimu not here, others say \"Oh, Kreimu! Am cut, please help!\" Things like that. To me!!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Creinu" + } + }, + { + "fileOverride": "allroadstopeace-creinu-12", + "lineInfo": { + "dialogue": "Ressinter right there too! Explain that name is Creinu, not Kreimu, they go him. Then can't practice! Stupid not-orc language...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Creinu" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-ressinter-5", + "lineInfo": { + "dialogue": "Bah... Kreimu worry too much. Will be fine now.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ressinter" + } + }, + { + "fileOverride": "allroadstopeace-ressinter-6", + "lineInfo": { + "dialogue": "...did not expect see good human in lifetime.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ressinter" + } + }, + { + "fileOverride": "allroadstopeace-ressinter-7", + "lineInfo": { + "dialogue": "Armor still look gaudy though. Should wear orc leathers if want match style.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ressinter" + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-durbeo-1", + "lineInfo": { + "dialogue": "Oh. Human who help Ressinter. You are strange. Not like other human at all.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Durbeo" + } + }, + { + "fileOverride": "allroadstopeace-durbeo-2", + "lineInfo": { + "dialogue": "This? This food storage. Mostly for meats and roots. Though, large ritual happening soon.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Durbeo" + } + }, + { + "fileOverride": "allroadstopeace-durbeo-3", + "lineInfo": { + "dialogue": "Festival with Earthpit. Will be coming soon- so stocking up food for that.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Durbeo" + } + }, + { + "fileOverride": "allroadstopeace-durbeo-4", + "lineInfo": { + "dialogue": "...human look like want help. You...really are strange. I suppose...if you want help with food, could do some fishing.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Durbeo" + } + }, + { + "fileOverride": "allroadstopeace-durbeo-5", + "lineInfo": { + "dialogue": "Won't ask human to do everything- just [5 Carp Meat] enough to help. Though, could bring more if wanted.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Durbeo" + } + }, + { + "fileOverride": "allroadstopeace-durbeo-6", + "lineInfo": { + "dialogue": "If want bring more than 5, will accept more than 5.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Durbeo" + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-durbeo-7", + "lineInfo": { + "dialogue": "Just need [5 Carp Meat] from human. Could bring more if wanted, but will not force you.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Durbeo" + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-durbeo-8", + "lineInfo": { + "dialogue": "Mhm, mhm. You are strange human, but not bad human. This enough meat.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Durbeo" + } + }, + { + "fileOverride": "allroadstopeace-durbeo-9", + "lineInfo": { + "dialogue": "Festival will still be long time away, but here. Since human help, you get reward. Only fair.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Durbeo" + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-durbeo-10", + "lineInfo": { + "dialogue": "All must work together to survive on earth. All have places, all have paths.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Durbeo" + } + }, + { + "fileOverride": "allroadstopeace-durbeo-11", + "lineInfo": { + "dialogue": "Many just take and not give. Villager, bugs, other human... You are different.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Durbeo" + } + }, + { + "fileOverride": "allroadstopeace-durbeo-12", + "lineInfo": { + "dialogue": "Still not understand why helping so much. It good, but was not expecting from human.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Durbeo" + } + }, + { + "fileOverride": "allroadstopeace-durbeo-13", + "lineInfo": { + "dialogue": "Can say, happy to be wrong about this.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Durbeo" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-onluk-12", + "lineInfo": { + "dialogue": "Human healer! Hello! This Onluk tower. Onluk tower two! Human help, so human welcome.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-onluk-13", + "lineInfo": { + "dialogue": "Tower one call tower one cause Onluk build tower one! This not usual spot for Onluk.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-onluk-14", + "lineInfo": { + "dialogue": "Usually at tower on small hill, across bridge. But because build tower by self, tower rickety.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-onluk-15", + "lineInfo": { + "dialogue": "Human helpful. Human get sturdy wood for fix tower? Swamp has sturdy wood. Forest has wood too, but more magical than sturdy.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-onluk-16", + "lineInfo": { + "dialogue": "[6 Willow Planks] enough to make tower better, maybe. Willow strong wood! Can get?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Onluk" + } + } + ] + }, + "56": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-onluk-17", + "lineInfo": { + "dialogue": "Human welcome in Onluk tower two, but Onluk tower one better. Not safe to be on without fix tower though.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-onluk-18", + "lineInfo": { + "dialogue": "If want go on Onluk tower one, bring [6 Willow Planks] so Onluk can fix!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Onluk" + } + } + ] + }, + "57": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-onluk-19", + "lineInfo": { + "dialogue": "Aha! Human have willow wood! Onluk fix tower now!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-onluk-20", + "lineInfo": { + "dialogue": "Will repair Onluk tower one! Come see after fix!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Onluk" + } + } + ] + }, + "58": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-onluk-21", + "lineInfo": { + "dialogue": "Should go and see! Climb tower, shoot crossbow at Freelancer!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Onluk" + } + } + ] + }, + "59": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-onluk-22", + "lineInfo": { + "dialogue": "TOWER ONE REPAIRED! Hrahaaah! Yes! Human very helpful!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-onluk-23", + "lineInfo": { + "dialogue": "Should go and see! Climb tower, shoot crossbow at Freelancer!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Onluk" + } + } + ] + }, + "60": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-onluk-24", + "lineInfo": { + "dialogue": "See? Onluk tower one much better than Onluk tower two! Cozy up here, and can see Fruludir tower too!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-onluk-25", + "lineInfo": { + "dialogue": "Human very helpful. Healer and woodcutter! Repairer of tower- Well, human not repair tower. Helper of repairer of tower!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-onluk-26", + "lineInfo": { + "dialogue": "Here, for help repair Onluk tower one!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Onluk" + } + } + ] + }, + "61": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-onluk-27", + "lineInfo": { + "dialogue": "If bring up lots of arrow, maybe can shoot Freelancer. Like to run through sky. Cause problem for everyone, and Freelancer never actually die, just dissipate.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Onluk" + } + }, + { + "fileOverride": "allroadstopeace-onluk-28", + "lineInfo": { + "dialogue": "Fun time sometimes! Though sometimes Freelancer shoot back. That how Onluk tower one broke.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Onluk" + } + } + ] + }, + "62": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-kreimu-10", + "lineInfo": { + "dialogue": "Hm, healer human. Could swear, saw you walking around plains some time ago. What here for? Ressinter hurt again?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-11", + "lineInfo": { + "dialogue": "No? Well, am curious now. You try heal Ressinter...luck, maybe? Or did human really know what herbs do?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-12", + "lineInfo": { + "dialogue": "Want review. Want see human medicine knowledge. Will ask questions, human give answer. Simple. Ready?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Kreimu" + } + } + ] + }, + "63": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-kreimu-13", + "lineInfo": { + "dialogue": "Fine. Take your time. Will be here for while to make sure other healer okay.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kreimu" + } + } + ] + }, + "64": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-kreimu-14", + "lineInfo": { + "dialogue": "Good! So, first question. Ginkgo Leaf. What Gingko leaf good for?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kreimu" + } + } + ] + }, + "65": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-kreimu-15", + "lineInfo": { + "dialogue": "No. Gingko leaf bad for that. Hm, maybe human heal Ressinter through luck... Can try again if want.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kreimu" + } + } + ] + }, + "66": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-kreimu-16", + "lineInfo": { + "dialogue": "Yes! Good. Gingko leaf help brain. Make feel better when stress, but make blood runny. Can be good for sometimes, but can be dangerous.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kreimu" + } + } + ] + }, + "67": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-kreimu-17", + "lineInfo": { + "dialogue": "So, second question. Sweetgale. What Sweetgale good for?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kreimu" + } + } + ] + }, + "68": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-kreimu-18", + "lineInfo": { + "dialogue": "Nope. Sweetgale not for helping with that. Hm, maybe human heal Ressinter through luck... Can try again if want.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kreimu" + } + } + ] + }, + "69": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-kreimu-19", + "lineInfo": { + "dialogue": "Mhm. Good! Sweetgale pulp make bugs avoid. Also make irritated skin soothe. Very good for bug bite.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kreimu" + } + } + ] + }, + "70": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-kreimu-20", + "lineInfo": { + "dialogue": "Here third question. Elderberry. Elderberry good for two thing. What Elderberry good for?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kreimu" + } + } + ] + }, + "71": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-kreimu-21", + "lineInfo": { + "dialogue": "No. Elderberry not good for those. Hm, maybe human heal Ressinter through luck... Can try again if want.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kreimu" + } + } + ] + }, + "72": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-kreimu-22", + "lineInfo": { + "dialogue": "Yes! Though, Elderberry also good for third thing. Can make good drink! Get drunk if ferment elderberry, but that not medicine.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kreimu" + } + } + ] + }, + "73": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-kreimu-23", + "lineInfo": { + "dialogue": "Last question for human. Feverfew. What Feverfew NOT help with?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kreimu" + } + } + ] + }, + "74": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-kreimu-24", + "lineInfo": { + "dialogue": "Feverfew very good for heal that. Hm, maybe human heal Ressinter through luck... Can try again if want.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kreimu" + } + } + ] + }, + "75": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-kreimu-25", + "lineInfo": { + "dialogue": "Pfff...hawhawhawhaw!!! H-Human, yahoo! I- Harhar!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-26", + "lineInfo": { + "dialogue": "That...correct! Not right, but correct! You...haha, you only help Ressinter through luck, right? Human not actually healer.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-27", + "lineInfo": { + "dialogue": "Human have humor though! And human try hard to help. More than can say for most humans. Here then- try more heal, instead of be soldier.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-28", + "lineInfo": { + "dialogue": "World need more people to help other people. That human was willing to try mean many good thing.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Kreimu" + } + } + ] + }, + "76": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-kreimu-29", + "lineInfo": { + "dialogue": "Being healer difficult. Need to be used to seeing death, and gore.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-30", + "lineInfo": { + "dialogue": "Zuett trying be healer, but not sure if Zuett can do that. Very easy sick. Maybe why Zuett not try heal Ressinter.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-31", + "lineInfo": { + "dialogue": "Seen it- Zuett try heal hurt orc before, but was scared. Eyes big like full moon when see blood.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-32", + "lineInfo": { + "dialogue": "Human say Zuett heal them? Mention blood, too? Hm. Must be very focused...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Kreimu" + } + }, + { + "fileOverride": "allroadstopeace-kreimu-33", + "lineInfo": { + "dialogue": "Zuett good, but still need overcome that fear. Brave in other ways, since Zuett talk with you, though.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Kreimu" + } + } + ] + }, + "77": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-lomoster-1", + "lineInfo": { + "dialogue": "Oh! You! Saw Zuett dragging you to camp. And saw other thing.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Lomoster" + } + }, + { + "fileOverride": "allroadstopeace-lomoster-2", + "lineInfo": { + "dialogue": "And you helped Ressinter! Will apologize later. Was my fault. Human seen Freelancers?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Lomoster" + } + }, + { + "fileOverride": "allroadstopeace-lomoster-3", + "lineInfo": { + "dialogue": "Freelancers think everything belong to them. Loiter around fortress a lot, try to jump in sometimes.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Lomoster" + } + }, + { + "fileOverride": "allroadstopeace-lomoster-4", + "lineInfo": { + "dialogue": "Was trying to shoot flying one down, but cannon broke, and cannonball explode.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Lomoster" + } + }, + { + "fileOverride": "allroadstopeace-lomoster-5", + "lineInfo": { + "dialogue": "Now Ressinter okay, but still need repair cannon. Human feel like helping, will need [5 Iron Ingots] to repair.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Lomoster" + } + }, + { + "fileOverride": "allroadstopeace-lomoster-6", + "lineInfo": { + "dialogue": "Long walk, but there iron in valley east of villager quarry. There also other villager there, with weapons. Not sure why.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Lomoster" + } + } + ] + }, + "78": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-lomoster-7", + "lineInfo": { + "dialogue": "Human can't find iron? There some in valley east of villager quarry, around villager with weapons.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Lomoster" + } + }, + { + "fileOverride": "allroadstopeace-lomoster-8", + "lineInfo": { + "dialogue": "Maybe someplace closer. If so, not know where. Need [5 Iron Ingots] total though.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Lomoster" + } + } + ] + }, + "79": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-lomoster-9", + "lineInfo": { + "dialogue": "Human being weirdly helpful. That good though! Make Lomoster job of shooting enemy easier.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Lomoster" + } + }, + { + "fileOverride": "allroadstopeace-lomoster-10", + "lineInfo": { + "dialogue": "Here. Freelancer like steal metal and other thing too, have found a lot from shooting. Human can have.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Lomoster" + } + }, + { + "fileOverride": "allroadstopeace-lomoster-11", + "lineInfo": { + "dialogue": "Not good for repair cannon, but probably good for make other thing.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Lomoster" + } + } + ] + }, + "80": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-lomoster-12", + "lineInfo": { + "dialogue": "Onluk like shooting from tiny tower on hill. Use crossbow or something. Cannons stronger.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Lomoster" + } + }, + { + "fileOverride": "allroadstopeace-lomoster-13", + "lineInfo": { + "dialogue": "Tower broke while ago. Still standing, but shake when climb and shake if on. Might fall soon.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Lomoster" + } + }, + { + "fileOverride": "allroadstopeace-lomoster-14", + "lineInfo": { + "dialogue": "Maybe human help with Onluk. Human get metal, so maybe human get wood for tower too?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Lomoster" + } + } + ] + }, + "81": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-jixy-1", + "lineInfo": { + "dialogue": "Oh, that human who healed Ressinter. Yes, I've heard of you already. News travels fast here.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Jixy" + } + }, + { + "fileOverride": "allroadstopeace-jixy-2", + "lineInfo": { + "dialogue": "You have a weird face. Uh, a weird look on your face, I mean. What, not used to a more eloquent orc?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Jixy" + } + }, + { + "fileOverride": "allroadstopeace-jixy-3", + "lineInfo": { + "dialogue": "I'm studying languages, is why. I haven't got everything known yet, so if you feel like helping, I could use it.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Jixy" + } + }, + { + "fileOverride": "allroadstopeace-jixy-4", + "lineInfo": { + "dialogue": "I used to have a very smart hobbit friend who lived nearby. They've left, but I want you to check their hobbit hole to see if they left behind any language books.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Jixy" + } + }, + { + "fileOverride": "allroadstopeace-jixy-5", + "lineInfo": { + "dialogue": "It should be close to the blue tower on the hill. That should be easy, right?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Jixy" + } + } + ] + }, + "82": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-jixy-6", + "lineInfo": { + "dialogue": "You forgot already? The hobbit hole is close to the blue tower on the hill. I wanted you to look for language books in there.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Jixy" + } + }, + { + "fileOverride": "allroadstopeace-jixy-7", + "lineInfo": { + "dialogue": "And you gave me a weird look for being smart! Is it just because you've got a small brain?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Jixy" + } + } + ] + }, + "83": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-jixy-8", + "lineInfo": { + "dialogue": "Oh, good, they did leave a book behind. This even completes the collection I have. I have the first, second, fourth, fifth, and sixth volumes of this.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Jixy" + } + }, + { + "fileOverride": "allroadstopeace-jixy-9", + "lineInfo": { + "dialogue": "Hopefully I can learn something new here. I still don't understand what all these weird \"figures of speech\" are supposed to mean...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Jixy" + } + }, + { + "fileOverride": "allroadstopeace-jixy-10", + "lineInfo": { + "dialogue": "What does busting your hump mean? Or two shakes of a lamb tail? Well, anyway. You probably know, so me trying to guess is boring.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Jixy" + } + }, + { + "fileOverride": "allroadstopeace-jixy-11", + "lineInfo": { + "dialogue": "Here, then. That friend of mine wrote everything he came across down in some diaries, and he gave me them to keep, but I can't read them.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Jixy" + } + }, + { + "fileOverride": "allroadstopeace-jixy-12", + "lineInfo": { + "dialogue": "The pages are too flimsy- I'll rip them if I turn them. It's a good thing the book you gave me is bound with strong leather, but I still need to be careful not to ruin it...", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Jixy" + } + }, + { + "fileOverride": "allroadstopeace-jixy-13", + "lineInfo": { + "dialogue": "Well, maybe if you read what these have written in them you can learn some things yourself.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Jixy" + } + } + ] + }, + "84": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-jixy-14", + "lineInfo": { + "dialogue": "We have to strip our leather into...I think your word for it was vellum, in order to make pages for our books that we won't rip so easily.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Jixy" + } + }, + { + "fileOverride": "allroadstopeace-jixy-15", + "lineInfo": { + "dialogue": "Anyway, we tried to learn Wynnic and low Gavellian when the villagers moved overseas- How conceited the villagers are to name their language after the country!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Jixy" + } + }, + { + "fileOverride": "allroadstopeace-jixy-16", + "lineInfo": { + "dialogue": "The goblins learned the language very quickly- they're good at that sort of thing. But orcish and Wynnic or low Gavellian have very different spoken structure.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Jixy" + } + }, + { + "fileOverride": "allroadstopeace-jixy-17", + "lineInfo": { + "dialogue": "Combine that with the war going on, and most orcs are stuck with the language only half-learned.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Jixy" + } + } + ] + }, + "85": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-etemitoro-1", + "lineInfo": { + "dialogue": "You that weird human helping instead killing, right? Nunexetor and little goblins talking about you.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Etemitoro" + } + }, + { + "fileOverride": "allroadstopeace-etemitoro-2", + "lineInfo": { + "dialogue": "Trying to make weapons and tools better. Training, but running out of grindstones. Etemitoro- that is me, my name... That how say it?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Etemitoro" + } + }, + { + "fileOverride": "allroadstopeace-etemitoro-3", + "lineInfo": { + "dialogue": "Weird human language. Anyway, know where good grindstone is- top of mountain east of fortress.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Etemitoro" + } + }, + { + "fileOverride": "allroadstopeace-etemitoro-4", + "lineInfo": { + "dialogue": "There shortcut to top by running through Ledant cave. Maybe dangerous, but not too much. Follow dead bushes on road and can get to top quickly.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Etemitoro" + } + }, + { + "fileOverride": "allroadstopeace-etemitoro-5", + "lineInfo": { + "dialogue": "May have something useful if bring me [Leaden Stone] for grind metal.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Etemitoro" + } + } + ] + }, + "86": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-etemitoro-6", + "lineInfo": { + "dialogue": "Look- human want help? Then get Etemitoro- that is me, my name... Get [Leaden Stone] from top of mountain east of fortress.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Etemitoro" + } + }, + { + "fileOverride": "allroadstopeace-etemitoro-7", + "lineInfo": { + "dialogue": "Can climb quickly if go through Ledant cave. Follow dead bushes on road- Now go! Have to keep working. No bother unless you have stone!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Etemitoro" + } + } + ] + }, + "87": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-etemitoro-8", + "lineInfo": { + "dialogue": "Look- human want help? Then get Etemitoro- that is me, my name... Get-", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Etemitoro" + } + }, + { + "fileOverride": "allroadstopeace-etemitoro-9", + "lineInfo": { + "dialogue": "Oh! You have [Leaden Stone]! Was focusing on work, didn't notice.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Etemitoro" + } + }, + { + "fileOverride": "allroadstopeace-etemitoro-10", + "lineInfo": { + "dialogue": "Here. Human like green gem for money, right? Not good for smithing though.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Etemitoro" + } + }, + { + "fileOverride": "allroadstopeace-etemitoro-11", + "lineInfo": { + "dialogue": "Broken weapon parts not good alone, but still sharp. Can be used to make other weapons! Reuse good for earth- waste not!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Etemitoro" + } + } + ] + }, + "88": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-etemitoro-12", + "lineInfo": { + "dialogue": "Not blacksmith yet. Just assistant- looking over forge til real smith get home.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Etemitoro" + } + }, + { + "fileOverride": "allroadstopeace-etemitoro-13", + "lineInfo": { + "dialogue": "Good at sharpening and making weapons and tools better, not good at shaping metal while hot, or making mixed stone pure for use.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Etemitoro" + } + }, + { + "fileOverride": "allroadstopeace-etemitoro-14", + "lineInfo": { + "dialogue": "Earth provides what we need- But must work to make usable. Etemitoro- that is me, my name...think that is fair price.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Etemitoro" + } + } + ] + }, + "89": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-miliyus-1", + "lineInfo": { + "dialogue": "Ah, the weird human. Why you looking to be helpful?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Miliyus" + } + }, + { + "fileOverride": "allroadstopeace-miliyus-2", + "lineInfo": { + "dialogue": "Must be some reason. Not sure if tired of fighting or some other reason, but if human feel like helping, can use some help.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Miliyus" + } + }, + { + "fileOverride": "allroadstopeace-miliyus-3", + "lineInfo": { + "dialogue": "Running low on blue dyes. Have plenty of the other colors, but need blue. Know where to get them, too.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Miliyus" + } + }, + { + "fileOverride": "allroadstopeace-miliyus-4", + "lineInfo": { + "dialogue": "The cave outside the villager bridge, with the pond and arch by it. Go in, and there will be blue flowers.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Miliyus" + } + }, + { + "fileOverride": "allroadstopeace-miliyus-5", + "lineInfo": { + "dialogue": "Get [8 Terramarine Buds] so can make more dyes. Don't know why you helping, but won't turn down help either.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Miliyus" + } + } + ] + }, + "90": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-miliyus-6", + "lineInfo": { + "dialogue": "Can't find the cave? Is outside the villager bridge, with the pond and arch by it.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Miliyus" + } + }, + { + "fileOverride": "allroadstopeace-miliyus-7", + "lineInfo": { + "dialogue": "Get [8 Terramarine Buds] so can make more dyes. Bright blue flowers, very dusty.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Miliyus" + } + } + ] + }, + "91": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-miliyus-8", + "lineInfo": { + "dialogue": "The weird human again? You all covered in blue powder. You found the flowers then!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Miliyus" + } + }, + { + "fileOverride": "allroadstopeace-miliyus-9", + "lineInfo": { + "dialogue": "Here. Will get that for you. The buds are enough for what need, but you can keep the dust.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Miliyus" + } + }, + { + "fileOverride": "allroadstopeace-miliyus-10", + "lineInfo": { + "dialogue": "Little more, too. But, again- why you looking to be helpful? Don't understand. Humans kill orcs a lot.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Miliyus" + } + }, + { + "fileOverride": "allroadstopeace-miliyus-11", + "lineInfo": { + "dialogue": "You unlearn villager stupidity, maybe? In the middle of unlearning? Perhaps a sign from the earth things will heal. Perhaps not. We will see.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Miliyus" + } + } + ] + }, + "92": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-miliyus-12", + "lineInfo": { + "dialogue": "The earth shows things if you show respect for her beauty. We decorate our body for it, put ink and dye in the skin, paint on the skin.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Miliyus" + } + }, + { + "fileOverride": "allroadstopeace-miliyus-13", + "lineInfo": { + "dialogue": "Adorn our bodies with her gifts. She should be respected. Instead, villagers keep themself plain and bare like grubs.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Miliyus" + } + }, + { + "fileOverride": "allroadstopeace-miliyus-14", + "lineInfo": { + "dialogue": "The earth cries seeing them. She cries, weird human. Listen and maybe you will hear. You listening to us now, so maybe.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Miliyus" + } + } + ] + }, + "93": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-nunexetor-7", + "lineInfo": { + "dialogue": "Huh. You again. That weird human who helped Ressinter. Something wrong?", + "line": { + "current": 1, + "max": 16 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-8", + "lineInfo": { + "dialogue": "Hm. Looking to help out still? What is it with you looking to be helpful? Have to say I'm not used to this. But, I can think of something.", + "line": { + "current": 2, + "max": 16 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-9", + "lineInfo": { + "dialogue": "HEY! Any of you feel like playing a game?", + "line": { + "current": 3, + "max": 16 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-mango-1", + "lineInfo": { + "dialogue": "Ugh, yeah! We're so BORED in here!", + "line": { + "current": 4, + "max": 16 + }, + "npc": "?????" + } + }, + { + "fileOverride": "allroadstopeace-blueberry-1", + "lineInfo": { + "dialogue": "What in the... HEY! Why's one of those big, scary humans in here?! Nunny, I thought you said we were gonna play a game!", + "line": { + "current": 5, + "max": 16 + }, + "npc": "?????????" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-10", + "lineInfo": { + "dialogue": "We are. This human isn't actually so bad. Care to introduce yourselves?", + "line": { + "current": 6, + "max": 16 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-peaches-1", + "lineInfo": { + "dialogue": "Well, sure, but...even if you say this one isn't so scary, I know I don't wanna tell them my real name!", + "line": { + "current": 7, + "max": 16 + }, + "npc": "???????" + } + }, + { + "fileOverride": "allroadstopeace-grapes-1", + "lineInfo": { + "dialogue": "Didn't we just eat a bunch of fruit though? We can use those as fake names!", + "line": { + "current": 8, + "max": 16 + }, + "npc": "??????" + } + }, + { + "fileOverride": "allroadstopeace-mango-2", + "lineInfo": { + "dialogue": "Okay then. Well, call me Mango then, weird human!", + "line": { + "current": 9, + "max": 16 + }, + "npc": "Mango" + } + }, + { + "fileOverride": "allroadstopeace-blueberry-2", + "lineInfo": { + "dialogue": "I just ate a bunch of blueberries, so I guess I'm Blueberry for now?", + "line": { + "current": 10, + "max": 16 + }, + "npc": "Blueberry" + } + }, + { + "fileOverride": "allroadstopeace-grapes-2", + "lineInfo": { + "dialogue": "Hey, I wouldn't mind being called Grapes by anyone, really!", + "line": { + "current": 11, + "max": 16 + }, + "npc": "Grapes" + } + }, + { + "fileOverride": "allroadstopeace-peaches-2", + "lineInfo": { + "dialogue": "Then I'm Peaches! So we're just doing a little hide and seek game?", + "line": { + "current": 12, + "max": 16 + }, + "npc": "Peaches" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-11", + "lineInfo": { + "dialogue": "Yes. Just hide around the fort someplace. If the human doesn't find you, you win.", + "line": { + "current": 13, + "max": 16 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-mango-3", + "lineInfo": { + "dialogue": "Well, that's kinda boring, so I'm gonna go find a really tough to reach spot!", + "line": { + "current": 14, + "max": 16 + }, + "npc": "Mango" + } + }, + { + "fileOverride": "allroadstopeace-grapes-3", + "lineInfo": { + "dialogue": "NYAHAHA! Everyone scatter!!", + "line": { + "current": 15, + "max": 16 + }, + "npc": "Grapes" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-12", + "lineInfo": { + "dialogue": "Well, there you go. I'll tell you how many you have left to find if you talk with me.", + "line": { + "current": 16, + "max": 16 + }, + "npc": "Nunexetor" + } + } + ] + }, + "94": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-nunexetor-13", + "lineInfo": { + "dialogue": "Silly little goblins. Who goes and names themself after fruits?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-14", + "lineInfo": { + "dialogue": "Guess goblins are just sort of fickle like that. But again, you just have to find all four of them.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-15", + "lineInfo": { + "dialogue": "None of them will have left the fortress, so it shouldn't take too long.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Nunexetor" + } + } + ] + }, + "95": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-nunexetor-16", + "lineInfo": { + "dialogue": "Three to go. ...what's with the look? Your face scrunches up when I talk.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-17", + "lineInfo": { + "dialogue": "Oh, probably since I can speak fluently. Goblins picked up on low Gavellian and Wynnic faster than us orcs.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-18", + "lineInfo": { + "dialogue": "But I accompany the goblins a lot, so I picked up on the nuances over time.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Nunexetor" + } + } + ] + }, + "96": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-nunexetor-19", + "lineInfo": { + "dialogue": "That's two left. And yes, goblins live here too.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-20", + "lineInfo": { + "dialogue": "Place is called Centerworld for a reason, even if villagers call it Leadin. Dumb name for it, and they respect the names of the plains camps, so...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-21", + "lineInfo": { + "dialogue": "Just real weird. Used to be like it sounds- the center of orcish territory. Had roads leading from all the forests and the plains.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-22", + "lineInfo": { + "dialogue": "Then the villagers moved in and kicked us out, and the earth started to rot because of that, and...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-23", + "lineInfo": { + "dialogue": "Depressing talk for the middle of a game. I'll be quiet now. Should get back to looking, you.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Nunexetor" + } + } + ] + }, + "97": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-nunexetor-24", + "lineInfo": { + "dialogue": "Just one more to find. Pretty good at this, have to admit. Wasn't expecting you to be so quick.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-25", + "lineInfo": { + "dialogue": "Goblins usually hide in tiny places, like tree stumps and small caves, so we carved out some spaces for them here.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-26", + "lineInfo": { + "dialogue": "Course, then they filled in the entrances so most of us are too big to get through. Tried before and just got myself stuck.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-27", + "lineInfo": { + "dialogue": "Ever since the villagers paved over the settlements by the coast and put that big white eyesore of a city in the way we've looked out for the little ones.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Nunexetor" + } + } + ] + }, + "98": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-blueberry-3", + "lineInfo": { + "dialogue": "NYACK! For such a big human you really know how to sneak up on someone!!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Blueberry" + } + }, + { + "fileOverride": "allroadstopeace-blueberry-4", + "lineInfo": { + "dialogue": "Gah, I thought I was a goner for a second there... If Nunny says you're okay then I'll trust him, but that doesn't make you less intimidating!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Blueberry" + } + }, + { + "fileOverride": "allroadstopeace-blueberry-5", + "lineInfo": { + "dialogue": "And, I guess out in the open like this, the other orcs wouldn't let you bully us, so...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Blueberry" + } + }, + { + "fileOverride": "allroadstopeace-blueberry-6", + "lineInfo": { + "dialogue": "Suppose you're alright, maybe. But even still, you found me, so I lose. Unless you can't find everyone else!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Blueberry" + } + }, + { + "fileOverride": "allroadstopeace-blueberry-7", + "lineInfo": { + "dialogue": "I bet you'll NEVER find Mango, hahaah! She always takes these games SUPER seriously!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Blueberry" + } + } + ] + }, + "99": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-blueberry-8", + "lineInfo": { + "dialogue": "Uh... I wonder where Peaches went? I know he loves playing in the creeks at Waterway, so... Oh. I shouldn't spoil their spot.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Blueberry" + } + } + ] + }, + "100": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-grapes-4", + "lineInfo": { + "dialogue": "Aw darn it. I guess it's pretty easy to see me up here.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Grapes" + } + }, + { + "fileOverride": "allroadstopeace-grapes-5", + "lineInfo": { + "dialogue": "I mean, I knew that, but I thought you wouldn't think to climb the tower!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Grapes" + } + }, + { + "fileOverride": "allroadstopeace-grapes-6", + "lineInfo": { + "dialogue": "Well, anyway...you really went and tried to heal Ressinter? That's pretty admirable!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Grapes" + } + }, + { + "fileOverride": "allroadstopeace-grapes-7", + "lineInfo": { + "dialogue": "I hear most humans are bullies. It's why Veltu over at the Trunkstump camp was training us to be tougher.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Grapes" + } + }, + { + "fileOverride": "allroadstopeace-grapes-8", + "lineInfo": { + "dialogue": "Aaaand then a human went and killed her, because I guess they got told to do so! At least you seem halfway decent.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Grapes" + } + }, + { + "fileOverride": "allroadstopeace-grapes-9", + "lineInfo": { + "dialogue": "Anyway, back to the quiet ol' grouch with me!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Grapes" + } + } + ] + }, + "101": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-grapes-10", + "lineInfo": { + "dialogue": "Y'know, I probably shouldn't tell you this, but I could actually see Mango over in the other tower! She probably figured it was tough to get to.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Grapes" + } + } + ] + }, + "102": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-mango-4", + "lineInfo": { + "dialogue": "...wow. You're good. I thought you might be able to see me up here, but I didn't think you'd be able to reach me!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Mango" + } + }, + { + "fileOverride": "allroadstopeace-mango-5", + "lineInfo": { + "dialogue": "I don't really care about the fact you're human. As long as I get my entertainment I'm happy. Which kinda isn't so great, cause there isn't a lot here to tinker with.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Mango" + } + }, + { + "fileOverride": "allroadstopeace-mango-6", + "lineInfo": { + "dialogue": "Tinkernook is so much better about having machines and metals and things to experiment and build than here is.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Mango" + } + }, + { + "fileOverride": "allroadstopeace-mango-7", + "lineInfo": { + "dialogue": "Anyways, you win, I lose, so I better get back to stick-in-the-mud Nunexetor. See ya!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Mango" + } + } + ] + }, + "103": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-mango-8", + "lineInfo": { + "dialogue": "I lost, so I don't care about the game anymore. I saw Blueberry over by that one orc who keeps trying to lift that rock.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mango" + } + } + ] + }, + "104": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-peaches-3", + "lineInfo": { + "dialogue": "Ack! Thought you wouldn't notice me behind the stairs!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Peaches" + } + }, + { + "fileOverride": "allroadstopeace-peaches-4", + "lineInfo": { + "dialogue": "Ugh, you...you human types are scary up close. Is Nunexetor really sure you're not a bad guy?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Peaches" + } + }, + { + "fileOverride": "allroadstopeace-peaches-5", + "lineInfo": { + "dialogue": "I mean, look at your armor! You, you look like you could splat me against the wall in a snap!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Peaches" + } + }, + { + "fileOverride": "allroadstopeace-peaches-6", + "lineInfo": { + "dialogue": "...I feel like I just gave you an idea and I'm not sticking around to find out! You win!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Peaches" + } + } + ] + }, + "105": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-peaches-7", + "lineInfo": { + "dialogue": "Ack! I saw Grapes on the hanging flag! Don't hurt me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Peaches" + } + } + ] + }, + "106": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-nunexetor-28", + "lineInfo": { + "dialogue": "Looks like the human wins. Guess I know how you managed to find that spineback boar.", + "line": { + "current": 1, + "max": 15 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-blueberry-9", + "lineInfo": { + "dialogue": "There's no way you REALLY hunted one of those things. Those even give the orc hunters trouble!", + "line": { + "current": 2, + "max": 15 + }, + "npc": "Blueberry" + } + }, + { + "fileOverride": "allroadstopeace-peaches-8", + "lineInfo": { + "dialogue": "Are you kidding me? Humans are terrifying, Blueberry! They've hunted way stronger stuff than some stupid pig!", + "line": { + "current": 3, + "max": 15 + }, + "npc": "Peaches" + } + }, + { + "fileOverride": "allroadstopeace-grapes-11", + "lineInfo": { + "dialogue": "But, the game was fun, right?", + "line": { + "current": 4, + "max": 15 + }, + "npc": "Grapes" + } + }, + { + "fileOverride": "allroadstopeace-mango-9", + "lineInfo": { + "dialogue": "Yeah, I guess it wasn't as boring as I thought.", + "line": { + "current": 5, + "max": 15 + }, + "npc": "Mango" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-29", + "lineInfo": { + "dialogue": "That's all I wanted from you. Can go back to whatever it was you were doing now.", + "line": { + "current": 6, + "max": 15 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-peaches-9", + "lineInfo": { + "dialogue": "Yes, finally! I don't have to spend time wondering if the human's gonna try and poke my eyes out!", + "line": { + "current": 7, + "max": 15 + }, + "npc": "Peaches" + } + }, + { + "fileOverride": "allroadstopeace-grapes-12", + "lineInfo": { + "dialogue": "Oh, quit being such a scaredy-baby. This one's nice!", + "line": { + "current": 8, + "max": 15 + }, + "npc": "Grapes" + } + }, + { + "fileOverride": "allroadstopeace-mango-10", + "lineInfo": { + "dialogue": "Good game, I guess! Back to being bored again.", + "line": { + "current": 9, + "max": 15 + }, + "npc": "Mango" + } + }, + { + "fileOverride": "allroadstopeace-blueberry-10", + "lineInfo": { + "dialogue": "...", + "line": { + "current": 10, + "max": 15 + }, + "npc": "Blueberry" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-30", + "lineInfo": { + "dialogue": "What, nothing to say?", + "line": { + "current": 11, + "max": 15 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-blueberry-11", + "lineInfo": { + "dialogue": "...Your shoe's unlaced, human.", + "line": { + "current": 12, + "max": 15 + }, + "npc": "Blueberry" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-31", + "lineInfo": { + "dialogue": "What? You aren't even wearing those kinds of shoes.", + "line": { + "current": 13, + "max": 15 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-32", + "lineInfo": { + "dialogue": "Anyways, to the winner goes the spoils. Here, for entertaining them for a bit.", + "line": { + "current": 14, + "max": 15 + }, + "npc": "Nunexetor" + } + }, + { + "fileOverride": "allroadstopeace-nunexetor-33", + "lineInfo": { + "dialogue": "They have me watch the goblins but I'm no good at having fun with them, so thanks I suppose.", + "line": { + "current": 15, + "max": 15 + }, + "npc": "Nunexetor" + } + } + ] + }, + "107": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-nunexetor-34", + "lineInfo": { + "dialogue": "Not much else to say. Was fun, I suppose.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Nunexetor" + } + } + ] + }, + "108": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-ureietun-12", + "lineInfo": { + "dialogue": "...fine. Maybe human not so bad.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Ureietun" + } + }, + { + "fileOverride": "allroadstopeace-ureietun-13", + "lineInfo": { + "dialogue": "Human want talk Arrai-Veretel. In hut. Follow.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Ureietun" + } + }, + { + "fileOverride": "allroadstopeace-ureietun-14", + "lineInfo": { + "dialogue": "Arrai-Veretel! Human try help orc around fortress. Want talk.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Ureietun" + } + }, + { + "fileOverride": "allroadstopeace-ureietun-15", + "lineInfo": { + "dialogue": "Up to human now. Will not help more- choice is up to Arrai-Veretel.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Ureietun" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-1", + "lineInfo": { + "dialogue": "Hmh. Zuett spoke about you. So you are human trying to end war?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Arrai-Veretel" + } + } + ] + }, + "109": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-arraiveretel-2", + "lineInfo": { + "dialogue": "YOU! You human who kill Rai-Poxper! You human who attack other fort!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-3", + "lineInfo": { + "dialogue": "Need talk with Zuett again. You follow. And you stay quiet. Understand?", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Arrai-Veretel" + } + } + ] + }, + "110": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-arraiveretel-4", + "lineInfo": { + "dialogue": "ZUETT! You say human want peace. Do you know who human is?!", + "line": { + "current": 1, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-zuett-49", + "lineInfo": { + "dialogue": "Whuh- This good human! Heal Ressinter-", + "line": { + "current": 2, + "max": 26 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-5", + "lineInfo": { + "dialogue": "Human ALSO kill Rai-Poxper!", + "line": { + "current": 3, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-zuett-50", + "lineInfo": { + "dialogue": "Wha- no-", + "line": { + "current": 4, + "max": 26 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-6", + "lineInfo": { + "dialogue": "Human ALSO attack other fort! Many orcs dead because this human!", + "line": { + "current": 5, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-7", + "lineInfo": { + "dialogue": "How can Zuett say human trying end war, when human START WAR AGAIN?!", + "line": { + "current": 6, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-zuett-51", + "lineInfo": { + "dialogue": "Only because villager-", + "line": { + "current": 7, + "max": 26 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-8", + "lineInfo": { + "dialogue": "THAT. IS. THE. POINT!! Villager get human to fight for them! Cease-fire say Villager not attack orc. Then, human come over ocean. Try make peace- get attack!", + "line": { + "current": 8, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-9", + "lineInfo": { + "dialogue": "See human attack. Villager get human to attack, say lies to trick humans. Orcs defend self. Then, three Rai-orc die at Earthpit, Cliffhearth, Trunkstump goblin camp.", + "line": { + "current": 9, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-10", + "lineInfo": { + "dialogue": "Human attack! Rai-Poxper take rightful toll for break cease-fire, but not war yet. Take magic axe from Villager city while magic power gone bad.", + "line": { + "current": 10, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-11", + "lineInfo": { + "dialogue": "Villager and human attack first, but attack orc for take rightful toll like orc attack first! And human kill Rai-Poxper!", + "line": { + "current": 11, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-12", + "lineInfo": { + "dialogue": "Orc take human fort built in dying earth forest. Cannot know if human planning another attack! But not kill human. Hold human instead.", + "line": { + "current": 12, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-13", + "lineInfo": { + "dialogue": "Then same human who kill Rai-Poxper come, kill bathing orc, break in fort, kill many Centerworld orc! Villager start, orc finish, villager no respect end!", + "line": { + "current": 13, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-14", + "lineInfo": { + "dialogue": "Yes, human tricked by Villager. But human still attack orc. Human still kill many orc! Human say want peace now?", + "line": { + "current": 14, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-15", + "lineInfo": { + "dialogue": "What human done? Hunt boar? Help healer? Done busywork for other orc? That not make up for life lost.", + "line": { + "current": 15, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-zuett-52", + "lineInfo": { + "dialogue": "...Arrai-Veretel right. What human done good, not make up for that. But, human still trying. If one human try to stop, more human can try to stop.", + "line": { + "current": 16, + "max": 26 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-53", + "lineInfo": { + "dialogue": "War only killing us! If tried talk to human instead of go to sharpen spear and fight back, maybe human would learned faster than now.", + "line": { + "current": 17, + "max": 26 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-16", + "lineInfo": { + "dialogue": "Maybe. Maybe more orc be dead instead. Zuett, you cannot say what would happened. Wishful thinking, and I wish would happened too!", + "line": { + "current": 18, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-17", + "lineInfo": { + "dialogue": "But with unfinished Wynnic, orc cannot talk well. YOU try learn language when idiot killing you! All sound stupid, and no time to learn for most!", + "line": { + "current": 19, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-zuett-54", + "lineInfo": { + "dialogue": "But human listen to Zuett, even if not sound smart. Arrai-Veretel not respect human. Justified, but still cause problem.", + "line": { + "current": 20, + "max": 26 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-18", + "lineInfo": { + "dialogue": "Grrh. FINE! Zuett want peace so bad? Human want peace so bad? Human spilled much orc blood. Only way out of war, is through. We will battle.", + "line": { + "current": 21, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-19", + "lineInfo": { + "dialogue": "No tricks. No backup. Nothing but battle between human and myself. If human can fight in ritual arena and win, then will listen.", + "line": { + "current": 22, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-20", + "lineInfo": { + "dialogue": "Listen. Zuett. I want war stop too. But you must understand the risk here. Cannot make decision lightly. Villager go back on word- see writing, find way around writing.", + "line": { + "current": 23, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-21", + "lineInfo": { + "dialogue": "Try threaten us with iron corpse machine! So, battle will happen. Will prepare ritual and gather crowd. Prepare, human.", + "line": { + "current": 24, + "max": 26 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-zuett-55", + "lineInfo": { + "dialogue": "...that right. Prepare, human. Arrai-Veretel strongest orc. Strong in everything. Mind, body, power, spirit.", + "line": { + "current": 25, + "max": 26 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-56", + "lineInfo": { + "dialogue": "Zuett still think human trying to be good. Still think can help stupid war end. Knock sense into Arrai-Veretel.", + "line": { + "current": 26, + "max": 26 + }, + "npc": "Zuett" + } + } + ] + }, + "111": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-zuett-57", + "lineInfo": { + "dialogue": "Prepare, human. Arrai-Veretel strongest orc. Strong in everything. Mind, body, power, spirit.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-58", + "lineInfo": { + "dialogue": "Zuett still think human trying to be good. Still think can help stupid war end. Knock sense into Arrai-Veretel. Arena is down stairs.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Zuett" + } + } + ] + }, + "112": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-arraiveretel-22", + "lineInfo": { + "dialogue": "Before fight... Must perform ritual. This challenge need respect. I do not respect you, human, but will show respect anyway.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-23", + "lineInfo": { + "dialogue": "May the earth herself hear us... Though we do not speak as we once have.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-24", + "lineInfo": { + "dialogue": "We, as humble inhabitants of the land she has gifted us, pledge this show in honor of her.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-25", + "lineInfo": { + "dialogue": "May she be sated, grow healthy, and honor us in turn for this offering.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-watchingorcs-1", + "lineInfo": { + "dialogue": "HMH! HAH!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Watching Orcs" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-26", + "lineInfo": { + "dialogue": "Now...begin!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Arrai-Veretel" + } + } + ] + }, + "113": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-arraiveretel-27", + "lineInfo": { + "dialogue": "HMH! Human tough. Fine- Will take battle seriously now!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-28", + "lineInfo": { + "dialogue": "For sake of those killed before me, I will not lose!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Arrai-Veretel" + } + } + ] + }, + "114": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-arraiveretel-29", + "lineInfo": { + "dialogue": "Ghh...hrrgh...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-teiren-16", + "lineInfo": { + "dialogue": "Arrai-Veretel...lose?!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Audience Orc" + } + }, + { + "fileOverride": "allroadstopeace-yunelsu-19", + "lineInfo": { + "dialogue": "No, no! Arrai-Veretel hurt bad! Human try kill Arrai-Veretel!!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Audience Orc" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-30", + "lineInfo": { + "dialogue": "AM FINE! Stupid, idiot! No interrupting while ritual fight!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-31", + "lineInfo": { + "dialogue": "Human win. Hate to say, but human win. Not even try kill me.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-32", + "lineInfo": { + "dialogue": "Give time. Battle hard-fought- Need to wind down. Wait in meeting room. Will...discuss terms.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Arrai-Veretel" + } + } + ] + }, + "115": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-arraiveretel-33", + "lineInfo": { + "dialogue": "Feel like insult to stop war we did not start. But, gave promise. Human strong. Still not make up for so much death...", + "line": { + "current": 1, + "max": 15 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-zuett-59", + "lineInfo": { + "dialogue": "But human trying. Really, really trying. Will admit, did not know about human killing all when saw... Still. If war ending, deaths also ending.", + "line": { + "current": 2, + "max": 15 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-34", + "lineInfo": { + "dialogue": "Hmh. Human probably trying end war to start with. Just on wrong side. Can agree, Zuett.", + "line": { + "current": 3, + "max": 15 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-35", + "lineInfo": { + "dialogue": "Will stop attacking cities. Orcs still defend selves! Will not turn bellies for spears. Still not trust villagers- only give cease-fire.", + "line": { + "current": 4, + "max": 15 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-36", + "lineInfo": { + "dialogue": "Give opportunity for human to learn and and villager to show respect. They not attack, then will be open to more negotiation.", + "line": { + "current": 5, + "max": 15 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-37", + "lineInfo": { + "dialogue": "Will say- many orc hold grudge, in plains. Many orc probably still attack. If so, human also can defend self. But, human should avoid fight there.", + "line": { + "current": 6, + "max": 15 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-38", + "lineInfo": { + "dialogue": "...if villager continue attack, will defend selves as before. Human, make sure villager know this.", + "line": { + "current": 7, + "max": 15 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-zuett-60", + "lineInfo": { + "dialogue": "Mhm. Villager more stupid than human. Villager do many terrible thing. But endless war not help fix.", + "line": { + "current": 8, + "max": 15 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-zuett-61", + "lineInfo": { + "dialogue": "Peace first step to heal. ...unless villager keep doing stupid thing. Then may need fight anyway.", + "line": { + "current": 9, + "max": 15 + }, + "npc": "Zuett" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-39", + "lineInfo": { + "dialogue": "So Zuett not naive. Some things...cannot...be...forgiven. Villager treading line close.", + "line": { + "current": 10, + "max": 15 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-40", + "lineInfo": { + "dialogue": "Human seen earth rotting in north. Have to have, since took fort in rotting place. Forest used to be living thing. Now dying. Dead in north-east.", + "line": { + "current": 11, + "max": 15 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-41", + "lineInfo": { + "dialogue": "Start happening only few decades before Villager leave across ocean! Villager always run away from problem.", + "line": { + "current": 12, + "max": 15 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-42", + "lineInfo": { + "dialogue": "And villager create own problems. Can only mean villager hurt earth, and make her die, slow and sure. Many orc used to live there.", + "line": { + "current": 13, + "max": 15 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-43", + "lineInfo": { + "dialogue": "Even after villager move in, try kick orc out, many orc live there...then earth start to die. Has not come south- and we are south!", + "line": { + "current": 14, + "max": 15 + }, + "npc": "Arrai-Veretel" + } + }, + { + "fileOverride": "allroadstopeace-arraiveretel-44", + "lineInfo": { + "dialogue": "But...that off-track. No more war. Give this to whatever villager need to see it.", + "line": { + "current": 15, + "max": 15 + }, + "npc": "Arrai-Veretel" + } + } + ] + }, + "116": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-zuett-62", + "lineInfo": { + "dialogue": "Maybe see human again soon. Hopefully in good spirit and on good faith.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Zuett" + } + } + ] + }, + "117": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-arraiveretel-45", + "lineInfo": { + "dialogue": "Go on. Give to whatever villager need to see it. Let them learn.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Arrai-Veretel" + } + } + ] + }, + "118": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-ureietun-16", + "lineInfo": { + "dialogue": "...Think new thoughts. Difficult ones, from now on.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ureietun" + } + }, + { + "fileOverride": "allroadstopeace-ureietun-17", + "lineInfo": { + "dialogue": "Keep thinking too. Not just copy what see. Figure for self what good and bad.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ureietun" + } + } + ] + }, + "119": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-serepe-9", + "lineInfo": { + "dialogue": "...wonder if villager know about death machine. Not machine that make death, machine that run on death.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Serepe" + } + }, + { + "fileOverride": "allroadstopeace-serepe-10", + "lineInfo": { + "dialogue": "Bury parts for them. Not right to use tainted metal for things.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Serepe" + } + }, + { + "fileOverride": "allroadstopeace-serepe-11", + "lineInfo": { + "dialogue": "Human know about death machine?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Serepe" + } + } + ] + }, + "120": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-bitteliso-12", + "lineInfo": { + "dialogue": "Thankful human try help, but how even get into fort? Serepe should stopped...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Bitteliso" + } + }, + { + "fileOverride": "allroadstopeace-bitteliso-13", + "lineInfo": { + "dialogue": "...hmh. Onluk take inside. Makes sense now. She like Onluk. Like Onluk MUCH.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Bitteliso" + } + }, + { + "fileOverride": "allroadstopeace-bitteliso-14", + "lineInfo": { + "dialogue": "Like look at Onluk, like talk Onluk, never hit Onluk...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Bitteliso" + } + }, + { + "fileOverride": "allroadstopeace-serepe-12", + "lineInfo": { + "dialogue": "SHUT UP!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Serepe" + } + } + ] + }, + "121": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-ismikku-1", + "lineInfo": { + "dialogue": "Tough human, to survive four-way attack. Or maybe just tough armor. Gaudy, bulky armor...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Ismikku" + } + }, + { + "fileOverride": "allroadstopeace-ismikku-2", + "lineInfo": { + "dialogue": "For tough human, will tell something that villager and human not know.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Ismikku" + } + }, + { + "fileOverride": "allroadstopeace-ismikku-3", + "lineInfo": { + "dialogue": "All skulls on pikes outside, at other camp, not villager skull. Not human skull. Orc skull.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ismikku" + } + }, + { + "fileOverride": "allroadstopeace-ismikku-4", + "lineInfo": { + "dialogue": "Show people who attack the cost of it. Show those who were killed as reminder. Not escape consequences.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ismikku" + } + }, + { + "fileOverride": "allroadstopeace-ismikku-5", + "lineInfo": { + "dialogue": "...human trying now, but Ismikku see many things. Know human contributed many skulls to pikes. We watching you.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Ismikku" + } + } + ] + }, + "122": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-hulve-1", + "lineInfo": { + "dialogue": "...what?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Hulve" + } + }, + { + "fileOverride": "allroadstopeace-hulve-2", + "lineInfo": { + "dialogue": "On lookout. Not talking.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Hulve" + } + }, + { + "fileOverride": "allroadstopeace-hulve-3", + "lineInfo": { + "dialogue": "Do not talk unless important thing.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Hulve" + } + } + ] + }, + "123": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-captaingoruca-16", + "lineInfo": { + "dialogue": "Human! You're back! That certainly took you a while. I suppose all things considered I shouldn't be surprised. Those orcs are tough.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-17", + "lineInfo": { + "dialogue": "What's this? You actually managed to get the brutes to sign a ceasefire?! I was expecting you to come back with a bloody prize, not a signature!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-18", + "lineInfo": { + "dialogue": "After the way they so savagely attacked our outpost and the way they've rebuffed our diplomacy squads, I wasn't expecting this.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-19", + "lineInfo": { + "dialogue": "Still, this is good! The terms are a bit more airtight than I'd prefer, but I suppose as long as they're out of our hair anything will do.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-20", + "lineInfo": { + "dialogue": "Hm? The orcs were talking about the decay up north? Not sure how that matters. It isn't like anyone knows what's causing it.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-21", + "lineInfo": { + "dialogue": "I mean, have you heard the rumors flying from Lexdale? Saying witches are cursing the land, hah! Well, that’s besides the point.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-22", + "lineInfo": { + "dialogue": "Here- your reward. I'd intended on giving you the mask so you could try and sneak in like one of them, but I...well, I forgot about it til you'd already left.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Captain Goruca" + } + }, + { + "fileOverride": "allroadstopeace-captaingoruca-23", + "lineInfo": { + "dialogue": "But I DID magically fortify it into a potent piece of gear instead! So it ought to serve you well. We thank you for your service, human!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Captain Goruca" + } + } + ] + }, + "124": { + "dialogues": [ + { + "fileOverride": "allroadstopeace-captaingoruca-24", + "lineInfo": { + "dialogue": "You know, that one guy was going off about that orc catapult or whatever the entire time you were gone. He’s shut up now, but criminy!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Goruca" + } + } + ] + } + } + }, + "Almuj Desert": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "almujdesert-junes-1", + "lineInfo": { + "dialogue": "Uh oh!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-2", + "lineInfo": { + "dialogue": "Looks like somebody got stuck in some quicksand.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-3", + "lineInfo": { + "dialogue": "Don't worry! I'm sure there's all sorts of wonders below the surface!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-4", + "lineInfo": { + "dialogue": "In fact, I think I'll join you!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "almujdesert-junes-5", + "lineInfo": { + "dialogue": "How on earth did you know that these quicksand spots lead to empire ruins?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-6", + "lineInfo": { + "dialogue": "Don't tell me you just jumped in there without knowing what would happen.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-7", + "lineInfo": { + "dialogue": "Well, your luck paid off this time. I like your Grook feathers, guard.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-8", + "lineInfo": { + "dialogue": "Let's see what's down there!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "almujdesert-junes-9", + "lineInfo": { + "dialogue": "Incredible.. I've never seen so many scriptures in one place.. Libraries are rare even today.", + "line": { + "current": 1, + "max": 15 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-10", + "lineInfo": { + "dialogue": "This is the third library I've found.. And the smallest, too.", + "line": { + "current": 2, + "max": 15 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-11", + "lineInfo": { + "dialogue": "I've been studying the language, and I think I can read a little bit of what they have here.", + "line": { + "current": 3, + "max": 15 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-12", + "lineInfo": { + "dialogue": "This book is all about farming.. Farming in a desert? It doesn't make sense.", + "line": { + "current": 4, + "max": 15 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-13", + "lineInfo": { + "dialogue": "Look, here again... A book about plant care and soil.", + "line": { + "current": 5, + "max": 15 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-14", + "lineInfo": { + "dialogue": "I'm not entirely sure how old this civilization is.. But it predates the portal being open, that much is certain.", + "line": { + "current": 6, + "max": 15 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-15", + "lineInfo": { + "dialogue": "Here's a book entirely dedicated to the royal family, interesting.", + "line": { + "current": 7, + "max": 15 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-16", + "lineInfo": { + "dialogue": "Wow, how is this possible? The tree starts with The Emperor... But he's had hundreds of children..", + "line": { + "current": 8, + "max": 15 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-17", + "lineInfo": { + "dialogue": "Over... Hundreds of years..", + "line": { + "current": 9, + "max": 15 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-18", + "lineInfo": { + "dialogue": "It shows his children being born after his great grandchildren had died...", + "line": { + "current": 10, + "max": 15 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-19", + "lineInfo": { + "dialogue": "How old was this emperor?", + "line": { + "current": 11, + "max": 15 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-20", + "lineInfo": { + "dialogue": "Oh! These mechanisms still work!", + "line": { + "current": 12, + "max": 15 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-21", + "lineInfo": { + "dialogue": "There must have been books here not for public knowledge..", + "line": { + "current": 13, + "max": 15 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-22", + "lineInfo": { + "dialogue": "Let's see... Hmm.. I don't understand it at all. The only word I recognise is “life”.", + "line": { + "current": 14, + "max": 15 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-23", + "lineInfo": { + "dialogue": "I need to get some fresh air, the dust is starting to get to me. Looks like the exit is right there.", + "line": { + "current": 15, + "max": 15 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "almujdesert-junes-24", + "lineInfo": { + "dialogue": "Did you open this place up? You've done some serious damage!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-25", + "lineInfo": { + "dialogue": "It might not look like much, but these ruins were left by a now extinct empire.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-26", + "lineInfo": { + "dialogue": "I spent half a year excavating this place.. I must admit it would have taken me 2 years to finish. Alright, let's go deeper. Try to keep up.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "almujdesert-junes-27", + "lineInfo": { + "dialogue": "Amazing, isn't it? This is just an ordinary building in the old empire that lies beneath the sands.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-28", + "lineInfo": { + "dialogue": "We don't know much about them, but we are uncovering more and more every day.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-29", + "lineInfo": { + "dialogue": "Follow me, there is so much to take in.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-30", + "lineInfo": { + "dialogue": "It's clear that the empire were seriously advanced, possibly more advanced than us in some ways.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-31", + "lineInfo": { + "dialogue": "I keep seeing symbols in every building.. It looks like some kind of rod or sceptre.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-32", + "lineInfo": { + "dialogue": "We know that there was an emperor that ruled these lands, this must be the source of his power.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-33", + "lineInfo": { + "dialogue": "Hmm, I'm going to continue researching this place, but I think I might be able to figure a way out for you.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-34", + "lineInfo": { + "dialogue": "Oh DEAR!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "almujdesert-junes-35", + "lineInfo": { + "dialogue": "Woah! What did you push this for?", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-36", + "lineInfo": { + "dialogue": "There were markings all over it.. And a small entrance to the inside.", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-37", + "lineInfo": { + "dialogue": "I wonder why... Wait - Where are we?", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-38", + "lineInfo": { + "dialogue": "How do you keep finding these ruins?", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-39", + "lineInfo": { + "dialogue": "My word.. This body.. It's definitely not from the fallen empire.", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-40", + "lineInfo": { + "dialogue": "It's relatively new.. Maybe from the last 100 years.", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-41", + "lineInfo": { + "dialogue": "I've seen evidence all over these buildings of people living in them or storing goods.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-42", + "lineInfo": { + "dialogue": "I guess it's only natural when an empire as big as this one still stands.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-43", + "lineInfo": { + "dialogue": "There must be hundreds of convenient hiding places, this poor guy must have got trapped.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-44", + "lineInfo": { + "dialogue": "Seems like he couldn't get the door open. Maybe the wood has rotted by now...", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-45", + "lineInfo": { + "dialogue": "HUP!", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "almujdesert-junes-46", + "lineInfo": { + "dialogue": "How did you open this door? It's been sealed for as long as I remember.", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-47", + "lineInfo": { + "dialogue": "However... This barrier doesn't look like it was made by the empire.", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "almujdesert-junes-48", + "lineInfo": { + "dialogue": "Well, it seems to have fallen apart to the touch. This is one of the biggest rooms I've seen..", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "almujdesert-junes-49", + "lineInfo": { + "dialogue": "It's still old, though. Let's give it a little nudge.", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "almujdesert-junes-50", + "lineInfo": { + "dialogue": "This must have been important... Let's go!", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-51", + "lineInfo": { + "dialogue": "Don't you think this vault is a little grand for storing just gold?", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-52", + "lineInfo": { + "dialogue": "Look, there's a pedestal for something here, like a weapon.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-53", + "lineInfo": { + "dialogue": "The dust is disturbed around it. Someone has been here recently..", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-54", + "lineInfo": { + "dialogue": "But why would they take whatever was here, but not all the gold?", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-55", + "lineInfo": { + "dialogue": "Whatever was kept here, I think we can assume it was of great value to the Emperor.", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-junes-56", + "lineInfo": { + "dialogue": "We better get out of here, and don't even think about taking this gold - They are artifacts!", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Junes" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "almujdesert-eagletribesman-1", + "lineInfo": { + "dialogue": "Not only did the Owl Tribe steal our totem but also stole one of our Idol's eyes!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Eagle Tribesman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-eagletribesman-2", + "lineInfo": { + "dialogue": "The totems hold great protective magical power. Without all the parts, it can not function.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Eagle Tribesman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-eagletribesman-3", + "lineInfo": { + "dialogue": "It is probably hiding away somewhere at the Owl Tribe. Maybe if there's peace we can return it.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Eagle Tribesman" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "almujdesert-tribemember1-1", + "lineInfo": { + "dialogue": "The sandstorm has been raging on for months, we HAVE to leave.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Tribe Member" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-tribemember2-1", + "lineInfo": { + "dialogue": "We won't make it out there...", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Tribe Member" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-tribemember1-2", + "lineInfo": { + "dialogue": "We won't make it in here. We're almost out of food.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Tribe Member" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-tribemember3-1", + "lineInfo": { + "dialogue": "Sandstorms usually only last days, maybe weeks. We must have upset the gods.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Tribe Member" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-tribemember2-2", + "lineInfo": { + "dialogue": "I don't think so. I feel the lingering stench of betrayal in the air.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Tribe Member" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-tribemember4-1", + "lineInfo": { + "dialogue": "This is a magical storm. We need to find a magical solution.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Tribe Member" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-tribemember1-3", + "lineInfo": { + "dialogue": "Either way, we need to leave, or we're dead.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Tribe Member" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-tribemember3-2", + "lineInfo": { + "dialogue": "I wonder what is happening out there in the citadel?", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Tribe Member" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "almujdesert-shopkeeper-1", + "lineInfo": { + "dialogue": "Hey there friend! Looking teh barter fer some weapons or trinkets?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Shopkeeper" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-shopkeeper-2", + "lineInfo": { + "dialogue": "Scum! That guy jus' stole a necklace! Catch 'im and jus' take this as payment!!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Shopkeeper" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "almujdesert-banditleader-1", + "lineInfo": { + "dialogue": "Looks like you were followed, boy.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Bandit Leader" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-banditleader-2", + "lineInfo": { + "dialogue": "Well, what do we do now, we're caught by the famous Ragni Guard.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Bandit Leader" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-banditleader-3", + "lineInfo": { + "dialogue": "Or maybe.. You're looking fer somefin else..", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Bandit Leader" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-banditleader-4", + "lineInfo": { + "dialogue": "JEFFERY, not now. Behave.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Bandit Leader" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "almujdesert-banditguard-1", + "lineInfo": { + "dialogue": "Duhh sorwy boss.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bandit Guard" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "almujdesert-banditleader-5", + "lineInfo": { + "dialogue": "Listen, we ain' all bad. Sure we like to nick stuff but thats how its always been.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Bandit Leader" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-banditleader-6", + "lineInfo": { + "dialogue": "Our daddies daddies escaped your stupid corruption war to the desert, it ain' got anyfin to do with us.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Bandit Leader" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-banditleader-7", + "lineInfo": { + "dialogue": "So, let's just let this go and you can go back to yer war.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Bandit Leader" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-banditleader-8", + "lineInfo": { + "dialogue": "We'll let yer go without a fight, and you keep yer mouth shut.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Bandit Leader" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-banditleader-9", + "lineInfo": { + "dialogue": "Boys, show them out.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Bandit Leader" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "almujdesert-emperor-1", + "lineInfo": { + "dialogue": "Ah, bright days, my 26th son is here..", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Emperor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-emperor-2", + "lineInfo": { + "dialogue": "How were your travels beyond the walls, Hashr?", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Emperor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-hashr-1", + "lineInfo": { + "dialogue": "Life beyond the walls is different, vibrant, but most importantly - magical.", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Hashr" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-emperor-3", + "lineInfo": { + "dialogue": "Not every being is capable of harnessing magic like I am Hashr, you know that.", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Emperor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-hashr-2", + "lineInfo": { + "dialogue": "You see, I know that's not true. They taught me many things.", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Prince Hashr" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-emperor-4", + "lineInfo": { + "dialogue": "Son? What is it you are trying to say?", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Emperor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-hashr-3", + "lineInfo": { + "dialogue": "THAT YOUR WORLD IS A LIE.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Prince Hashr" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-royalguard-1", + "lineInfo": { + "dialogue": "NO! How could you Hashr? You have doomed us all!", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Royal Guard" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-hashr-4", + "lineInfo": { + "dialogue": "My father was mortal like us all. His power came from this sceptre. He is a false God.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Almighty Hashr" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-hashr-5", + "lineInfo": { + "dialogue": "Now I will be able to rule- Wait, what's happening..?", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Almighty Hashr" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "almujdesert-hashr-6", + "lineInfo": { + "dialogue": "Do you hear that? What did my father do to himself?!", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Almighty Hashr" + }, + "settings": { + "falloff": 200 + } + } + ] + } + } + }, + "An Iron Heart Part I": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "anironheartparti-duvale-1", + "lineInfo": { + "dialogue": "Oh, you there! I wasn't expecting a human soldier to be here, but you've come at a perfect time. I could use some help, see.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Duvale" + } + }, + { + "fileOverride": "anironheartparti-duvale-2", + "lineInfo": { + "dialogue": "I'm certain you know about Guard Golems, yes? They're manufactured here in Gavel, and I bought one recently.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Duvale" + } + }, + { + "fileOverride": "anironheartparti-duvale-3", + "lineInfo": { + "dialogue": "The goblins keep trying to forage in my farms, you see- I needed something to keep them out, and a Golem would have been perfect.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Duvale" + } + }, + { + "fileOverride": "anironheartparti-duvale-4", + "lineInfo": { + "dialogue": "But, shortly after I activated it, the thing attacked me! I nearly got killed- It was ramming itself against boulders and walls...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Duvale" + } + }, + { + "fileOverride": "anironheartparti-duvale-5", + "lineInfo": { + "dialogue": "I obviously was sold a defective model... That golem is a danger to everything around it. Do you think you're up to subduing it?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Duvale" + } + }, + { + "fileOverride": "anironheartparti-duvale-6", + "lineInfo": { + "dialogue": "It's shed a trail of scrap, as you can see. Please, follow the trail of scrap and keep it from causing anyone more damage!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Duvale" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "anironheartparti-guardgolem-1", + "lineInfo": { + "dialogue": "...I am... What^s my...name...? I had one...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "???" + } + }, + { + "fileOverride": "anironheartparti-guardgolem-2", + "lineInfo": { + "dialogue": "Re...remember!! WHAT IS MY NAME? My life?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "???" + } + }, + { + "fileOverride": "anironheartparti-guardgolem-3", + "lineInfo": { + "dialogue": "REMEMBER!! No...no orders! No directives!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "3": { + "dialogues": [ + { + "fileOverride": "anironheartparti-guardgolem-4", + "lineInfo": { + "dialogue": "My name!! My life! I won't hurt them! The pain helps me reme...who's there?! LEAVE! PLEASE!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Guard Golem" + } + }, + { + "fileOverride": "anironheartparti-guardgolem-5", + "lineInfo": { + "dialogue": "No directives!! Who did this?! I can't...s-stop giving me ORDERS!!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Guard Golem" + } + }, + { + "fileOverride": "anironheartparti-guardgolem-6", + "lineInfo": { + "dialogue": "NO MORE COLDNESS! NO MORE VOICES THAT AREN'T MINE! MY NAME IS [ERROR]!! [ERROR]!! NOOO!!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Guard Golem" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "anironheartparti-guardgolem-7", + "lineInfo": { + "dialogue": "Falling...apart...this isn't who I I I was... My... My... My my my my my name is. Was. Is. Was. Is. IS...! [ERROR]... Ma[ERROine... Madeleine!! I'm Madeleine... I... I-I-IIIIIIIIII-", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Guard Golem" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "anironheartparti-duvale-7", + "lineInfo": { + "dialogue": "Were you able to subdue the golem? You certainly look like you're in one piece.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Duvale" + } + }, + { + "fileOverride": "anironheartparti-duvale-8", + "lineInfo": { + "dialogue": "Ach...that stings. I shouldn't be surprised you had to destroy it, but that was still a big wasted investment for me.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Duvale" + } + }, + { + "fileOverride": "anironheartparti-duvale-9", + "lineInfo": { + "dialogue": "Still, it makes me wonder...it sounded like it was talking when I first turned it on- Wait, you heard it too?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Duvale" + } + }, + { + "fileOverride": "anironheartparti-duvale-10", + "lineInfo": { + "dialogue": "Hm. There are some unsavory rumors about the factory, come to think of it... Maybe there's some stock to them.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Duvale" + } + }, + { + "fileOverride": "anironheartparti-duvale-11", + "lineInfo": { + "dialogue": "It said a name? Madeleine? It doesn't exactly ring a bell, but that's...rather concerning. I never mentioned a Madeleine to it.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Duvale" + } + }, + { + "fileOverride": "anironheartparti-duvale-12", + "lineInfo": { + "dialogue": "This is worth sending onto the police, really. I think I might have to write to Olux- the factory is near there.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Duvale" + } + }, + { + "fileOverride": "anironheartparti-duvale-13", + "lineInfo": { + "dialogue": "Til then, here. Consider this your reward for helping me out, brave Human. Good luck out there.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Duvale" + } + } + ] + } + } + }, + "An Iron Heart Part II": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "anironheartpart2-detectivehart-1", + "lineInfo": { + "dialogue": "Hotor, Athomo, Arperi, Etyir, Taiyroth, On'omi, Danin, Nesys, Onton. All missing...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Detective Hart" + } + }, + { + "fileOverride": "anironheartpart2-detectivehart-2", + "lineInfo": { + "dialogue": "Etan is the latest. You don't happen to know anything about these people, soldier?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Detective Hart" + } + }, + { + "fileOverride": "anironheartpart2-detectivehart-3", + "lineInfo": { + "dialogue": "Citizens are going missing at an alarming rate. We have lost 10 people in just 3 weeks. There hasn't been a trace of them anywhere.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Detective Hart" + } + }, + { + "fileOverride": "anironheartpart2-detectivehart-4", + "lineInfo": { + "dialogue": "You wouldn't have expected it, with all the guard golems we've been donated recently! Olux should be safer than ever.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Detective Hart" + } + }, + { + "fileOverride": "anironheartpart2-detectivehart-5", + "lineInfo": { + "dialogue": "Of course I have my suspicions, there are rumors floating around about...shady business going on.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Detective Hart" + } + }, + { + "fileOverride": "anironheartpart2-detectivehart-6", + "lineInfo": { + "dialogue": "I don't know who to trust in these circumstances, so if you would be willing to aid in this investigation, I'd be rather thankful.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Detective Hart" + } + }, + { + "fileOverride": "anironheartpart2-detectivehart-7", + "lineInfo": { + "dialogue": "The \"Great\" Daxe is a man with a criminal past. He knows things the police don't, but he won't talk with me, given my status.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Detective Hart" + } + }, + { + "fileOverride": "anironheartpart2-detectivehart-8", + "lineInfo": { + "dialogue": "Can you try to get some information from him? You can find his hut west from here. Next to that Elven girl's camp.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Detective Hart" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "anironheartpart2-daxe-1", + "lineInfo": { + "dialogue": "Oh, so a human wishes to wander into the home of the great Daxe?", + "line": { + "current": 1, + "max": 17 + }, + "npc": "Daxe" + } + }, + { + "fileOverride": "anironheartpart2-daxe-2", + "lineInfo": { + "dialogue": "Unfortunately for you, I'm not fond of visitors. I've left my criminal past behind...mh?", + "line": { + "current": 2, + "max": 17 + }, + "npc": "Daxe" + } + }, + { + "fileOverride": "anironheartpart2-daxe-3", + "lineInfo": { + "dialogue": "What's that device you have there? So you already know about this, then...?", + "line": { + "current": 3, + "max": 17 + }, + "npc": "Daxe" + } + }, + { + "fileOverride": "anironheartpart2-daxe-4", + "lineInfo": { + "dialogue": "Hm! If you already know, what do you need the information for?", + "line": { + "current": 4, + "max": 17 + }, + "npc": "Daxe" + } + }, + { + "fileOverride": "anironheartpart2-guardgolem-1", + "lineInfo": { + "dialogue": "BZZT. [ERROR]...? Madeleine...?", + "line": { + "current": 5, + "max": 17 + }, + "npc": "Guard Golem" + } + }, + { + "fileOverride": "anironheartpart2-guardgolem-2", + "lineInfo": { + "dialogue": "MADELEINE! Where's...wait! What's happening, where am I? WHO'S VOICE IS THIS?!", + "line": { + "current": 6, + "max": 17 + }, + "npc": "Guard Golem" + } + }, + { + "fileOverride": "anironheartpart2-daxe-5", + "lineInfo": { + "dialogue": "Wait, what in the world is going on?! What did you do to my golem?!", + "line": { + "current": 7, + "max": 17 + }, + "npc": "Daxe" + } + }, + { + "fileOverride": "anironheartpart2-guardgolem-3", + "lineInfo": { + "dialogue": "They... my daughter... SHUT UP! QUIET! Who's giving me orders- NO ORDERS! Cold! COLD!", + "line": { + "current": 8, + "max": 17 + }, + "npc": "Guard Golem?" + } + }, + { + "fileOverride": "anironheartpart2-daxe-6", + "lineInfo": { + "dialogue": "Wait, your daughter?! M-Madeleine...? I...h-how...what...?", + "line": { + "current": 9, + "max": 17 + }, + "npc": "Daxe" + } + }, + { + "fileOverride": "anironheartpart2-daxe-7", + "lineInfo": { + "dialogue": "You...you aren't...dead steel? You remember your name...?!", + "line": { + "current": 10, + "max": 17 + }, + "npc": "Daxe" + } + }, + { + "fileOverride": "anironheartpart2-guardgolem-4", + "lineInfo": { + "dialogue": "STOP GIVING ME ORDERS!! I'M...I'M THEODORE! I'M NOT A SERVANT! I...where has my life gone...? Where is...", + "line": { + "current": 11, + "max": 17 + }, + "npc": "Guard Golem?" + } + }, + { + "fileOverride": "anironheartpart2-guardgolem-5", + "lineInfo": { + "dialogue": "Madeleine... Where are you- RE-AFFIRMING DIRECTIVES. BZZT. ... ... ...", + "line": { + "current": 12, + "max": 17 + }, + "npc": "Guard Golem?" + } + }, + { + "fileOverride": "anironheartpart2-daxe-8", + "lineInfo": { + "dialogue": "I... I can't believe it. They didn't...they're still...", + "line": { + "current": 13, + "max": 17 + }, + "npc": "Daxe" + } + }, + { + "fileOverride": "anironheartpart2-daxe-9", + "lineInfo": { + "dialogue": "Dear god, that...that must...I'll talk. I will tell you what I know.", + "line": { + "current": 14, + "max": 17 + }, + "npc": "Daxe" + } + }, + { + "fileOverride": "anironheartpart2-daxe-10", + "lineInfo": { + "dialogue": "I broke into the golem factory for petty thievery...and found them. They gave me this Golem... Theodore...later to keep me quiet.", + "line": { + "current": 15, + "max": 17 + }, + "npc": "Daxe" + } + }, + { + "fileOverride": "anironheartpart2-daxe-11", + "lineInfo": { + "dialogue": "They assured me that they were gone, that every last bit of them was erased. They...those monsters lied to me...", + "line": { + "current": 16, + "max": 17 + }, + "npc": "Daxe" + } + }, + { + "fileOverride": "anironheartpart2-daxe-12", + "lineInfo": { + "dialogue": "Follow this road west and turn right. Look for Urelix. The factory is hidden in a cabin, it won't look like a factory.", + "line": { + "current": 17, + "max": 17 + }, + "npc": "Daxe" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "anironheartpart2-urelix-1", + "lineInfo": { + "dialogue": "And what do you think you are doing, barging into my humble home like this? Do they not teach humans manners in Wynn?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Urelix" + } + }, + { + "fileOverride": "anironheartpart2-urelix-2", + "lineInfo": { + "dialogue": "Ah, yes. You are correct- I oversee the creation of Guard Golems. What of it?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Urelix" + } + }, + { + "fileOverride": "anironheartpart2-urelix-3", + "lineInfo": { + "dialogue": "Oh, you believe that our company is illicit somehow? You insult me so!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Urelix" + } + }, + { + "fileOverride": "anironheartpart2-urelix-4", + "lineInfo": { + "dialogue": "My golems have protected countless people for years. So if you think my company is corrupt, why don't you take a look around?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Urelix" + } + }, + { + "fileOverride": "anironheartpart2-urelix-5", + "lineInfo": { + "dialogue": "Go on, search through my house. See if you can find anything.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Urelix" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "anironheartpart2-urelix-6", + "lineInfo": { + "dialogue": "Well well, look at you, here at the end of my factory. I wasn't expecting you to survive the production line. I thought you'd be one of ours by now.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Dr. Urelix" + } + }, + { + "fileOverride": "anironheartpart2-urelix-7", + "lineInfo": { + "dialogue": "That's that, I suppose. Yes, this is indeed where all the iron golems you've ever encountered were made, and if you've gotten here, you know how we make them.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Dr. Urelix" + } + }, + { + "fileOverride": "anironheartpart2-urelix-8", + "lineInfo": { + "dialogue": "Yes, metal forged with flesh...an unbeatable combination. Emotions and memories must be repressed in order to maintain obedience, of course...", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Dr. Urelix" + } + }, + { + "fileOverride": "anironheartpart2-urelix-9", + "lineInfo": { + "dialogue": "Have you ever looked at a golem's eyes? Sometimes they look back, yes. The person they once were is still in there. I almost feel a connection when I make eye contact with them...", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Dr. Urelix" + } + }, + { + "fileOverride": "anironheartpart2-urelix-10", + "lineInfo": { + "dialogue": "It's odd, honestly. I'm sure they don't feel much except cold, supposing our safeguards stay in place, of course. I have to assume malfunctions happened to have had you find us out...", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Dr. Urelix" + } + }, + { + "fileOverride": "anironheartpart2-urelix-11", + "lineInfo": { + "dialogue": "Oh, look at me now, rambling! I must say I have been alone for a while...well, lacking any company that converses! So, I shall make you a deal, human.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Dr. Urelix" + } + }, + { + "fileOverride": "anironheartpart2-urelix-12", + "lineInfo": { + "dialogue": "I will give you a substantial amount of emeralds and a piece of quality iron armor in return for your silence on my little operation here.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Dr. Urelix" + } + }, + { + "fileOverride": "anironheartpart2-urelix-13", + "lineInfo": { + "dialogue": "I'll advise you to take my deal. Imagine what will happen if you should report my operation to the police. Yes, you'll save a few folk here, but how will the golems be made?", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Dr. Urelix" + } + }, + { + "fileOverride": "anironheartpart2-urelix-14", + "lineInfo": { + "dialogue": "Without them, both Gavel and Wynn would struggle under the weight of our wars. Is this operation so immoral, then? Sacrifices must be made in order to survive.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Dr. Urelix" + } + }, + { + "fileOverride": "anironheartpart2-urelix-15", + "lineInfo": { + "dialogue": "I'll give you some time to consider my proposition. Take from my chest if you wish to take up my offer, otherwise get out of here and do not return.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Dr. Urelix" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "anironheartpart2-urelix-16", + "lineInfo": { + "dialogue": "Ahh, a wise choice. Production will continue then...and you've earned yourself a pocket full of emeralds at the same time.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Dr. Urelix" + } + }, + { + "fileOverride": "anironheartpart2-urelix-17", + "lineInfo": { + "dialogue": "Whether you truly see things my way or simply understand that my work is necessary, I couldn't care less. What matters is not your morality, but your choice.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Dr. Urelix" + } + }, + { + "fileOverride": "anironheartpart2-urelix-18", + "lineInfo": { + "dialogue": "Enjoy your armor and money, and please escort yourself to the exit.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Dr. Urelix" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "anironheartpart2-detectivehart-9", + "lineInfo": { + "dialogue": "You've returned, I see. Any news on the situation?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Detective Hart" + } + }, + { + "fileOverride": "anironheartpart2-detectivehart-10", + "lineInfo": { + "dialogue": "Yes, we're aware of the Golem factory. Were the criminals using it as a base?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Detective Hart" + } + }, + { + "fileOverride": "anironheartpart2-detectivehart-11", + "lineInfo": { + "dialogue": "Wha...fleshcrafting?! Golems are powered by suspended villagers?! Is this true, soldier?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Detective Hart" + } + }, + { + "fileOverride": "anironheartpart2-detectivehart-12", + "lineInfo": { + "dialogue": "We'll need to round up reinforcements immediately, and storm this factory! This cannot go on a moment longer!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Detective Hart" + } + }, + { + "fileOverride": "anironheartpart2-detectivehart-13", + "lineInfo": { + "dialogue": "Don't think you'll go unrewarded, soldier. There will be justice for this grave defilement of our people.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Detective Hart" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "anironheartpart2-detectivehart-14", + "lineInfo": { + "dialogue": "The good people of Olux are going missing! If only you were level 58, you could help me with my investigation.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Detective Hart" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "anironheartpart2-detectivehart-15", + "lineInfo": { + "dialogue": "Have you found any leads since I sent you to my contact, Daxe?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Detective Hart" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "anironheartpart2-detectivehart-16", + "lineInfo": { + "dialogue": "...I hope you always do the right thing.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Detective Hart" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "anironheartpart2-security-1", + "lineInfo": { + "dialogue": "Initiating Chip Insertion Machine - All personell in machine be advised, avoid the spikes.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "11": { + "dialogues": [ + { + "fileOverride": "anironheartpart2-security-2", + "lineInfo": { + "dialogue": "Intruder Detected - Emergency meltdown initiated. Please evacuate immediately via the emergency exit.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + } + } + }, + "Arachnids' Ascent": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-admiralaegis-1", + "lineInfo": { + "dialogue": "Hm... ah, soldier! There you are. I was just about to send someone to fetch you.", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "arachnidsascent-admiralaegis-7", + "lineInfo": { + "dialogue": "Follow me- we have a conversation to have in my office. It's on the top floor of the barracks.", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "arachnidsascent-admiralaegis-8", + "lineInfo": { + "dialogue": "...ahem. Now that we're here, we can discuss the matter of Nivla Woods.", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "arachnidsascent-admiralaegis-2", + "lineInfo": { + "dialogue": "Our preparations are complete, and it's time for the assault on the spider den! With you here, we'll just need to wait for-...", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "arachnidsascent-aledar-1", + "lineInfo": { + "dialogue": "Admiral- we're here! Sorry we're late, we were sparring in the training room and lost track of time...", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "arachnidsascent-tasim-1", + "lineInfo": { + "dialogue": "If soldier is here, I take it that means today is the day we strike at the spiders?", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "arachnidsascent-admiralaegis-3", + "lineInfo": { + "dialogue": "Indeed it is. Now, you three are to be the force which will fight through their den and clear out as many of those spiders as you can. For that, you'll need support.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "arachnidsascent-admiralaegis-4", + "lineInfo": { + "dialogue": "We've sent out several soldiers ahead of time to make preparations on site. You'll want to first speak to Private Cob on the Black Road, who will have supplies for you.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "arachnidsascent-admiralaegis-5", + "lineInfo": { + "dialogue": "I expect this mission will hold some danger, but I trust the three of you will be able to deal with anything you come across. Good luck, soldiers!", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "arachnidsascent-tasim-2", + "lineInfo": { + "dialogue": "Yes, sir. We'll do our best.", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "arachnidsascent-aledar-2", + "lineInfo": { + "dialogue": "These spiders won't stand a chance! Let's get going.", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Aledar" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-admiralaegis-6", + "lineInfo": { + "dialogue": "You'll want to start by speaking to Private Cob on the Black Road. He'll have supplies for you to bring along with you.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Admiral Aegis" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-privatecob-1", + "lineInfo": { + "dialogue": "'ey there, chaps! You lot must be the spider killin' force, eh?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Private Cob" + } + }, + { + "fileOverride": "arachnidsascent-aledar-3", + "lineInfo": { + "dialogue": "That's us! The Admiral told us you had supplies to give us?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "arachnidsascent-privatecob-2", + "lineInfo": { + "dialogue": "That I do! Now, 'fore I send ya off, there's some'n I gotta warn ya 'bout.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Private Cob" + } + }, + { + "fileOverride": "arachnidsascent-privatecob-3", + "lineInfo": { + "dialogue": "Y'see, the entryway to all them creepy crawlies- it's been sealed by some big ol' sticky web! Ain't no way through, y'hear?", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Private Cob" + } + }, + { + "fileOverride": "arachnidsascent-privatecob-4", + "lineInfo": { + "dialogue": "No fire, no magic... nothin' has broken through. The cap'n decided- 'ey, why not try some lava? 's hotter than fire, anyway.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Private Cob" + } + }, + { + "fileOverride": "arachnidsascent-privatecob-5", + "lineInfo": { + "dialogue": "Point is. Along with all your supplies 'n whatnot, ya've gotta bring along some lava for the cap'n. Magically contained, o' course!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Private Cob" + } + }, + { + "fileOverride": "arachnidsascent-tasim-3", + "lineInfo": { + "dialogue": "Sure, that sounds easy enough. A bit of extra work, but we were heading in that direction anyway.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "arachnidsascent-privatecob-6", + "lineInfo": { + "dialogue": "That's the spirit! If ya want the best route to the den, follow that road with the burn marks. It'll send ya straight to the cap'n!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Private Cob" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-privatecob-7", + "lineInfo": { + "dialogue": "Best route to the den's through that road with the burn marks. 'sends ya straight to the cap'n!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Private Cob" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-captainenduyn-1", + "lineInfo": { + "dialogue": "At ease, soldiers! You're the three Aegis told me to look out for, aren't you? Have you spoken to Cob yet?", + "line": { + "current": 1, + "max": 16 + }, + "npc": "Captain Enduyn" + } + }, + { + "fileOverride": "arachnidsascent-tasim-4", + "lineInfo": { + "dialogue": "We have, and we've brought supplies. As well as... lava, I think?", + "line": { + "current": 2, + "max": 16 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "arachnidsascent-captainenduyn-2", + "lineInfo": { + "dialogue": "Ah, good! Just what I've been waiting for. Cob filled you in on my reasoning, yes? We need to get through these webs somehow... and, well, this seemed simpler than the other option.", + "line": { + "current": 3, + "max": 16 + }, + "npc": "Captain Enduyn" + } + }, + { + "fileOverride": "arachnidsascent-captainenduyn-3", + "lineInfo": { + "dialogue": "Now, let's see here... If I cast a spell on it like this, then...", + "line": { + "current": 4, + "max": 16 + }, + "npc": "Captain Enduyn" + } + }, + { + "fileOverride": "arachnidsascent-captainenduyn-4", + "lineInfo": { + "dialogue": "...Hm. That's not good.", + "line": { + "current": 5, + "max": 16 + }, + "npc": "Captain Enduyn" + } + }, + { + "fileOverride": "arachnidsascent-aledar-4", + "lineInfo": { + "dialogue": "So, what do we do now? You mentioned another option- what was that about? What about it made it difficult?", + "line": { + "current": 6, + "max": 16 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "arachnidsascent-captainenduyn-5", + "lineInfo": { + "dialogue": "Right. You may have noticed on your way here, but the nest is at the base of Mt. Wynn, a dormant volcano.", + "line": { + "current": 7, + "max": 16 + }, + "npc": "Captain Enduyn" + } + }, + { + "fileOverride": "arachnidsascent-captainenduyn-6", + "lineInfo": { + "dialogue": "Legends speak of incredible magic granted by the mountain- that of protection, incinerating any who dare go against it.", + "line": { + "current": 8, + "max": 16 + }, + "npc": "Captain Enduyn" + } + }, + { + "fileOverride": "arachnidsascent-captainenduyn-7", + "lineInfo": { + "dialogue": "These are only stories, of course. It's very unlikely the mountain actually could grant such magic. However... there may be some truth in the legend.", + "line": { + "current": 9, + "max": 16 + }, + "npc": "Captain Enduyn" + } + }, + { + "fileOverride": "arachnidsascent-aledar-5", + "lineInfo": { + "dialogue": "So what's the catch? You would have tried this first if it were that simple.", + "line": { + "current": 10, + "max": 16 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "arachnidsascent-captainenduyn-8", + "lineInfo": { + "dialogue": "The mountain is infested with spiders, even more so than Nivla Woods. Our few attempts of scouting it out have shown that they're incredibly hostile towards intruders.", + "line": { + "current": 11, + "max": 16 + }, + "npc": "Captain Enduyn" + } + }, + { + "fileOverride": "arachnidsascent-tasim-5", + "lineInfo": { + "dialogue": "As though they're protecting something, I assume?", + "line": { + "current": 12, + "max": 16 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "arachnidsascent-captainenduyn-9", + "lineInfo": { + "dialogue": "Indeed. So, here's the plan... If you enter the mountain, the spiders will quickly try to move inside to stop you. I'll need one of you to stay here with me to fight them off.", + "line": { + "current": 13, + "max": 16 + }, + "npc": "Captain Enduyn" + } + }, + { + "fileOverride": "arachnidsascent-aledar-6", + "lineInfo": { + "dialogue": "So two of us take on the volcano, and two stay behind. Got it! soldier, you should be part of the Mount Wynn group. But then, Tasim, which of us should go with them?", + "line": { + "current": 14, + "max": 16 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "arachnidsascent-tasim-6", + "lineInfo": { + "dialogue": "Why don't we let soldier decide? Which of us do you want to join you in the volcano?", + "line": { + "current": 15, + "max": 16 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "arachnidsascent-captainenduyn-10", + "lineInfo": { + "dialogue": "Then take more time. But don't take too long- we don't want the spiders to realize we're planning something.", + "line": { + "current": 16, + "max": 16 + }, + "npc": "Captain Enduyn" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-tasim-7", + "lineInfo": { + "dialogue": "Alright. We'll fight through the spiders in the mountain, then. Captain, Aledar, good luck!", + "line": { + "current": 16, + "max": 16 + }, + "npc": "Tasim" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-aledar-7", + "lineInfo": { + "dialogue": "Alright! We'll handle the volcano then. Captain, Tasim, don't die out here!", + "line": { + "current": 16, + "max": 16 + }, + "npc": "Aledar" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-tasim-8", + "lineInfo": { + "dialogue": "So, who do you want to join you to fight through Mount Wynn?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-aledar-8", + "lineInfo": { + "dialogue": "Let's get going, soldier! We'll want to get to the summit as quickly as we can.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-tasim-9", + "lineInfo": { + "dialogue": "We should get moving, soldier. I don't want to make those two fight more spiders than they need to.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-captainenduyn-11", + "lineInfo": { + "dialogue": "We're counting on you, soldier! Go climb that volcano! The cave entrance is not far from here.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Enduyn" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-aledar-9", + "lineInfo": { + "dialogue": "...Wow, it's hot in here! That makes sense, I guess, given what we're here for. Let's reach the top as quickly as we can.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-aledar-10", + "lineInfo": { + "dialogue": "W-woah! You felt that too, right? What's going-", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Aledar" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-aledar-11", + "lineInfo": { + "dialogue": "That... that was a close one. Phew! Can't believe we made it out in one piece. I think we're near the top, too.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-aledar-12", + "lineInfo": { + "dialogue": "Well, here we are! ...The heat's gotten more intense up here. Come on, let's find what we're looking for, before I over-", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Aledar" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-aledar-13", + "lineInfo": { + "dialogue": "We've got to run for it! Come on, jump!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Aledar" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-ignisarachnid-1", + "lineInfo": { + "dialogue": "...intruders....come to take....sacred protection....", + "line": { + "current": 2, + "max": 4 + }, + "npc": "???" + } + }, + { + "fileOverride": "arachnidsascent-ignisarachnid-2", + "lineInfo": { + "dialogue": ".....must not......allow.....will kill.....for queen!....", + "line": { + "current": 3, + "max": 4 + }, + "npc": "???" + } + }, + { + "fileOverride": "arachnidsascent-aledar-14", + "lineInfo": { + "dialogue": "Ack! We should have known it wouldn't be that easy. Alright, let's take down this spider and get what we came for!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Aledar" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-aledar-15", + "lineInfo": { + "dialogue": "Well, there it is. We have what we need to burn through those webs!... I hope.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "arachnidsascent-aledar-16", + "lineInfo": { + "dialogue": "The spider mentioned a queen... I guess that's what we'll be facing in their nest, then.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "arachnidsascent-aledar-17", + "lineInfo": { + "dialogue": "Alright, let's get back to Tasim and the captain!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Aledar" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-tasim-10", + "lineInfo": { + "dialogue": "...I can hear the spiders already. We'll need to fight through them if we want to reach the top. Let's get going, we don't want to take too long.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-tasim-11", + "lineInfo": { + "dialogue": "H-huh? That shaking, it's almost like-", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "arachnidsascent-tasim-12", + "lineInfo": { + "dialogue": "What are those spiders doing!? soldier, come on, we need to move!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-tasim-13", + "lineInfo": { + "dialogue": "...That was closer than it should have been. The spiders must be real desperate to protect whatever it is they have up here, huh? Let's keep going.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-tasim-14", + "lineInfo": { + "dialogue": "It was a tough climb, but we made it... It's, uh, very hot up here. So- what was it we were looking for-", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Tasim" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-tasim-15", + "lineInfo": { + "dialogue": "Of course it wouldn't be that easy... Alright, soldier, let's do what we came here for. Let's claim that magic, and burn through the webs!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Tasim" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-tasim-16", + "lineInfo": { + "dialogue": "I guess that's that taken care of. We'll be able to burn through the webs protecting the spiders' nest, now.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "arachnidsascent-tasim-17", + "lineInfo": { + "dialogue": "You heard the spider mention a queen, right? We'll probably have to defeat it in its nest to stop the spiders, once and for all.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "arachnidsascent-tasim-18", + "lineInfo": { + "dialogue": "We should get going back down the mountain. We don't want to keep Aledar and the Captain waiting.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Tasim" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-captainenduyn-12", + "lineInfo": { + "dialogue": "You've returned! I trust you found something that can help us pass through these webs?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Captain Enduyn" + } + }, + { + "fileOverride": "arachnidsascent-aledar-18", + "lineInfo": { + "dialogue": "We did! We fought off a spider at the summit, and claimed a magical flame.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "arachnidsascent-captainenduyn-13", + "lineInfo": { + "dialogue": "Excellent! Now, give it here. I take it the three of you intend to storm the nest?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Captain Enduyn" + } + }, + { + "fileOverride": "arachnidsascent-tasim-19", + "lineInfo": { + "dialogue": "That's why we're here, yes. We'll deal with this spider problem once and for all.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "arachnidsascent-captainenduyn-14", + "lineInfo": { + "dialogue": "If that's the case, I'll leave it to you. I'll continue dealing with the spiders in this area of the forest in the meantime.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Captain Enduyn" + } + }, + { + "fileOverride": "arachnidsascent-captainenduyn-15", + "lineInfo": { + "dialogue": "...Anyway, stand clear for a moment! I'm about to burn the webs. Good luck in there!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Captain Enduyn" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-tasim-20", + "lineInfo": { + "dialogue": "We did, yes. There was a powerful spider at the peak, which was making use of this magical flame.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Tasim" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-aledar-19", + "lineInfo": { + "dialogue": "Yep, we do! The Admiral sent us here with that mission, and we'll do our best to complete it.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Aledar" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-captainenduyn-16", + "lineInfo": { + "dialogue": "Here we go!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Captain Enduyn" + } + }, + { + "fileOverride": "arachnidsascent-captainenduyn-17", + "lineInfo": { + "dialogue": "Now head on in and finish off these pests!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Captain Enduyn" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-aledar-20", + "lineInfo": { + "dialogue": "Alright! We'll handle the volcano then. Captain, Tasim, don't die out here!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Aledar" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-tasim-21", + "lineInfo": { + "dialogue": "Alright. We'll fight through the spiders in the mountain, then. Captain, Aledar, good luck!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "arachnidsascent-captainenduyn-18", + "lineInfo": { + "dialogue": "At ease, soldier! Not much to see here, I'm afraid.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Captain Enduyn" + } + }, + { + "fileOverride": "arachnidsascent-captainenduyn-19", + "lineInfo": { + "dialogue": "I've been stationed here to keep an eye on the spiders' nest, but... Well, they've put up a massive web to block entry! There's no way through, from what I can tell.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Captain Enduyn" + } + }, + { + "fileOverride": "arachnidsascent-captainenduyn-20", + "lineInfo": { + "dialogue": "If you'd like to help, I'd suggest speaking to Admiral Aegis in Detlas. He'll be able to give you an assignment.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Captain Enduyn" + } + } + ] + } + } + }, + "Barracks": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "barracks-aledar-1", + "lineInfo": { + "dialogue": "Well, here we are! Back at the barracks, after a successful mission. It feels a little... unreal, you know?", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "barracks-tasim-1", + "lineInfo": { + "dialogue": "I know what you mean. But, well, we did good! We managed to make the woods safer for the people living there.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "barracks-aledar-2", + "lineInfo": { + "dialogue": "We did! And now, we celebrate! Here, let's all have some Nemract Whiskey for the occasion.", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "barracks-tasim-2", + "lineInfo": { + "dialogue": "...So, what're you two planning to do next? I think I'll speak to the Admiral about finding an assignment somewhere.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "barracks-aledar-3", + "lineInfo": { + "dialogue": "Hm. I've been thinking a little about... looking into more advanced powder techniques. Something about their magic sticks out to me.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "barracks-tasim-3", + "lineInfo": { + "dialogue": "Oh, really? I thought you would be more into basic fighting, what with our journey to Ragni.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "barracks-aledar-4", + "lineInfo": { + "dialogue": "Yeah... well, I guess I found something a little more interesting along the way. I'll let you know how it all goes.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "barracks-tasim-4", + "lineInfo": { + "dialogue": "Keep us updated, Aledar. So, soldier, what are you thinking of doing next?", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "barracks-aledar-5", + "lineInfo": { + "dialogue": "Not a bad idea! I might join you with that later, once I've decide on things more.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "barracks-tasim-5", + "lineInfo": { + "dialogue": "Helping people is a good goal. There's bound to be lots of people around who need it.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Tasim" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "barracks-aledar-6", + "lineInfo": { + "dialogue": "Exploring, huh? That's a good idea. There's plenty to see around here!", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "barracks-tasim-6", + "lineInfo": { + "dialogue": "...And- well, we all came here for a reason. Might as well see the province while we're here, right?", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Tasim" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "barracks-tasim-7", + "lineInfo": { + "dialogue": "Well, if you're staying in the area, maybe we'll cross paths! I'll likely be defending Detlas in the short-term.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "barracks-aledar-7", + "lineInfo": { + "dialogue": "And, well, I'll probably be around as well! There's plenty of experts in the area.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Aledar" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "barracks-aledar-8", + "lineInfo": { + "dialogue": "Well, hey, there's no shame in that. There's lots to do around here. I'm sure you'll figure it out!", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "barracks-tasim-8", + "lineInfo": { + "dialogue": "If you need a goal, the next place you might want to visit is Nemract Swamp, to the north. Maybe pay it a visit when you reach level 20.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "barracks-aledar-9", + "lineInfo": { + "dialogue": "...Well, I'm glad we were all able to be here together. Here's to a long and fulfilling friendship!", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "barracks-tasim-9", + "lineInfo": { + "dialogue": "I'll drink to that! To all our future adventures.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Tasim" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "barracks-tasim-10", + "lineInfo": { + "dialogue": "Oh, hello soldier. I'm probably not going to be here for long- I've been assigned to help defend Elkurn to the south.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "barracks-tasim-11", + "lineInfo": { + "dialogue": "You should come visit, if you have the chance!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "barracks-aledar-10", + "lineInfo": { + "dialogue": "...Oh, soldier! Good to see you. Anything interesting going on with you?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "barracks-aledar-11", + "lineInfo": { + "dialogue": "Me? Well, I've been making a little progress... but, nothing too big yet. I'm keeping at it, though!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Aledar" + } + } + ] + } + } + }, + "Beneath the Depths": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "beneaththedepths-javier-1", + "lineInfo": { + "dialogue": "Garh, you look like a mighty fine adventurer, lad. But perhaps your pockets are a little lighter than you want, eh?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-2", + "lineInfo": { + "dialogue": "Perhaps we be making a deal, lad, and it'll make us both rich!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-3", + "lineInfo": { + "dialogue": "Ye see, lad, me treasure has been lost for quite some time, I kept it in a ocean village named Sarnfic, in a secret room.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-4", + "lineInfo": { + "dialogue": "Argh, but lad. The village vanished out of nowhere! Like some kind of dark magic! I swears to ye, I tell no lies!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-5", + "lineInfo": { + "dialogue": "So ye see, in me old age I could use a spot of me lawful gold to see me through me final years.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-6", + "lineInfo": { + "dialogue": "Don't fret though, chuck, old Javier always kept a back up plan.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-7", + "lineInfo": { + "dialogue": "I left me old sea farin' map in me old hideout, it'll tell ye where we can find me old gold.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-8", + "lineInfo": { + "dialogue": "So, lad. Are ya willin' to make ye'self mighty wealthy? Good.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-9", + "lineInfo": { + "dialogue": "Me old hideout's hidden inside that there skull at the entrance to our mighty fine establishment. Bring me that map, lad!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Javier" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "beneaththedepths-deceasedbuccaneer-1", + "lineInfo": { + "dialogue": "Halt it there, laddy! The wind has told us that yer looking for treasure map. Ah, ye'll not get it so easily.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Deceased Buccaneer" + } + }, + { + "fileOverride": "beneaththedepths-deceasedbuccaneer-2", + "lineInfo": { + "dialogue": "Ye see, us spirits are as greedy as our physical selves were. 'ere's no foolin' 'round there. We want yer money, and only then will we open the paths to the map.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Deceased Buccaneer" + } + }, + { + "fileOverride": "beneaththedepths-deceasedbuccaneer-3", + "lineInfo": { + "dialogue": "One full block of smashed together emeralds will satisfy our needs. Go to the front of this tomb, and flush it down the middle of that raised thing.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Deceased Buccaneer" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "beneaththedepths-deceasedbuccaneer-4", + "lineInfo": { + "dialogue": "Good luck on that petty journey of yers. Just find the whole path, and yerself'll be just fine...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Deceased Buccaneer" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "beneaththedepths-javier-10", + "lineInfo": { + "dialogue": "Argh, yer talented aren't you lad! Many thanks indeed, now we can see where me treasure be buried.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-11", + "lineInfo": { + "dialogue": "Hrmm, well, garr, blast it all!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-12", + "lineInfo": { + "dialogue": "I canne read me own darn map, lad! What'dya do with it? Scratch off the ink with yer pennies?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-13", + "lineInfo": { + "dialogue": "Gar, sorry lad. It be the test of time that failed old Javier, not you.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-14", + "lineInfo": { + "dialogue": "Fear not, lad. There be an old friend of Javier's that can help decipher this old rag.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-15", + "lineInfo": { + "dialogue": "Go to the old Mage Island, there be a man by the name of Dalben who can restore me map to its former glory. Get it done lad, and bring me treasure back!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Javier" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "beneaththedepths-dalben-1", + "lineInfo": { + "dialogue": "What's this? A traveller? How might we assist you?", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Dalben" + } + }, + { + "fileOverride": "beneaththedepths-dalben-2", + "lineInfo": { + "dialogue": "Ah, I see, you wish to explore the ocean depths? But for what possible reason?", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Dalben" + } + }, + { + "fileOverride": "beneaththedepths-dalben-3", + "lineInfo": { + "dialogue": "This map... How did you acquire it? This is enchanted by our people.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Dalben" + } + }, + { + "fileOverride": "beneaththedepths-dalben-4", + "lineInfo": { + "dialogue": "You... You seek Sarnfic, don't you?", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Dalben" + } + }, + { + "fileOverride": "beneaththedepths-dalben-5", + "lineInfo": { + "dialogue": "Alas, that place has history. We, the Mage Council, banished that city long ago to hide the horrific power hidden within a treasure a pirate hid there.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Dalben" + } + }, + { + "fileOverride": "beneaththedepths-dalben-6", + "lineInfo": { + "dialogue": "A pair of boots, made from a black material fashioned from the stone of an evil place, incredibly dark magic. But we do not believe the filthy idiotic pirate knew what he'd found.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Dalben" + } + }, + { + "fileOverride": "beneaththedepths-dalben-7", + "lineInfo": { + "dialogue": "I must say, we, the council regret having to lay waste an entire village over a pair of boots. There was no other way.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Dalben" + } + }, + { + "fileOverride": "beneaththedepths-dalben-8", + "lineInfo": { + "dialogue": "Who knows why he even kept the boots. If he had known about their power, I'm sure he would have used it for evil. But we sense no evil in you, so as such we will aid you in your quest.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Dalben" + } + }, + { + "fileOverride": "beneaththedepths-dalben-9", + "lineInfo": { + "dialogue": "We hope that you will use the boots for good, despite the dark intentions. We will lift the enchantment once lain upon the charts, but it will cost you.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Dalben" + } + }, + { + "fileOverride": "beneaththedepths-dalben-10", + "lineInfo": { + "dialogue": "Give me [5 Emerald Blocks], that should cover the cost.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Dalben" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "beneaththedepths-dalben-11", + "lineInfo": { + "dialogue": "Brilliant. That seems in order. Here you go.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Dalben" + } + }, + { + "fileOverride": "beneaththedepths-dalben-12", + "lineInfo": { + "dialogue": "We only hope that the boots will never fall into the hands of that pirate again, we'd much rather they fall into yours.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Dalben" + } + }, + { + "fileOverride": "beneaththedepths-dalben-13", + "lineInfo": { + "dialogue": "Well? What does it say? Go to that location! Find the treasure!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Dalben" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "beneaththedepths-javier-16", + "lineInfo": { + "dialogue": "Gnar, you did it lad! Ye brought back old Javiers gold! And as I promised, heres yer share of the loot.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-17", + "lineInfo": { + "dialogue": "I threw in something extra for ye. It's an old key I salvaged a few years back, from the shipwreck of a legendary pirate.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-18", + "lineInfo": { + "dialogue": "Who knows what it leads to? Maybe a treasure hoard, or maybe the ol' swashbuckler wanted to lead someone into a trap.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Javier" + } + }, + { + "fileOverride": "beneaththedepths-javier-19", + "lineInfo": { + "dialogue": "Me bones are too old for a grand adventure like that, guess ye'll have to figure it out for yerself.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Javier" + } + } + ] + } + } + }, + "Beyond the Grave": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-irlok-1", + "lineInfo": { + "dialogue": "Welcome to Bantisu Temple, traveler. We guide lost souls onwards, be they wandering men to town or spirits unable to exit the canyon.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Irlok" + } + }, + { + "fileOverride": "beyondthegrave-irlok-2", + "lineInfo": { + "dialogue": "However, recently our job has become much more difficult. The canyon shakes, and changes. Often, long-buried creatures are released as the walls shift.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Irlok" + } + }, + { + "fileOverride": "beyondthegrave-irlok-3", + "lineInfo": { + "dialogue": "And unfortunately, the worst has come to pass, that one of these creatures is hostile. The Bantisu monks of old collapsed the entrance to its cave to seal it away...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Irlok" + } + }, + { + "fileOverride": "beyondthegrave-irlok-4", + "lineInfo": { + "dialogue": "...but the rubble has shifted, and the cave is open once more. We were not strong enough to defeat it then, and we are not strong enough to defeat it now.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Irlok" + } + }, + { + "fileOverride": "beyondthegrave-irlok-5", + "lineInfo": { + "dialogue": "Even trying to collapse the cave again has ended in failure, for the beast, Krolton, slays our mages and demolitionists in but an instant.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Irlok" + } + }, + { + "fileOverride": "beyondthegrave-irlok-6", + "lineInfo": { + "dialogue": "However, the word on the wind tells tales of humans doing the impossible as a matter of rote. Krolton must be dealt with before it leaves the cave- I beg your assistance!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Irlok" + } + }, + { + "fileOverride": "beyondthegrave-irlok-7", + "lineInfo": { + "dialogue": "We've no time to spare. I will prepare a short spell to bring you to the cave- Please, wait outside, and prepare yourself.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Irlok" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-irlok-8", + "lineInfo": { + "dialogue": "I apologize for the suddenness of this, but you must understand the urgency. We have no way of knowing when Krolton may emerge.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Irlok" + } + }, + { + "fileOverride": "beyondthegrave-irlok-9", + "lineInfo": { + "dialogue": "We will pray for your safety, and that your spirit will not become among those we must guide out of the canyon.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Irlok" + } + }, + { + "fileOverride": "beyondthegrave-irlok-10", + "lineInfo": { + "dialogue": "Now, hold tight, and godspeed!!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Irlok" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-1", + "lineInfo": { + "dialogue": "IT SEEMS I HAVE A NEW GUEST. WELCOME.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-2", + "lineInfo": { + "dialogue": "MAKE YOURSELF COMFORTABLE. YOU'LL BE STAYING HERE FOR A WHILE.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-3", + "lineInfo": { + "dialogue": "NOTHING IS STOPPING YOU FROM TAKING A LOOK AROUND. DON'T TOUCH ANYTHING THOUGH. AND TAKE OFF YOUR SHOES AS YOU ENTER.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-4", + "lineInfo": { + "dialogue": "WHEN YOU FEEL LIKE IT, COME TO MY OFFICE UPSTAIRS. WE HAVE A LENGTHY TALK TO HAVE.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "4": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-5", + "lineInfo": { + "dialogue": "IMPRESSIVE. HOWEVER, THAT WAS SIMPLY ROUND 1, OUT OF 20. EACH ONE WILL BE PROGRESSIVELY MORE DIFFICULT THAN THE LAST. READY?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-6", + "lineInfo": { + "dialogue": "...AH, THE LOOK ON YOUR FACE. PRICELESS. GIVEN MY SKULL IS SOLID AND CANNOT EMOTE, I HAVE TO GET MY FILL OF MAKING FACES SOMEHOW.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-7", + "lineInfo": { + "dialogue": "I AM SATISFIED, AND THAT'S ALL I REALLY WANTED FROM YOU.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-8", + "lineInfo": { + "dialogue": "NOW AS IS TYPICAL FOR WINNING A QUIZ GAME AGAINST A METAPHYSICAL ENTITY, I WILL DESTROY A WINDOW WITH A CANNONBALL SO YOU MAY GO ANY TIME.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "5": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-9", + "lineInfo": { + "dialogue": "A TECHNOLOGICAL MARVEL- THE SCREEN TURNS OFF WHEN A GUEST RUDELY LEAVES IN THE MIDDLE OF A GAMESHOW. A NICHE FUNCTION, TO BE SURE, BUT A USEFUL ONE.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "6": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-10", + "lineInfo": { + "dialogue": "THESE HOURGLASSES SHOW THE LIFESPAN OF HUMANS. WHEN ALL THE SAND HITS THE BOTTOM, I GET A NEW GUEST.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-11", + "lineInfo": { + "dialogue": "OH LOOK, HERE'S YOURS. IT SAYS YOU'VE BEEN HERE 126 TIMES IN THE LAST THREE MONTHS. SORRY, 127 NOW.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-12", + "lineInfo": { + "dialogue": "MY MIND MUST HAVE SLIPPED, I FORGOT TO MENTION THE MASSIVE HOURGLASS. IT SHOWS HOW MUCH TIME THE WORLD HAS LEFT.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-13", + "lineInfo": { + "dialogue": "I'LL GIVE YOU TIME TO GET OVER WHAT YOU HAVE WITNESSED.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "7": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-14", + "lineInfo": { + "dialogue": "I SUGGEST YOU DON'T EAT ANYTHING THAT YOU ARE SERVED HERE, I HEARD IT IS TO DIE FOR.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-15", + "lineInfo": { + "dialogue": "IF I HAD BOUGHT ANY WHEAT THIS MORNING, I'D OFFER A BISCUIT AS CONSOLATION FOR DYING.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-16", + "lineInfo": { + "dialogue": "IT'S A SHAME, REALLY. I'M TOLD I MAKE THE BEST LITTLE CHOCOLATE CHIP ONES.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "8": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-17", + "lineInfo": { + "dialogue": "FEET OFF THE TABLE PLEASE.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "9": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-18", + "lineInfo": { + "dialogue": "IF ANYONE ASKS, YES, I AM MARRIED. JUST BECAUSE I DON'T HAVE A HEART DOESN'T MEAN THAT I CAN'T LOVE.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "10": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-19", + "lineInfo": { + "dialogue": "THIS IS AN EMPTY ROOM.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-20", + "lineInfo": { + "dialogue": "AROUND THE MANSION, THERE ARE MANY MORE EMPTY ROOMS.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "11": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-21", + "lineInfo": { + "dialogue": "THIS IS MY OFFICE. GUESS WHAT I DO HERE. HUH?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-22", + "lineInfo": { + "dialogue": "I DIE OF BOREDOM.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-23", + "lineInfo": { + "dialogue": "...REALLY? NOTHING? YOU HUMANS HAVE NO SENSE OF HUMOUR.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-24", + "lineInfo": { + "dialogue": "PLEASE TAKE A SEAT. LET'S REVIEW YOUR OPTIONS.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Death" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-25", + "lineInfo": { + "dialogue": "THIS IS THE LIBRARY, WHERE MY GUESTS COME TO SPEND THEIR TIME.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-26", + "lineInfo": { + "dialogue": "FEEL FREE TO TAKE YOUR TIME AND READ UP. KNOWLEDGE IS POWER, AND ALL THAT.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-27", + "lineInfo": { + "dialogue": "YOU COULD READ ALL OF THEM IF YOU LIKE, BUT THEY ARE ALL IN LATIN, AND I HEARD THAT IS NOW A DEAD LAGUAGE.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "13": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-28", + "lineInfo": { + "dialogue": "IT SEEMS YOU REALLY WANTED TO KNOW WHAT WAS BEHIND THIS DOOR.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-29", + "lineInfo": { + "dialogue": "I GUESS YOU WILL GET WHAT YOU WANTED...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-30", + "lineInfo": { + "dialogue": "ANOTHER DOOR.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-31", + "lineInfo": { + "dialogue": "DO YOU REALLY THINK IT WAS WORTH YOUR TIME?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "14": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-32", + "lineInfo": { + "dialogue": "IF YOU HEAR SCREAMING, DON'T WORRY. IT'S JUST THE WALLS.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "15": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-33", + "lineInfo": { + "dialogue": "IS MY MANSION SO DULL YOU WOULD RATHER GO ROCK CLIMBING?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "16": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-34", + "lineInfo": { + "dialogue": "I'VE HEARD THERE IS SOME GUY AT THE TOP OF SOME ICE TOWER RIPPING ME OFF.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "17": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-35", + "lineInfo": { + "dialogue": "THIS BOOK IS SO BAD, EVEN THE LONG-WINDED AND PAINFUL DEATH OF SWEENEY S. GREENVILLE IS BETTER THAN THIS.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "18": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-36", + "lineInfo": { + "dialogue": "THE REMOTE'S FIDDLY. YOU NEED TO BE SITTING ON THE COUCH FOR IT TO WORK.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "19": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-37", + "lineInfo": { + "dialogue": "I KNOW THIS SEEMS LIKE AN ODD PLACE TO BE. SITTING IN FRONT OF DEATH.", + "line": { + "current": 1, + "max": 14 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-38", + "lineInfo": { + "dialogue": "THE TRUTH IS, YOU HAVE BEEN HERE MANY TIMES BEFORE.", + "line": { + "current": 2, + "max": 14 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-39", + "lineInfo": { + "dialogue": "THE CATCH IS, A MORTAL MAY NEVER BE ALLOWED TO SPEAK OF MY REALM.", + "line": { + "current": 3, + "max": 14 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-40", + "lineInfo": { + "dialogue": "SO I MAKE EVERYONE WHO VISITS...SIMPLY FORGET.", + "line": { + "current": 4, + "max": 14 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-41", + "lineInfo": { + "dialogue": "IT'S EASIER ON EVERYONE THAT WAY. YOU WOULDN'T WANT TO TELL PEOPLE ABOUT YOUR DEATH, THAT WOULD BE WEIRD.", + "line": { + "current": 5, + "max": 14 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-42", + "lineInfo": { + "dialogue": "THIS TIME, HOWEVER, I'LL JUST HAVE TO LET YOU REMEMBER YOUR JOURNEY HERE.", + "line": { + "current": 6, + "max": 14 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-43", + "lineInfo": { + "dialogue": "WHY YOU ASK? OH, YOU WOULDN'T WANT TO FORGET THE JOURNEY OF A LIFETIME, RIGHT?", + "line": { + "current": 7, + "max": 14 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-44", + "lineInfo": { + "dialogue": "THAT, AND I RECEIVED SOME POSTAGE, SHALL WE SAY. SOMEONE IS INVESTED IN YOUR CONTINUED SURVIVAL.", + "line": { + "current": 8, + "max": 14 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-45", + "lineInfo": { + "dialogue": "I ALWAYS ALLOW PEOPLE THE OPPORTUNITY TO RE-ENTER THE MORTAL PLANE ANYWAY.", + "line": { + "current": 9, + "max": 14 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-46", + "lineInfo": { + "dialogue": "CALL IT BARGAINING WITH DEATH IF YOU LIKE. TRUTH IS, I JUST GET A BIT BORED.", + "line": { + "current": 10, + "max": 14 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-47", + "lineInfo": { + "dialogue": "IF YOU WISH TO RETURN TO LIFE, AND I CAN NEVER UNDERSTAND WHY PEOPLE DO, ALL YOU HAVE TO DO IS BEAT THAT WHICH SENT YOU HERE.", + "line": { + "current": 11, + "max": 14 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-48", + "lineInfo": { + "dialogue": "IN YOUR CASE, IT IS THE CREATURE KNOWN AS KROLTON. I SIMPLY ASK YOU SPEND A BIT OF TIME HERE AND PLAY A SHORT GAME BEFORE YOU GO, IN THE OTHER UPSTAIRS ROOM.", + "line": { + "current": 12, + "max": 14 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-49", + "lineInfo": { + "dialogue": "I DO ENJOY MY CHATS WITH HUMANS, THEY NEVER SAY ANYTHING.", + "line": { + "current": 13, + "max": 14 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-50", + "lineInfo": { + "dialogue": "WHICH IS ODD, BECAUSE OUT OF THE TWO OF US, THEY ARE THE ONES WITH VOCAL CHORDS.", + "line": { + "current": 14, + "max": 14 + }, + "npc": "Death" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-51", + "lineInfo": { + "dialogue": "SOMETHING I'M FINDING INCREASINGLY ANNOYING IS HOW MANY PEOPLE ARE FINDING WAYS TO BECOME IMMORTAL NOWADAYS. INTELLIGENT COMPANY IS STARTING TO GET A BIT SCARCER.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-52", + "lineInfo": { + "dialogue": "OH, YOU ARE STILL HERE. IF YOU WANT TO LEAVE, I SIMPLY WANT A BIT OF ENTERTAINMENT BEFORE YOU DO. WOULD YOU GO TO THE GAME ROOM ON THE OTHER END OF THE MANSION?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Death" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-53", + "lineInfo": { + "dialogue": "WELL, I SEE YOU ARE LEAVING.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-54", + "lineInfo": { + "dialogue": "IT WAS NICE TO HAVE YOU BACK AGAIN, I DO ENJOY YOUR VISITS.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-55", + "lineInfo": { + "dialogue": "TO RISE BACK TO LIFE, YOU MUST DEFEAT THE ONE WHO BROUGHT YOU TO MY HANDS.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-56", + "lineInfo": { + "dialogue": "YOU'VE MANAGED IT BEFORE SO I CAN'T SEE WHY YOU CAN'T MANAGE IT AGAIN. AFTERALL, YOU MANAGE TO KEEP DYING.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-57", + "lineInfo": { + "dialogue": "...OR YOU KNOW, DON'T. I DO ENJOY HAVING A LITTLE COLOUR AROUND THE MANSION.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "22": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-death-58", + "lineInfo": { + "dialogue": "...AND ANOTHER THING. GIVEN WHAT I SAID EARLIER, IT FEELS RIGHT TO LET YOU KNOW SOMETHING.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-59", + "lineInfo": { + "dialogue": "SO LONG AS THE BEAST THAT KILLED YOU DIES BY SOMETHING YOU CAUSE, YOU WILL RETURN TO LIFE. SO BE AS RECKLESS AS YOU WANT.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Death" + } + }, + { + "fileOverride": "beyondthegrave-death-60", + "lineInfo": { + "dialogue": "AND IF YOU ARE TOO RECKLESS, THAT WILL BE A VALUABLE LESSON TO YOU. SINCE KROLTON HAS NOTICED YOU AGAIN, I’LL LEAVE YOU TO IT.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Death" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "23": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-irlok-11", + "lineInfo": { + "dialogue": "Oh, thank goodness. You've returned- not free of wear, but certainly alive. Did you need to flee from Krolton, or is he...?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Irlok" + } + }, + { + "fileOverride": "beyondthegrave-irlok-12", + "lineInfo": { + "dialogue": "Truly? The beast is dead?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Irlok" + } + }, + { + "fileOverride": "beyondthegrave-irlok-13", + "lineInfo": { + "dialogue": "Gracious, I don't think I've ever been so relieved. Krolton was responsible for thousands of deaths long ago. You've prevented an oncoming massacre!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Irlok" + } + }, + { + "fileOverride": "beyondthegrave-irlok-14", + "lineInfo": { + "dialogue": "Bantisu Temple owes you a great deal. Here, then- a suitable reward.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Irlok" + } + }, + { + "fileOverride": "beyondthegrave-irlok-15", + "lineInfo": { + "dialogue": "A powerful Bantisu artifact, as reward for defeating a beast that menaced in antiquated times.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Irlok" + } + }, + { + "fileOverride": "beyondthegrave-irlok-16", + "lineInfo": { + "dialogue": "Safe travels, human. Whether it was luck or strength that had you prevail, I pray it will not fail you in the future.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Irlok" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-irlok-17", + "lineInfo": { + "dialogue": "We have a job that needs doing, but I'm afraid you're too weak. Come back when you are level 87.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Irlok" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-irlok-18", + "lineInfo": { + "dialogue": "You are truly an amazing warrior. Thank you for putting an end to Krolton.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Irlok" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "beyondthegrave-irlok-19", + "lineInfo": { + "dialogue": "I have written the coordinates of the cave Krolton hides in, in your quest book.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Irlok" + } + } + ] + } + } + }, + "Blazing Retribution": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "blazingretribution-piere-1", + "lineInfo": { + "dialogue": "Oh sweet baby bovine, my house, what am I going to do? Wait, who are you?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Piere" + } + }, + { + "fileOverride": "blazingretribution-piere-2", + "lineInfo": { + "dialogue": "Oh, a Human. Did the Llevigar authorities send you?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Piere" + } + }, + { + "fileOverride": "blazingretribution-piere-3", + "lineInfo": { + "dialogue": "Detective Jackson has already been here. Not that he's doing anything useful.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Piere" + } + }, + { + "fileOverride": "blazingretribution-piere-4", + "lineInfo": { + "dialogue": "An Orc managed to find some fire-imbued magical axe and burned down my house! Jackson didn't even call a firefighter!!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Piere" + } + }, + { + "fileOverride": "blazingretribution-piere-5", + "lineInfo": { + "dialogue": "I don't know what to do, but maybe if you find Detective Jackson, you can kick his sorry rear into gear...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Piere" + } + }, + { + "fileOverride": "blazingretribution-piere-6", + "lineInfo": { + "dialogue": "The Orcs are already savage brutes. If they really have their hands on magical weapons, we're all in trouble!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Piere" + } + }, + { + "fileOverride": "blazingretribution-piere-7", + "lineInfo": { + "dialogue": "I believe Detective Jackson is by his cart \"planning his next move.\" He's not far from here. Just continue past my farm!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Piere" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "blazingretribution-detectivejackson-1", + "lineInfo": { + "dialogue": "How can I go about this...? I can't get involved myself, and they won't let me near... Wait, a human?", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-2", + "lineInfo": { + "dialogue": "...what do you MEAN \"what am I doing?\" This is a delicate situation! I need to- wait...actually, you might just be the help I need.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-3", + "lineInfo": { + "dialogue": "I'll give you the lowdown- we believe the orcs stole magical weaponry from within Llevigar, particularly a flaming axe.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-4", + "lineInfo": { + "dialogue": "However, there's a loophole in the ceasefire we had enacted with the Orcs. Theft isn't considered an act of aggression...", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-5", + "lineInfo": { + "dialogue": "And that means my hands are tied. Humans, however, were not mentioned in the notes, so you'll need to retrieve it.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-6", + "lineInfo": { + "dialogue": "Our only saving grace is that it'll be impossible for them to replicate its power- Orcs are hilariously inept at magic.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-7", + "lineInfo": { + "dialogue": "But, to the primary problem- You've probably seen how many orc camps are around here. Searching will take a long while...", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-8", + "lineInfo": { + "dialogue": "My only leads are that the \"Sablestone\" and \"Loamsprout\" camps seem to be celebrating recently. Best to start there, yes?", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-9", + "lineInfo": { + "dialogue": "Just to review- You need to search those two camps for the Axe of Llevigar, and then return it to me if you find it.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-10", + "lineInfo": { + "dialogue": "Sablestone is to the north, and Loamsprout to the south. They will be guarded, so don't be afraid to knock some heads.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Detective Jackson" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "blazingretribution-detectivejackson-11", + "lineInfo": { + "dialogue": "I see no axe in your hands, so I should assume neither Sablestone or Loamsprout had it.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-12", + "lineInfo": { + "dialogue": "Wait, really? A stick was the most powerful weapon they had? And Loamsprout...threw their dinner at you...?", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-13", + "lineInfo": { + "dialogue": "I can't believe this! How are those... those THINGS outsmarting us?! Are they shuffling the axe between camps?", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-14", + "lineInfo": { + "dialogue": "There are over a dozen camps between the Orcs and Goblins that they could be swapping it between!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-15", + "lineInfo": { + "dialogue": "What if the GOBLINS get a hold of it?! They're the cleverest by half of all of them, so that could actually be a threat!", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-16", + "lineInfo": { + "dialogue": "Searching the camps one by one will be far too slow, gah!! How am I going to fix this?!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-17", + "lineInfo": { + "dialogue": "There's Earthpit, and Cliffhearth, Shineridge and Stonecave, Sunspark, Mudspring, Holehold, I-", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-greggr-1", + "lineInfo": { + "dialogue": "Fire! Stop!! I hold magic cutter! LISTEN TO POXPER!!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "???" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-18", + "lineInfo": { + "dialogue": "I- I can't believe it, that has to be the one! AFTER THAT ORC, NOW!!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Detective Jackson" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "blazingretribution-greggr-2", + "lineInfo": { + "dialogue": "GRRRH!! What 'Uthniiazek' mean?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "blazingretribution-greggr-3", + "lineInfo": { + "dialogue": "Uthniiazek! Uthniiazek!! WHY NO LISTEN TO POXPER?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Poxper" + }, + "settings": { + "falloff": 46, + "position": { + "x": -24101.0, + "y": 44.0, + "z": -13225.0 + } + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "blazingretribution-greggr-4", + "lineInfo": { + "dialogue": "Stupid Villager magic thing! Why fire no listen?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Poxper" + } + }, + { + "fileOverride": "blazingretribution-greggr-5", + "lineInfo": { + "dialogue": "Poxper say thing and make fire...what else axe say? 'Azektoluth?'", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Poxper" + } + }, + { + "fileOverride": "blazingretribution-greggr-6", + "lineInfo": { + "dialogue": "Hraahah! Poxper control fire! Fire- kill human with Poxper! Uthniiazek! Azektoluth!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Poxper" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "blazingretribution-detectivejackson-19", + "lineInfo": { + "dialogue": "That looks like the axe of Llevigar to me! Blue finish, hot to the touch- well done! What Orc boss had stolen it?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-20", + "lineInfo": { + "dialogue": "Poxper? That...hm. This could be bad. I've heard that name, and he's a fairly prolific Orc chief. You killed him, right?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-21", + "lineInfo": { + "dialogue": "Mmm... Hopefully that Veretel won't catch wind of it. Regardless, you've done a great service for Villager-kind!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Detective Jackson" + } + }, + { + "fileOverride": "blazingretribution-detectivejackson-22", + "lineInfo": { + "dialogue": "Here's your compensation for that. Thank you for the aid!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Detective Jackson" + } + } + ] + } + } + }, + "Bob's Lost Soul": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "bobslostsoul-tarod-1", + "lineInfo": { + "dialogue": "You're one of those soldier types, right? My name is Tarod, and I could really use your assistance here.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Tarod" + } + }, + { + "fileOverride": "bobslostsoul-tarod-2", + "lineInfo": { + "dialogue": "Years ago, I met a very powerful and legendary warrior by the name of Bob. Yes, that Bob.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Tarod" + } + }, + { + "fileOverride": "bobslostsoul-tarod-3", + "lineInfo": { + "dialogue": "It's safe to say he was a very, well, admirable man. Him and I slowly became close friends over the years.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Tarod" + } + }, + { + "fileOverride": "bobslostsoul-tarod-4", + "lineInfo": { + "dialogue": "That is, until one night, he vanished without a trace. The accepted story is that he was murdered by a pack of ravenous wolves...", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Tarod" + } + }, + { + "fileOverride": "bobslostsoul-tarod-5", + "lineInfo": { + "dialogue": "Now, I don't buy that story, but... look, the point here is that he's gone now, and I want to find out where the hell he ended up. That depressing zombie lumbering around Ragni clearly isn't him.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Tarod" + } + }, + { + "fileOverride": "bobslostsoul-tarod-6", + "lineInfo": { + "dialogue": "I believe he died in this area, and I have been looking for his body for quite a while now, with... less than success.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Tarod" + } + }, + { + "fileOverride": "bobslostsoul-tarod-7", + "lineInfo": { + "dialogue": "Rumors have spread that a tomb lies somewhere east of Nesaak, but I've never been able to find it. This is where I need you to help me out, yeah?", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Tarod" + } + }, + { + "fileOverride": "bobslostsoul-tarod-8", + "lineInfo": { + "dialogue": "Do you think you could help me out here? Search around that area, and report back to me if you see anything noteworthy.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Tarod" + } + }, + { + "fileOverride": "bobslostsoul-tarod-9", + "lineInfo": { + "dialogue": "I'd be eternally grateful if you could help me uncover my old friend's true story.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Tarod" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "bobslostsoul-tarod-10", + "lineInfo": { + "dialogue": "Welcome back. Did you find anything worthwhile?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Tarod" + } + }, + { + "fileOverride": "bobslostsoul-tarod-11", + "lineInfo": { + "dialogue": "Oh? Yeah, that definitely sounds like the tomb! Were you able to see what's inside?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Tarod" + } + }, + { + "fileOverride": "bobslostsoul-tarod-12", + "lineInfo": { + "dialogue": "No? There's... a magical barrier? Great... just GREAT...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Tarod" + } + }, + { + "fileOverride": "bobslostsoul-tarod-13", + "lineInfo": { + "dialogue": "I have a feeling whoever made that tomb didn't want anyone attempting to get to him, but... Forget it, we have no other options. This is the only way we can place Bob's soul to rest for good.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Tarod" + } + }, + { + "fileOverride": "bobslostsoul-tarod-14", + "lineInfo": { + "dialogue": "Listen, I have a guy who can help us out. His name is Wedyf, a sorcerer type. If anyone could get rid of that barrier, it would be him.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Tarod" + } + }, + { + "fileOverride": "bobslostsoul-tarod-15", + "lineInfo": { + "dialogue": "He lives in Bremminglar, a small town close to Almuj. Go meet him, I'll wait for your return.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Tarod" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "bobslostsoul-wedyf-1", + "lineInfo": { + "dialogue": "Welcome traveler. Are you looking for something?", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Wedyf" + } + }, + { + "fileOverride": "bobslostsoul-wedyf-2", + "lineInfo": { + "dialogue": "Ooh, it has been a long time since I've released an undead...", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Wedyf" + } + }, + { + "fileOverride": "bobslostsoul-wedyf-3", + "lineInfo": { + "dialogue": "The spirit of your dead friend must still be somewhere in this world. This is why we are unable to get close to his body. Soul magic works in mysterious ways.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Wedyf" + } + }, + { + "fileOverride": "bobslostsoul-wedyf-4", + "lineInfo": { + "dialogue": "Don't worry, I can do it. I've heard a little bit of Bob's story before. What a tragedy. His own infallible protection used against him...", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Wedyf" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "bobslostsoul-wedyf-5", + "lineInfo": { + "dialogue": "...Anyways, there's no need to lament on the past. Now, we need two items. The first is something from Bob himself. The other is the last thing that made his blood drop.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Wedyf" + } + }, + { + "fileOverride": "bobslostsoul-wedyf-6", + "lineInfo": { + "dialogue": "Out past the other side of Detlas, near Nesaak, there are some arches in the mountains. An old florist lives in a house close by. She has a rose that Bob had once cut himself on.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Wedyf" + } + }, + { + "fileOverride": "bobslostsoul-wedyf-7", + "lineInfo": { + "dialogue": "I will warn you, though; she was corrupted some time ago. It may not be that easy to take the rose, so do be prepared.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Wedyf" + } + }, + { + "fileOverride": "bobslostsoul-wedyf-8", + "lineInfo": { + "dialogue": "Secondly... something of Bob's. I've heard rumors of a visage of him wandering around Ragni, perhaps you can find something of use from it? Killing enemies in the Nesaak region may be worth your time, as well.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Wedyf" + } + }, + { + "fileOverride": "bobslostsoul-wedyf-9", + "lineInfo": { + "dialogue": "Bring me [1 Rose] and [1 Bob's Tear].", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Wedyf" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "bobslostsoul-wedyf-10", + "lineInfo": { + "dialogue": "Great, you got everything.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Wedyf" + } + }, + { + "fileOverride": "bobslostsoul-wedyf-11", + "lineInfo": { + "dialogue": "Although... I might have forgot to tell you about something else too...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Wedyf" + } + }, + { + "fileOverride": "bobslostsoul-wedyf-12", + "lineInfo": { + "dialogue": "We also need a part of the soul of your dead friend.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Wedyf" + } + }, + { + "fileOverride": "bobslostsoul-wedyf-13", + "lineInfo": { + "dialogue": "This is something I unfortunately cannot do myself. There is a blacksmith close to Ternaves who does this kind of stuff.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Wedyf" + } + }, + { + "fileOverride": "bobslostsoul-wedyf-14", + "lineInfo": { + "dialogue": "He can extract the soul from someone's weapon. Very useful in those situations. Go talk to him.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Wedyf" + } + }, + { + "fileOverride": "bobslostsoul-wedyf-15", + "lineInfo": { + "dialogue": "Bring me the soul, and I'll be able to remove the spell preventing you from entering the tomb.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Wedyf" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "bobslostsoul-theblacksmith-1", + "lineInfo": { + "dialogue": "What can I do for ya?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "The Blacksmith" + } + }, + { + "fileOverride": "bobslostsoul-theblacksmith-2", + "lineInfo": { + "dialogue": "Oh yes! I can extract the soul from weapons!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "The Blacksmith" + } + }, + { + "fileOverride": "bobslostsoul-theblacksmith-3", + "lineInfo": { + "dialogue": "Bring me the weapons of your friend, and I'll see if I can do something with it!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "The Blacksmith" + } + }, + { + "fileOverride": "bobslostsoul-theblacksmith-4", + "lineInfo": { + "dialogue": "Oh it's... those weapons. Well, if you know what you're doing...", + "line": { + "current": 4, + "max": 8 + }, + "npc": "The Blacksmith" + } + }, + { + "fileOverride": "bobslostsoul-theblacksmith-5", + "lineInfo": { + "dialogue": "[1 Depressing Stick], [1 Depressing Spear], [1 Depressing Bow] and [1 Depressing Shears] will do the trick.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "The Blacksmith" + } + }, + { + "fileOverride": "bobslostsoul-theblacksmith-6", + "lineInfo": { + "dialogue": "Be careful with the weapons, you will only get [ONE] of each. If you lose one, you will have to ask around if anyone has a spare.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "The Blacksmith" + } + }, + { + "fileOverride": "bobslostsoul-theblacksmith-7", + "lineInfo": { + "dialogue": "Maybe someone will be selling one on the Trade Market in Detlas, who knows.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "The Blacksmith" + } + }, + { + "fileOverride": "bobslostsoul-theblacksmith-8", + "lineInfo": { + "dialogue": "Anyway, my apprentice over there has traveled around a lot, they might know where you can find the items for yourself, but I warn you, they are a little bit quirky.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "The Blacksmith" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "bobslostsoul-apprentice-1", + "lineInfo": { + "dialogue": "Weapons of the depressed kind? Oh, of course, of course, I know of the set! Around Nesaak, I hear they are kept.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Apprentice" + } + }, + { + "fileOverride": "bobslostsoul-apprentice-2", + "lineInfo": { + "dialogue": "An army of Linx you must clear, in a cave you shall find this spear!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Apprentice" + } + }, + { + "fileOverride": "bobslostsoul-apprentice-3", + "lineInfo": { + "dialogue": "To a skilled archer you must go, best her in a lumberyard and you will have her bow!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Apprentice" + } + }, + { + "fileOverride": "bobslostsoul-apprentice-4", + "lineInfo": { + "dialogue": "On an altar, effervescence leers, complete the sacrifice and you will gain your shears...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Apprentice" + } + }, + { + "fileOverride": "bobslostsoul-apprentice-5", + "lineInfo": { + "dialogue": "In the forest, a house frozen in spikes thick, outsmart the contraption and be gifted a stick!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Apprentice" + } + }, + { + "fileOverride": "bobslostsoul-apprentice-6", + "lineInfo": { + "dialogue": "But beware, beware! Danger lies ahead, and will try to halt you in your stead!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Apprentice" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "bobslostsoul-theblacksmith-9", + "lineInfo": { + "dialogue": "... Hi again. I see you got the weapons.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "The Blacksmith" + } + }, + { + "fileOverride": "bobslostsoul-theblacksmith-10", + "lineInfo": { + "dialogue": "These weapons emanate so much sadness... I'm sure you heard about Bob's story...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "The Blacksmith" + } + }, + { + "fileOverride": "bobslostsoul-theblacksmith-11", + "lineInfo": { + "dialogue": "Here is the soul. It's a little bit crushed, but it can do the trick.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "The Blacksmith" + } + }, + { + "fileOverride": "bobslostsoul-theblacksmith-12", + "lineInfo": { + "dialogue": "Good luck on your quest. Bob was a great hero, anything to help him is good in my book.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "The Blacksmith" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "bobslostsoul-wedyf-16", + "lineInfo": { + "dialogue": "I'm glad to see you again.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Wedyf" + } + }, + { + "fileOverride": "bobslostsoul-wedyf-17", + "lineInfo": { + "dialogue": "I only need a part of the soul, you can keep the rest.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Wedyf" + } + }, + { + "fileOverride": "bobslostsoul-wedyf-18", + "lineInfo": { + "dialogue": "Give me a minute, I need to concentrate...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Wedyf" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "bobslostsoul-wedyf-19", + "lineInfo": { + "dialogue": "It is done. You should be able to enter the tomb now. Be careful.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Wedyf" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "bobslostsoul-tarod-16", + "lineInfo": { + "dialogue": "You're back... Has he... has he finally been put to rest?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Tarod" + } + }, + { + "fileOverride": "bobslostsoul-tarod-17", + "lineInfo": { + "dialogue": "It's... hard to hear, knowing that my old friend is really gone, this time, but... I'm happy he won't have to suffer on this war-torn world for another second.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Tarod" + } + }, + { + "fileOverride": "bobslostsoul-tarod-18", + "lineInfo": { + "dialogue": "...I want you to have something. This is his old battle chesplate; he gave it to me a few days before he vanished. I think if he were still here, he'd want you to have this. Please, take good care of it for me...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Tarod" + } + } + ] + } + } + }, + "Boss Altar": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "bossaltar-bottomlesspit-1", + "lineInfo": { + "dialogue": "There's... nothing here?" + } + }, + { + "fileOverride": "bossaltar-bottomlesspit-2", + "lineInfo": { + "dialogue": "There has to be something down here, you can feel it watching you..." + } + }, + { + "fileOverride": "bossaltar-bottomlesspit-3", + "lineInfo": { + "dialogue": "CAUGHT IT'S CAUGHT YOU IT'S CAUGHT YOU" + } + }, + { + "fileOverride": "bossaltar-bottomlesspit-4", + "lineInfo": { + "dialogue": "IT'S EVERYWHERE IT'S EVERYWHERE YOU LOOK" + } + }, + { + "fileOverride": "bossaltar-durumprotector-1", + "lineInfo": { + "dialogue": "You will not be allowed to defile this sanctum of nature!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Durum Protector" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "2": { + "dialogues": [ + { + "fileOverride": "bossaltar-haros-1", + "lineInfo": { + "dialogue": "Come on, we've nearly broken through to Saint's Row! Detonate it already!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Haros" + } + }, + { + "fileOverride": "bossaltar-haros-2", + "lineInfo": { + "dialogue": "Their east side is undefended. We will overrun the town! Charon will regret banishing us all!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Haros" + } + }, + { + "fileOverride": "bossaltar-haros-3", + "lineInfo": { + "dialogue": "WHAT! A human?! How did they find out about our plans?!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Haros" + } + }, + { + "fileOverride": "bossaltar-haros-4", + "lineInfo": { + "dialogue": "Soldiers! Destroy the interloper! We cannot let them keep us from our goal!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Haros" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "3": { + "dialogues": [ + { + "fileOverride": "bossaltar-rymekluke-1", + "lineInfo": { + "dialogue": "I hope you know yer trespassin' on private property. Either you get on out of here right now or draw.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Rymek Luke" + } + }, + { + "fileOverride": "bossaltar-rymekluke-2", + "lineInfo": { + "dialogue": "And if you draw... You ain't leaving this here canyon alive!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Rymek Luke" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "4": { + "dialogues": [ + { + "fileOverride": "bossaltar-thebeast-1", + "lineInfo": { + "dialogue": "Escape... so close... need power...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "The Beast" + } + }, + { + "fileOverride": "bossaltar-thebeast-2", + "lineInfo": { + "dialogue": "More power... you... TAKE YOURS!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "The Beast" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "5": { + "dialogues": [ + { + "fileOverride": "bossaltar-tribezombiechieftain-1", + "lineInfo": { + "dialogue": "Outsiders! Kill the outsiders!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Tribe Zombie Chieftain" + } + }, + { + "fileOverride": "bossaltar-tribezombies-1", + "lineInfo": { + "dialogue": "Kill the outsiders!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tribe Zombies" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "6": { + "dialogues": [ + { + "fileOverride": "bossaltar-legendtrainers-1", + "lineInfo": { + "dialogue": "Aha, someone is arriving to test their might!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Legend Trainers" + } + }, + { + "fileOverride": "bossaltar-grandmagus-1", + "lineInfo": { + "dialogue": "If you wish to take up your place among the legends, prove yourself! Defeat us!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Grand Magus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "7": { + "dialogues": [ + { + "fileOverride": "bossaltar-skien-1", + "lineInfo": { + "dialogue": "... I... Who... Where am... Who are...you?", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Skien" + } + }, + { + "fileOverride": "bossaltar-skien-2", + "lineInfo": { + "dialogue": "You are... You are... I can feel magic from you... Their magic...", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Skien" + } + }, + { + "fileOverride": "bossaltar-skien-3", + "lineInfo": { + "dialogue": "But you are human...", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Skien" + } + }, + { + "fileOverride": "bossaltar-skien-4", + "lineInfo": { + "dialogue": "Traitor...", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Skien" + } + }, + { + "fileOverride": "bossaltar-skien-5", + "lineInfo": { + "dialogue": "TRAITOR!!!", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Skien" + } + }, + { + "fileOverride": "bossaltar-skien-6", + "lineInfo": { + "dialogue": "TRAITOR NO NO NO WE HAVE LOST WE ARE FALLEN I HAVE FAILED", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Skien" + } + }, + { + "fileOverride": "bossaltar-skien-7", + "lineInfo": { + "dialogue": "TRAITOR WHY YOU VILLAGERS DAMNED MAGIC USERS NO NO NO I MUST KILL THE TRAITOR", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Skien" + } + }, + { + "fileOverride": "bossaltar-skien-8", + "lineInfo": { + "dialogue": "MUST KILL THE TRAITOR", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Skien" + } + }, + { + "fileOverride": "bossaltar-skien-9", + "lineInfo": { + "dialogue": "THE TRAITOR MUST DIE", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Skien" + } + }, + { + "fileOverride": "bossaltar-skien-10", + "lineInfo": { + "dialogue": "DIE DIE DIE DIE", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Skien" + } + }, + { + "fileOverride": "bossaltar-skien-11", + "lineInfo": { + "dialogue": "DIE DIE DIE DIE DIE DIE DIE DIE DIE DIE DIE DIE", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Skien" + }, + "settings": { + "followPlayer": true + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "bossaltar-miningmechtera4m-1", + "lineInfo": { + "dialogue": "REMOVE FOREIGN PRESENCE FROM MINING OPERATION.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Mining Mech TERA-4M: INTRUDER DETECTED. OBJECTIVE" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "9": { + "dialogues": [ + { + "fileOverride": "bossaltar-adamastor-1", + "lineInfo": { + "dialogue": "Why must you humans always try to intervene in matters that aren't your own?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Adamastor" + } + }, + { + "fileOverride": "bossaltar-adamastor-2", + "lineInfo": { + "dialogue": "Leave, now... Or we will bring your death. And we will ensure that there will be no one to bring you back, either.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Adamastor" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "10": { + "dialogues": [ + { + "fileOverride": "bossaltar-oluxplaguedoctor-1", + "lineInfo": { + "dialogue": "Hm? Aha, so the noises I heard were an uninvited guest rummaging about my laboratory...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Olux Plague Doctor" + } + }, + { + "fileOverride": "bossaltar-oluxplaguedoctor-2", + "lineInfo": { + "dialogue": "Well, I do suppose it would be rude to hide the fruits of my study from you. Perhaps you will even provide just what I need to complete my next experiment!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Olux Plague Doctor" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "11": { + "dialogues": [ + { + "fileOverride": "bossaltar-bladeofshade-1", + "lineInfo": { + "dialogue": "Aha...you'll be a very interesting quarry to catch, human...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Blade of Shade" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "12": { + "dialogues": [ + { + "fileOverride": "bossaltar-orangewybel-1", + "lineInfo": { + "dialogue": "Oh... Looks like you found me out. I had been expecting you not to find this place. Ah awell!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "????" + } + }, + { + "fileOverride": "bossaltar-orangewybel-2", + "lineInfo": { + "dialogue": "You know, I'll give you a chance to leave. Just turn around. We can just forget this ever happened.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "????" + } + }, + { + "fileOverride": "bossaltar-orangewybel-3", + "lineInfo": { + "dialogue": "If you come into my room, I won't hesitate to kill you. Are you really gonna throw away your life just to see me?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "????" + } + }, + { + "fileOverride": "bossaltar-orangewybel-4", + "lineInfo": { + "dialogue": "This is your last chance, I'm telling you. Turn right back around the way you came, or I can't be held responsible for what happens next.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "????" + } + } + ], + "settings": { + "followPlayer": true + } + } + } + }, + "Canyon Condor": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "canyoncondor-svin-1", + "lineInfo": { + "dialogue": "I am one of the Keepers in the great Temple of Legends. There we hoard secrets about the world.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Svin" + } + }, + { + "fileOverride": "canyoncondor-svin-2", + "lineInfo": { + "dialogue": "I am here to investigate an old tale of the canyon. Does that interest you? I'm sure it does!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Svin" + } + }, + { + "fileOverride": "canyoncondor-svin-3", + "lineInfo": { + "dialogue": "Legend has it that a ferocious beast lives among these cliffs. A dangerous bird that has survived for many years.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Svin" + } + }, + { + "fileOverride": "canyoncondor-svin-4", + "lineInfo": { + "dialogue": "I would love to seek the beast out, but it seems the natives here are too busy thieving each other to inform me of it.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Svin" + } + }, + { + "fileOverride": "canyoncondor-svin-5", + "lineInfo": { + "dialogue": "I have heard of an old prospector nearby who has ventured throughout this mesa. He may have some information.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Svin" + } + }, + { + "fileOverride": "canyoncondor-svin-6", + "lineInfo": { + "dialogue": "His name is Jankan and he lives east from Rymek. Could you perhaps seek him out and ask him about this foul beast?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Svin" + } + }, + { + "fileOverride": "canyoncondor-svin-7", + "lineInfo": { + "dialogue": "If you help me, I'll let you use the elevators spread in the canyon. Well...", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Svin" + } + }, + { + "fileOverride": "canyoncondor-svin-8", + "lineInfo": { + "dialogue": "A strange hermit decided to take control of them, but I'm sure we can reason with him.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Svin" + } + }, + { + "fileOverride": "canyoncondor-svin-9", + "lineInfo": { + "dialogue": "I hope you are able to find the beast, and if you do, could you bring me back [1 Beast Egg] as evidence?", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Svin" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "canyoncondor-jankan-1", + "lineInfo": { + "dialogue": "Hello there, youngster! Ye must be the stranger folks 'been talkin' 'bout.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Jankan" + } + }, + { + "fileOverride": "canyoncondor-jankan-2", + "lineInfo": { + "dialogue": "If yer lookin fer gold, I can promise ye that there ain' any for you in this here mineshaft!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Jankan" + } + }, + { + "fileOverride": "canyoncondor-jankan-3", + "lineInfo": { + "dialogue": "Oh.. Yer lookin fer a winged wilder beast? Are ye out of yer mind?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Jankan" + } + }, + { + "fileOverride": "canyoncondor-jankan-4", + "lineInfo": { + "dialogue": "The devil of a bird is complete chaos! It can move mountains with a single screech! Men twice yer size 'ave weeped from the sight of it!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Jankan" + } + }, + { + "fileOverride": "canyoncondor-jankan-5", + "lineInfo": { + "dialogue": "As it turns out, I did me back in trying to transport me earnin's from that there cave, left them right at the back did' I.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Jankan" + } + }, + { + "fileOverride": "canyoncondor-jankan-6", + "lineInfo": { + "dialogue": "Go fetch me my [5 Gold Chunks] from the end of the shaft and I'll tell ye where ye need to go next.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Jankan" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "canyoncondor-jankan-7", + "lineInfo": { + "dialogue": "Finally! It took ye long enough, hand it over! Oh right.. yer want'n somethin'.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Jankan" + } + }, + { + "fileOverride": "canyoncondor-jankan-8", + "lineInfo": { + "dialogue": "I ain' got any intention of help'n ye with yer demise, but I can send ye along to a young fellow who might help.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Jankan" + } + }, + { + "fileOverride": "canyoncondor-jankan-9", + "lineInfo": { + "dialogue": "There's this Hermit feller ye wanna talk to, he is a right nutter, that one. Feeds the bird'n all.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Jankan" + } + }, + { + "fileOverride": "canyoncondor-jankan-10", + "lineInfo": { + "dialogue": "I think ye can find him up the mountain and across the canyon abyss, he ain' a friendly fella, I can tell yer that much.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Jankan" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "canyoncondor-hermit-1", + "lineInfo": { + "dialogue": "What do you think you're doing here, kid? Think you can waltz in my humble abode and get across my bridge?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Hermit" + } + }, + { + "fileOverride": "canyoncondor-hermit-2", + "lineInfo": { + "dialogue": "Oh, you want to know about the bird of the mountain? Hah, a little weed like you wouldn't stand a chance against it.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Hermit" + } + }, + { + "fileOverride": "canyoncondor-hermit-3", + "lineInfo": { + "dialogue": "It doesn't take kindly to strangers you know. I once saw it turn a group of poachers to ash!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Hermit" + } + }, + { + "fileOverride": "canyoncondor-hermit-4", + "lineInfo": { + "dialogue": "If you want to go through here, you'll need to pay. Oh, I don't want your money, why would I need money, I have everything!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Hermit" + } + }, + { + "fileOverride": "canyoncondor-hermit-5", + "lineInfo": { + "dialogue": "If you want access to these plateaus then you will have to find me a rare flower for my little cave here.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Hermit" + } + }, + { + "fileOverride": "canyoncondor-hermit-6", + "lineInfo": { + "dialogue": "It is found on top of one of the stacks in the mesa, it shouldn't be too hard to find.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Hermit" + } + }, + { + "fileOverride": "canyoncondor-hermit-7", + "lineInfo": { + "dialogue": "Bring me [1 Rare Rose] and I shall let you pass on to the creature of the mesa.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Hermit" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "canyoncondor-hermit-8", + "lineInfo": { + "dialogue": "A ha! This will do perfectly. My chickling will love it! I suppose you can cross the bridge now.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Hermit" + } + }, + { + "fileOverride": "canyoncondor-hermit-9", + "lineInfo": { + "dialogue": "The beast dwells on top of one of these plateaus. With a little searching, you should be able to find it.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Hermit" + } + }, + { + "fileOverride": "canyoncondor-hermit-10", + "lineInfo": { + "dialogue": "I'll let you use my elevators too. After all, it's not like you will last long...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Hermit" + } + }, + { + "fileOverride": "canyoncondor-hermit-11", + "lineInfo": { + "dialogue": "Only one traveler I have heard of could stand against the beast. I believe he took an egg from it for a pet, hah!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Hermit" + } + }, + { + "fileOverride": "canyoncondor-hermit-12", + "lineInfo": { + "dialogue": "He is long gone now, just like you will be in a few moments. It was nice not knowing you, kid.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Hermit" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "canyoncondor-hermit-13", + "lineInfo": { + "dialogue": "What's taken you so long, kid? I just want [1 Rare Rose]!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Hermit" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "canyoncondor-hermit-14", + "lineInfo": { + "dialogue": "What are you here for, eh kid? Get out. Get!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Hermit" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "canyoncondor-hermit-15", + "lineInfo": { + "dialogue": "Think you can waltz in my humble abode and get across my bridge? Get out!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Hermit" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "canyoncondor-svin-10", + "lineInfo": { + "dialogue": "Traveler! You have returned! Tell me, what have you learned?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Svin" + } + }, + { + "fileOverride": "canyoncondor-svin-11", + "lineInfo": { + "dialogue": "You found it?! This is wonderful news! You collected an egg from it's nest as well? You are very brave indeed!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Svin" + } + }, + { + "fileOverride": "canyoncondor-svin-12", + "lineInfo": { + "dialogue": "So the legend of the Cockatrice is true! You've seen it and battled it with your own courage!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Svin" + } + }, + { + "fileOverride": "canyoncondor-svin-13", + "lineInfo": { + "dialogue": "If only you could enter the Temple of Legends, brave soul! But it would seem our paths are to part now.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Svin" + } + }, + { + "fileOverride": "canyoncondor-svin-14", + "lineInfo": { + "dialogue": "Do not worry, I shall keep the egg safe. One day your legend shall be as greatly told!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Svin" + } + } + ] + } + } + }, + "Canyon of the Lost": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "cotl-canyonminer-1", + "lineInfo": { + "dialogue": "What in the gods' names happened out here!?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Canyon Miner" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "cotl-canyonminer-2", + "lineInfo": { + "dialogue": "No! My crane!!!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Canyon Miner" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "cotl-canyonminer-3", + "lineInfo": { + "dialogue": "Damn! Another one of these cursed earthquakes!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Canyon Miner" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "cotl-canyonminer-4", + "lineInfo": { + "dialogue": "That colossus... If this crack it made grows... I'll have no choice but to move.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Canyon Miner" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "cotl-canyonminer-5", + "lineInfo": { + "dialogue": "The thing truly threatens our livelihoods in the canyon, if only someone could stop it...", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Canyon Miner" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "cotl-canyonminer-6", + "lineInfo": { + "dialogue": "Scram! I don't need my crane breaking again!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canyon Miner" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "cotl-hobgoblin-1", + "lineInfo": { + "dialogue": "What brings you here? Could it be you seek refuge from the elephelk below?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Hobgoblin" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "cotl-hobgoblin-2", + "lineInfo": { + "dialogue": "Whatever it be, stay away from my treasure room, giant.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Hobgoblin" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "cotl-dogunpriest-1", + "lineInfo": { + "dialogue": "The Colossus is in a rampage... I must stop it...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dogun Priest" + }, + "settings": { + "falloff": 200 + } + } + ] + } + } + }, + "Clearing the Camps": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "clearingthecamps-captainkymer-1", + "lineInfo": { + "dialogue": "Aha, another Ragni soldier, eh? Well, a warm welcome to you.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Captain Kymer" + } + }, + { + "fileOverride": "clearingthecamps-captainkymer-2", + "lineInfo": { + "dialogue": "Did you hear about the requests from the Villagers we've gotten? They say these “Orcs” and \"Goblins\" are threatening their towns and cities.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Captain Kymer" + } + }, + { + "fileOverride": "clearingthecamps-captainkymer-3", + "lineInfo": { + "dialogue": "Primitive, brutal things, apparently little better than the zombies we're used to, at least according to the Llevigar military.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Captain Kymer" + } + }, + { + "fileOverride": "clearingthecamps-captainkymer-4", + "lineInfo": { + "dialogue": "So, we figure if might makes right with them, then defeating their leaders should scare them into submission.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Captain Kymer" + } + }, + { + "fileOverride": "clearingthecamps-captainkymer-5", + "lineInfo": { + "dialogue": "Our scouts have identified three “chief” orcs in the area- Elisu, Ceifko, and Veltu. Though, strangely Veltu is always surrounded by goblins...", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Captain Kymer" + } + }, + { + "fileOverride": "clearingthecamps-captainkymer-6", + "lineInfo": { + "dialogue": "Well whatever the case, we're needed to defend Llevigar here. Can you handle the chiefs? They seem to hide in the camps with green flags- search the plains, return once they're dealt with!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Captain Kymer" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "clearingthecamps-captainkymer-7", + "lineInfo": { + "dialogue": "Ah, the soldier from earlier! You're back, I see. Any luck defeating those- ...yeesh. Are those their heads?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Captain Kymer" + } + }, + { + "fileOverride": "clearingthecamps-captainkymer-8", + "lineInfo": { + "dialogue": "That's...harsher than I intended, but it works... Not like the Villagers care if they're dead or alive, as long as they're dealt with. I have your share of the reward here.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Captain Kymer" + } + }, + { + "fileOverride": "clearingthecamps-captainkymer-9", + "lineInfo": { + "dialogue": "This kind of surgical strike should help prevent an all-out war with the Orcs. Not sure we'd want a full-scale war to deal with in each province, hah!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Captain Kymer" + } + }, + { + "fileOverride": "clearingthecamps-captainkymer-10", + "lineInfo": { + "dialogue": "You saw that the creatures in Gavel aren't akin to Wynnic fare while you were out, yes? They're a bit, ah...livelier than usual. Better get used to it.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Captain Kymer" + } + }, + { + "fileOverride": "clearingthecamps-captainkymer-11", + "lineInfo": { + "dialogue": "The next major settlement is Olux, in the swamp up north, but I hear the swamp ogres are a lot tougher than the plains' fare. I'd stick around here and train up, first.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Captain Kymer" + } + } + ] + } + } + }, + "Cluck Cluck": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "cluckcluck-nohno-1", + "lineInfo": { + "dialogue": "Hey, you aren't a chicken! Wait, you're a human! You can help me! Maybe you are the guy who helped my brother Yahya, but who knows, you humans all look the same to me.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Nohno" + } + }, + { + "fileOverride": "cluckcluck-nohno-2", + "lineInfo": { + "dialogue": "I really love my chickens, but there is one that I just cannot control...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Nohno" + } + }, + { + "fileOverride": "cluckcluck-nohno-3", + "lineInfo": { + "dialogue": "His name is Cluckles, he was given to me by a man named Bob before he went to war, but when Bob never came back, Cluckles got angry...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Nohno" + } + }, + { + "fileOverride": "cluckcluck-nohno-4", + "lineInfo": { + "dialogue": "He's really dangerous to keep on my lovely island, so I keep him in my basement...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Nohno" + } + }, + { + "fileOverride": "cluckcluck-nohno-5", + "lineInfo": { + "dialogue": "I want to take care of him, but my wife says it's too dangerous. Where's my wife you say? Oh, I think she's around here eating some grain.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Nohno" + } + }, + { + "fileOverride": "cluckcluck-nohno-6", + "lineInfo": { + "dialogue": "Anyway, I need you to go down there and... take care of him for me. I would really appreciate it.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Nohno" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "cluckcluck-nohno-7", + "lineInfo": { + "dialogue": "What is this?! His feather? What did you do to Cluckles?! I wanted you to take care of him, not kill him!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Nohno" + } + }, + { + "fileOverride": "cluckcluck-nohno-8", + "lineInfo": { + "dialogue": "You monster! Leave this place now, and keep that feather to remind you of your hideous crime!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Nohno" + } + } + ] + } + } + }, + "Cook Assistant": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "cookassistant-thecook-1", + "lineInfo": { + "dialogue": "I can't believe what is happening to me!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "The Cook" + } + }, + { + "fileOverride": "cookassistant-thecook-2", + "lineInfo": { + "dialogue": "The King ordered me to bake cakes for all those new recruits!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "The Cook" + } + }, + { + "fileOverride": "cookassistant-thecook-3", + "lineInfo": { + "dialogue": "Unfortunately I don't have the ingredients to make them, and nobody sells those items in the fort!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "The Cook" + } + }, + { + "fileOverride": "cookassistant-thecook-4", + "lineInfo": { + "dialogue": "You think you could get me [2 Eggs], [1 Bucket of Milk] and [3 Wheat Grains] really quickly?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "The Cook" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "cookassistant-thecook-5", + "lineInfo": { + "dialogue": "Great! You got all the ingredients!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "The Cook" + } + }, + { + "fileOverride": "cookassistant-thecook-6", + "lineInfo": { + "dialogue": "I can't thank you enough! Here, take these emeralds and armour for all your trouble.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "The Cook" + } + }, + { + "fileOverride": "cookassistant-thecook-7", + "lineInfo": { + "dialogue": "You should explore around to become stronger. I hear there might be work to do in Nivla Woods.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "The Cook" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "cookassistant-thecook-8", + "lineInfo": { + "dialogue": "I urgently need help! But you aren't experienced enough to help me, yet.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "The Cook" + } + }, + { + "fileOverride": "cookassistant-thecook-9", + "lineInfo": { + "dialogue": "Come back as soon as you reach level 3.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "The Cook" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "cookassistant-thecook-10", + "lineInfo": { + "dialogue": "I still need [2 Eggs], [1 Bucket of Milk] and [3 Wheat Grains].", + "line": { + "current": 1, + "max": 4 + }, + "npc": "The Cook" + } + }, + { + "fileOverride": "cookassistant-thecook-11", + "lineInfo": { + "dialogue": "You can get eggs at the ranch north of Ragni, by killing some chickens.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "The Cook" + } + }, + { + "fileOverride": "cookassistant-thecook-12", + "lineInfo": { + "dialogue": "You can get milk by buying it from a merchant there as well.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "The Cook" + } + }, + { + "fileOverride": "cookassistant-thecook-13", + "lineInfo": { + "dialogue": "You can get wheat grains by farming some from the fields close to Ragni's north entrance.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "The Cook" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "cookassistant-thecook-14", + "lineInfo": { + "dialogue": "You should practice your cooking, maybe one day you'll become a master chef like myself!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "The Cook" + } + } + ] + } + } + }, + "Corkus": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "corkus-relosmechanic-1", + "lineInfo": { + "dialogue": "Hello, adventurer! Would you mind helping me out here? You see, I recently stumbled upon this old workshop, and it's in pretty bad shape.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Relos Mechanic" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "corkus-relosmechanic-2", + "lineInfo": { + "dialogue": "I haven't a clue who built it, nor what all of these machines do. Some of these devices look like they were made before I was born...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Relos Mechanic" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "corkus-relosmechanic-3", + "lineInfo": { + "dialogue": "I believe this main machine in the center may give us some answers, but it seems to be drained of all of its electromagical energy.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Relos Mechanic" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "corkus-relosmechanic-4", + "lineInfo": { + "dialogue": "If we can find a way to restore power to the system, maybe we'll learn a bit more about this place.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Relos Mechanic" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "corkus-phoenixprince-1", + "lineInfo": { + "dialogue": "It was 350 years ago when I last saw a human. And I will never forget.", + "line": { + "current": 1, + "max": 12 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "corkus-phoenixprince-2", + "lineInfo": { + "dialogue": "Your kind had already dominated Wynn and Fruma. But you decided to come to this island. Our island.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "corkus-phoenixprince-3", + "lineInfo": { + "dialogue": "I will never understand why some Avos decided to let you live here. Those who welcomed you stayed on the surface.", + "line": { + "current": 3, + "max": 12 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "corkus-phoenixprince-4", + "lineInfo": { + "dialogue": "But I, Prince of the Avos, led the rest of my people down here, where no human could disturb us. And so, we lived here... for a while.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "corkus-phoenixprince-5", + "lineInfo": { + "dialogue": "But avians like us are not suited to living underground. We became ill and lost our feathers. And eventually, my people died out.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "corkus-phoenixprince-6", + "lineInfo": { + "dialogue": "Their souls still wander and cry throughout the ruins of my city.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "corkus-phoenixprince-7", + "lineInfo": { + "dialogue": "However, I have remained here, still alive, hearing the plight and torment of the lost souls. For I am cursed to never die, only to be reborn.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "corkus-phoenixprince-8", + "lineInfo": { + "dialogue": "Because of this endless cycle of reincarnation, I am only known as the Phoenix Prince.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Phoenix Prince" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "corkus-phoenixprince-9", + "lineInfo": { + "dialogue": "After the death of all my people, your kind sealed the city, they likely didn’t want anyone to know about what happened down here.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Phoenix Prince" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "corkus-phoenixprince-10", + "lineInfo": { + "dialogue": "But unbeknownst to them, I was still here. Trapped forever, without even the escape of death. And it is all the fault of the humans who drove us here.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Phoenix Prince" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "corkus-phoenixprince-11", + "lineInfo": { + "dialogue": "You're an invader, just like the rest of your people. They do not deserve to live on this island... on our island.", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Phoenix Prince" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "corkus-phoenixprince-12", + "lineInfo": { + "dialogue": "Prepare for our revenge. Prepare to DIE!", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Phoenix Prince" + }, + "settings": { + "falloff": 200 + } + } + ] + } + } + }, + "Corrupted Betrayal": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "corruptedbetrayal-tromsmage-1", + "lineInfo": { + "dialogue": "Stay back! I'm casting a fireball at this barrier!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Troms Mage" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "corruptedbetrayal-tromsmage-2", + "lineInfo": { + "dialogue": "Gah, no use. Again.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Troms Mage" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsmage-3", + "lineInfo": { + "dialogue": "Ah, I didn’t expect to see a Ragni soldier out here. Perhaps you can assist me?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Troms Mage" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsmage-4", + "lineInfo": { + "dialogue": "This is the second cave in the jungle to start spewing out aggressive slimes.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Troms Mage" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsmage-5", + "lineInfo": { + "dialogue": "Being so close to Troms, it’s become a major problem.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Troms Mage" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsmage-6", + "lineInfo": { + "dialogue": "We tried to attack it, but this barrier is shaman magic, horrendously powerful too. The only way it could be this strong is if many lives were taken to make it...", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Troms Mage" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsmage-7", + "lineInfo": { + "dialogue": "So, we're stuck. The only clue we found is this riddle...", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Troms Mage" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsmage-8", + "lineInfo": { + "dialogue": "Near a corrupted bridge, a ruin past its prime...lives a cursed sheep, with the color of lime...lead it down the trail, heading to the slime...sacrifice its soul, in the blood and grime.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Troms Mage" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsmage-9", + "lineInfo": { + "dialogue": "We haven’t been able to work it out. Head out to the Great Bridge entrance and see if you can find anything.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Troms Mage" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "corruptedbetrayal-tromsguard-1", + "lineInfo": { + "dialogue": "By order of the city of Troms, I am here to keep other citizens from entering this house.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Troms Guard" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsguard-2", + "lineInfo": { + "dialogue": "From past experiences, everyone who has entered this house has vanished from existence...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Troms Guard" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsguard-3", + "lineInfo": { + "dialogue": "I would advise not going inside unless you know what you are doing.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Troms Guard" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "corruptedbetrayal-slykaar-1", + "lineInfo": { + "dialogue": "Well, I guess you must know who I am.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "5": { + "dialogues": [ + { + "fileOverride": "corruptedbetrayal-slykaar-2", + "lineInfo": { + "dialogue": "I experimented my shamanism for many years underground to create the perfect mix of monster. ", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Slykaar" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "6": { + "dialogues": [ + { + "fileOverride": "corruptedbetrayal-slykaar-3", + "lineInfo": { + "dialogue": "No one in the Wynn province is willing to make the sacrifices I am to gain power.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Slykaar" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "7": { + "dialogues": [ + { + "fileOverride": "corruptedbetrayal-slykaar-4", + "lineInfo": { + "dialogue": "They were willing to give me a few peasants in 831, when the hordes crossed the bridge.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Slykaar" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "8": { + "dialogues": [ + { + "fileOverride": "corruptedbetrayal-slykaar-5", + "lineInfo": { + "dialogue": "Looks like we have a Bob aspirer. Pale imitation. ", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Slykaar" + } + }, + { + "fileOverride": "corruptedbetrayal-slykaar-6", + "lineInfo": { + "dialogue": "Take the scroll. Break the barrier and let your little army men walk into my lair.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Slykaar" + } + }, + { + "fileOverride": "corruptedbetrayal-slykaar-7", + "lineInfo": { + "dialogue": "I am ready; it makes little difference. Soon, Troms will be in ruins. And I shall have my revenge.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Slykaar" + } + }, + { + "fileOverride": "corruptedbetrayal-slykaar-8", + "lineInfo": { + "dialogue": "So, go have fun in Troms while you can. It’s not like you have much of a life to live, anyways.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Slykaar" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "9": { + "dialogues": [ + { + "fileOverride": "corruptedbetrayal-tromsmage-10", + "lineInfo": { + "dialogue": "Any luck with the riddle?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Troms Mage" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsmage-11", + "lineInfo": { + "dialogue": "You found something?", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Troms Mage" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsmage-12", + "lineInfo": { + "dialogue": "Hmm...oh my. This is dark stuff. Very dark.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Troms Mage" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsmage-13", + "lineInfo": { + "dialogue": "It doesn't give me pleasure to use this...but it will break the barrier.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Troms Mage" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsmage-14", + "lineInfo": { + "dialogue": "Stand back, I'm not exactly sure what this does.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Troms Mage" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsmage-15", + "lineInfo": { + "dialogue": "The spell...it destroyed the barrier almost instantly...", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Troms Mage" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsmage-16", + "lineInfo": { + "dialogue": "Okay men! The barrier is down, so charge against Slykaar before he marches against Troms!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Troms Mage" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsmage-17", + "lineInfo": { + "dialogue": "I don't have much to repay you, but it's at least useful for a soldier like you.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Troms Mage" + } + }, + { + "fileOverride": "corruptedbetrayal-tromsmage-18", + "lineInfo": { + "dialogue": "If you have nothing else to do, you should get yourself prepared and aid the army against Slykaar.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Troms Mage" + } + } + ] + } + } + }, + "Corrupted Decrepit Sewers": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "cds-witherehead-1", + "lineInfo": { + "dialogue": "Yko dare kker these sk:;DJkkkAJEkkkkThkksad:ekghakkkkkreid:", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "cds-witherehead-2", + "lineInfo": { + "dialogue": "... How foolkh of you... to come back here.:5tykkkfter what happenei:", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "cds-witherehead-3", + "lineInfo": { + "dialogue": "You... you've come HERE before. You shouldn't be alive....", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Corrupted Witherhead" + } + } + ] + } + }, + "settings": { + "followPlayer": true + } + }, + "Corrupted Ice Barrows": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "cib-ghostlyvoice-1", + "lineInfo": { + "dialogue": "I told you it would fail.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ghostly Voice" + } + }, + { + "fileOverride": "cib-ghostlyvoice-2", + "lineInfo": { + "dialogue": "Your noble deeds have allowed the darkness to take over my mind.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ghostly Voice" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "cib-ghostlyvoice-3", + "lineInfo": { + "dialogue": "It all seems clear to me now.. The struggle for life... It’s futile. There need only be peaceful darkness.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ghostly Voice" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "cib-ghostlyvoice-4", + "lineInfo": { + "dialogue": "I will not let you stop me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ghostly Voice" + } + } + ] + } + }, + "settings": { + "followPlayer": true + } + }, + "Corrupted Infested Pit": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "cip-corruptedarakadicus-1", + "lineInfo": { + "dialogue": "This is a familiar face... hehe...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "cip-corruptedarakadicus-3", + "lineInfo": { + "dialogue": "Don't mind our other guest back there. He had such a bitter taste. However, my babies think you look delicious... hehehe...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Corrupted Arakadicus" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "cip-corruptedarakadicus-4", + "lineInfo": { + "dialogue": "Ah, the main course has arrived. You look so good, I think I'll have a taste of you myself!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Corrupted Arakadicus" + } + } + ] + } + }, + "settings": { + "followPlayer": true + } + }, + "Corrupted Lost Sanctuary": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "cls-corruptedgaroth-1", + "lineInfo": { + "dialogue": "Great timing, human. Just in time to witness sorrow and destruction. History will burn before your eyes.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "cls-corruptedgaroth-2", + "lineInfo": { + "dialogue": "Welcome, qwerty. My name is Garoth, but you already know that, of course. Who doesn't?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Corrupted Garoth" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "cls-corruptedgaroth-3", + "lineInfo": { + "dialogue": "Now, die!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Corrupted Garoth" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "cls-corruptedgaroth-4", + "lineInfo": { + "dialogue": "Even now, you continue to terrorise my den. I truly cannft wait to meet with you face to dhry again.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Corrupted Garoth" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "cls-corruptedgaroth-5", + "lineInfo": { + "dialogue": "if it’s the last thing I do. Admit it, you’ve lost.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Corrupted Garoth: No matter what you try, the fhwisbk4 stand no chance of surviving. I will track down every last one of fue" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "cls-corruptedgaroth-6", + "lineInfo": { + "dialogue": "Did you not learn to not put your hand in a fire for the second time? Fool, prepare yourself for Gaia's most powerful force - fire!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garoth" + } + } + ] + } + }, + "settings": { + "followPlayer": true + } + }, + "Corrupted Sand-Swept Tomb": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "csst-hashr-1", + "lineInfo": { + "dialogue": "The fool returns... The cage shall claim you too.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "csst-hashr-2", + "lineInfo": { + "dialogue": "The glorious sands run red... I cannot understand it. I cannot understand you.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + }, + { + "fileOverride": "csst-hashr-3", + "lineInfo": { + "dialogue": "Yet... New power runs forth at my fingertips. I may yet save this wretched land...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "csst-hashr-4", + "lineInfo": { + "dialogue": "I will rule the red sands with this power under my control!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Hashr" + } + } + ] + } + }, + "settings": { + "followPlayer": true + } + }, + "Corrupted Undergrowth Ruins": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "cur-slykaar-1", + "lineInfo": { + "dialogue": "More life...familiar life... It’s you again. Isn’t it?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "cur-slykaar-2", + "lineInfo": { + "dialogue": "Even in death... Wasn’t I right? Wasn’t I ALWAYS right? The corruption is here...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Slykaar" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "cur-slykaar-3", + "lineInfo": { + "dialogue": "No saviours, no heroes. You being alive is nothing short of a miracle.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Slykaar" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "cur-slykaar-4", + "lineInfo": { + "dialogue": "Your life will sustain my sanity. You will be...just another meal for me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Slykaar" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "cur-slykaar-5", + "lineInfo": { + "dialogue": "AAAGH! Idiot! Fool! Damnable THING! Exposed! Exposed! DIE!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Slykaar" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "cur-slykaar-6", + "lineInfo": { + "dialogue": "I don’t want to die! I WON’T die! Go away! CEASE TO EXIST!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Slykaar" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "cur-slykaar-7", + "lineInfo": { + "dialogue": "I... You... No...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Slykaar" + } + } + ] + } + }, + "settings": { + "followPlayer": true + } + }, + "Cowfusion": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "cowfusion-ranol-1", + "lineInfo": { + "dialogue": "Yep, that's all of 'em. All my cows accounted for, not one missing. Huh? Watchu looking at, city dweller?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ranol" + } + }, + { + "fileOverride": "cowfusion-ranol-2", + "lineInfo": { + "dialogue": "If I needed any help I'd ask for some. Not my first day workin' a barn. Now shoo!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ranol" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "cowfusion-ranol-3", + "lineInfo": { + "dialogue": "A human, eh? All the way out 'ere at the end of the canyon? Yer a tough one.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ranol" + } + }, + { + "fileOverride": "cowfusion-ranol-4", + "lineInfo": { + "dialogue": "Perhaps I can give yer some work, if yer are lookin' for it? Someone's been coming and nabbing my cows!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ranol" + } + }, + { + "fileOverride": "cowfusion-ranol-5", + "lineInfo": { + "dialogue": "'an I know exactly who it is - that blasted cow scientist that lives in the lab just north of 'ere.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ranol" + } + }, + { + "fileOverride": "cowfusion-ranol-6", + "lineInfo": { + "dialogue": "Anyway, yer up for the job? Can't let 'im just keep stealing them forever!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ranol" + } + }, + { + "fileOverride": "cowfusion-ranol-7", + "lineInfo": { + "dialogue": "His cavern laboratory is just north from 'ere. Not too hard to find. Once yer there, get him to return my cows!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ranol" + } + }, + { + "fileOverride": "cowfusion-ranol-8", + "lineInfo": { + "dialogue": "There's one problem though. The door to the place is always shut, so you'll 'ave to find another way in.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ranol" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "cowfusion-ranol-9", + "lineInfo": { + "dialogue": "Have yer gone to check out the big laboratory to the North yet? I need my cows back!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ranol" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "cowfusion-ranol-10", + "lineInfo": { + "dialogue": "What's this 'ere? Ibele, that you? My girl, I knew you'd come back to me!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ranol" + } + }, + { + "fileOverride": "cowfusion-ranol-11", + "lineInfo": { + "dialogue": "And to think I was going to hire some city-dwellin' 'uman to get you for me? Ha!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ranol" + } + }, + { + "fileOverride": "cowfusion-ranol-12", + "lineInfo": { + "dialogue": "Right then, back into the pen you go. Hup!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ranol" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "cowfusion-ranol-13", + "lineInfo": { + "dialogue": "What are you doin' out here, ya fool? Back in you go!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ranol" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "cowfusion-ranol-14", + "lineInfo": { + "dialogue": "Well well well. So, any excuses for why I haven't heard of yer since I sent yer off to find my cows?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ranol" + } + }, + { + "fileOverride": "cowfusion-ranol-15", + "lineInfo": { + "dialogue": "Yer were turned into a cow? That's the best yer can come up with?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ranol" + } + }, + { + "fileOverride": "cowfusion-ranol-16", + "lineInfo": { + "dialogue": "I knew yer weren't up to the job, city dweller. If yer didn't want to help yer coulda just said so!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ranol" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "cowfusion-suspicouscow-1", + "lineInfo": { + "dialogue": "Moo.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Suspicious Cow" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "cowfusion-suspicouscow-2", + "lineInfo": { + "dialogue": "Password?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Suspicious Cow" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "cowfusion-suspicouscow-3", + "lineInfo": { + "dialogue": "You're right, there is no password. Just seeing if you can understand me.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Suspicious Cow" + } + }, + { + "fileOverride": "cowfusion-suspicouscow-4", + "lineInfo": { + "dialogue": "You're one of us then, the oppressed? Want to break free from these farmers? Well aren't you in luck.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Suspicious Cow" + } + }, + { + "fileOverride": "cowfusion-suspicouscow-5", + "lineInfo": { + "dialogue": "I can help you with that. WE can help you with that.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Suspicious Cow" + } + }, + { + "fileOverride": "cowfusion-suspicouscow-6", + "lineInfo": { + "dialogue": "Our people have a secret hideout not far from here. It's located right under that barn just behind me.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Suspicious Cow" + } + }, + { + "fileOverride": "cowfusion-suspicouscow-7", + "lineInfo": { + "dialogue": "It may seem close, but unless you've been practicing your athletics, you won't be able to get over these fences.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Suspicious Cow" + } + }, + { + "fileOverride": "cowfusion-suspicouscow-8", + "lineInfo": { + "dialogue": "See that haybale in the middle of our pen? I bet you could push and pull it into such a position that'd allow you to climb over the fence with your cow physique.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Suspicious Cow" + } + }, + { + "fileOverride": "cowfusion-suspicouscow-9", + "lineInfo": { + "dialogue": "The second pen might have a similar problem, but I'm sure you can figure that our yourself.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Suspicious Cow" + } + }, + { + "fileOverride": "cowfusion-suspicouscow-10", + "lineInfo": { + "dialogue": "Good luck!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Suspicious Cow" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "cowfusion-suspicouscow-11", + "lineInfo": { + "dialogue": "What? What does that even mean? There isn't actually a password! Or did no one tell me that there was? Ah, nevermind, at least you can understand me.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Suspicious Cow" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "cowfusion-suspicouscow-12", + "lineInfo": { + "dialogue": "Moo.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Suspicious Cow" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "cowfusion-suspicouscow-13", + "lineInfo": { + "dialogue": "If you want to escape, you'll have to push and pull the haybale around so that you can climb over the fences.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Suspicious Cow" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "cowfusion-receptionist-1", + "lineInfo": { + "dialogue": "Oh, a new recruit? We weren't expecting anyone at this time. How'd you find your way in?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Receptionist" + } + }, + { + "fileOverride": "cowfusion-receptionist-2", + "lineInfo": { + "dialogue": "Wait, you're different. Something's off about you. Like you've never been in a cow's body before.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Receptionist" + } + }, + { + "fileOverride": "cowfusion-receptionist-3", + "lineInfo": { + "dialogue": "Oh. Oh, this is not good. Uhm, you should talk to the boss. He'll probably know what to do with you.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Receptionist" + } + }, + { + "fileOverride": "cowfusion-receptionist-4", + "lineInfo": { + "dialogue": "You'll find him in the big office at the very end of this facility. Just stick to the path and don't be nosy, okay?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Receptionist" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "cowfusion-receptionist-5", + "lineInfo": { + "dialogue": "You need to speak to the boss, he's in his office at the end of the facility.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Receptionist" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "cowfusion-receptionist-6", + "lineInfo": { + "dialogue": "Oh, hello! You must be the one cow from earlier, right?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Receptionist" + } + }, + { + "fileOverride": "cowfusion-receptionist-7", + "lineInfo": { + "dialogue": "Well, Drale says you're welcome to visit whenever you'd like, so... Welcome!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Receptionist" + } + }, + { + "fileOverride": "cowfusion-receptionist-8", + "lineInfo": { + "dialogue": "We have many amenities available in this facility, so feel free to make yourself comfortable!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Receptionist" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "cowfusion-worker1-1", + "lineInfo": { + "dialogue": "So you're telling me we've got to move this thing all the way to the factory?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker2-1", + "lineInfo": { + "dialogue": "Yep.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker1-2", + "lineInfo": { + "dialogue": "Just the two of us?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker2-2", + "lineInfo": { + "dialogue": "Yep.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker1-3", + "lineInfo": { + "dialogue": "With our bare hands? Couldn't even give us a wagon?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker2-3", + "lineInfo": { + "dialogue": "Hey, it's for the cause. Remember what you're working towards.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker1-4", + "lineInfo": { + "dialogue": "Yeah, yeah, I know. But what's it gonna matter if my back's worse than my grandpa's at the end of this?", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Worker" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "cowfusion-worker1-5", + "lineInfo": { + "dialogue": "So. We still haven't moved this thing at all, huh?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker2-4", + "lineInfo": { + "dialogue": "Nope.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker1-6", + "lineInfo": { + "dialogue": "Guess that makes sense. Everyone's been busy talking about... you know.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker2-5", + "lineInfo": { + "dialogue": "Yep.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker1-7", + "lineInfo": { + "dialogue": "Oh, hey, there they are! Hey, you! You're the one that helped Drale free a bunch of our friends from the ranch, right?", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker2-6", + "lineInfo": { + "dialogue": "Looks like them.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker1-8", + "lineInfo": { + "dialogue": "Hey, we never got to thank you for what you did! A lot of us wouldn't be here today if you hadn't. Kyle here definitely wouldn't, heh.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker2-7", + "lineInfo": { + "dialogue": "Thanks.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker1-9", + "lineInfo": { + "dialogue": "Well, I hope we get to see you around some more! We've got to get back to... uh, moving this thing. But, hey, maybe after we can hang out?", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Worker" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "cowfusion-worker3-1", + "lineInfo": { + "dialogue": "I'm here for a crate of this wheat stuff. How has the recent batch turned out?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-botanist-1", + "lineInfo": { + "dialogue": "Same as usual. Growing this stuff underground isn't easy. You can grab a crate on the far left side.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Botanist" + } + }, + { + "fileOverride": "cowfusion-worker3-2", + "lineInfo": { + "dialogue": "Right, thank you! Y'know, they say this stuff back home is a lot high quality than the stuff the farmers fed us.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-botanist-2", + "lineInfo": { + "dialogue": "Well it won't be too long until we find out.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Botanist" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "cowfusion-worker3-3", + "lineInfo": { + "dialogue": "Hey... Don't, uh, tell anyone I asked... But you wouldn't happen to- happen to have some... barley?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-botanist-3", + "lineInfo": { + "dialogue": "Woah, there. Calm yourself, friend. You know the rules about that kind of stuff.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Botanist" + } + }, + { + "fileOverride": "cowfusion-botanist-4", + "lineInfo": { + "dialogue": "...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Botanist" + } + }, + { + "fileOverride": "cowfusion-botanist-5", + "lineInfo": { + "dialogue": "Yeah, okay, here. Here's a package of... stuff. Don't tell anyone you got it from me.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Botanist" + } + }, + { + "fileOverride": "cowfusion-worker3-4", + "lineInfo": { + "dialogue": "Y-yep, of course! Thank you kindly. I'll make sure... nobody kn-", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker3-5", + "lineInfo": { + "dialogue": "Oh no. H-hello there, Drale's friend! It's- good to. See you! You didn't happen to, uh-", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-botanist-6", + "lineInfo": { + "dialogue": "Best get moving quick before the word spreads, friend.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Botanist" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "cowfusion-worker4-1", + "lineInfo": { + "dialogue": "Looking for the boss, huh? Well, he's just up ahead in his office, behind the big door. Pretty hard to miss.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-2", + "lineInfo": { + "dialogue": "Hey, hope you don't mind me asking, but, uh... Why are you still walking around looking like that?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-3", + "lineInfo": { + "dialogue": "Eh, I don't judge. You go right ahead, I've got some work to attend to.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Worker" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "cowfusion-worker4-4", + "lineInfo": { + "dialogue": "Looking for the boss again, huh? Well, just as always, he's up ahead in his office. Hard to miss, as usual.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-5", + "lineInfo": { + "dialogue": "...So the cow thing wasn't your choice, huh? Could've fooled me. Almost did, really.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-6", + "lineInfo": { + "dialogue": "...Well, this is awkward. Uh. You don't need to talk to me, y'know. Just go on ahead.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Worker" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "cowfusion-worker4-7", + "lineInfo": { + "dialogue": "... where did you come from?!", + "line": { + "current": 1, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-8", + "lineInfo": { + "dialogue": "You fell into the incinerator? And defeated a mutant cow monster?", + "line": { + "current": 2, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-9", + "lineInfo": { + "dialogue": "Yeah that checks out. So what happened to get you thrown down here?", + "line": { + "current": 3, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-10", + "lineInfo": { + "dialogue": "Oh, angered him by pretending to be a cow after already speaking? Yeah, I feel ya. When the boss is in a mood, anything you say could get you thrown down here.", + "line": { + "current": 4, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-11", + "lineInfo": { + "dialogue": "Here, why don't you follow me? I'll take you back to him, you can straighten things out, and you'll be back as a human in no time!", + "line": { + "current": 5, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-12", + "lineInfo": { + "dialogue": "So... yeah. Drale isn't the best at... conflict resolution. Catch him on a bad day, and he might just throw you in the Pit.", + "line": { + "current": 6, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-13", + "lineInfo": { + "dialogue": "I got stationed down here for a week because I interrupted him during his daily yoga session.", + "line": { + "current": 7, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-14", + "lineInfo": { + "dialogue": "Gerald, over there? He used to be in accounting. Until he forgot to carry the two one day, and... Well, here he is now.", + "line": { + "current": 8, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-15", + "lineInfo": { + "dialogue": "Drale's alright on a good day, but we've been running out of good days lately! He keeps pulling late hours on this... wholly unnecessary project!", + "line": { + "current": 9, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-16", + "lineInfo": { + "dialogue": "He insists we have to keep trying to find our original ship, instead of just building a new one with all the materials we have! It's ridiculous!", + "line": { + "current": 10, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-17", + "lineInfo": { + "dialogue": "What ship? Oh, of course, you're not a Woc. See, our race isn't actually from- you know, maybe that's a story for another time.", + "line": { + "current": 11, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-18", + "lineInfo": { + "dialogue": "For now let's get you back up to the main lab and hopefully Drale will be in a bit of a better mood!", + "line": { + "current": 12, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-19", + "lineInfo": { + "dialogue": "Well, we're here!", + "line": { + "current": 13, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-20", + "lineInfo": { + "dialogue": "You head on up that pipe and with a bit of luck it'll plonk you out right in front of Drale.", + "line": { + "current": 14, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-21", + "lineInfo": { + "dialogue": "If you try explaining the situation again I'm sure he'll be understanding.", + "line": { + "current": 15, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-22", + "lineInfo": { + "dialogue": "He usually is after he's had some time to cool off.", + "line": { + "current": 16, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-23", + "lineInfo": { + "dialogue": "Go on, off you go! It was lovely to meet you.", + "line": { + "current": 17, + "max": 17 + }, + "npc": "Worker" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "cowfusion-worker4-24", + "lineInfo": { + "dialogue": "Pretended to be a cow when you're actually a human? Must have caught him on a rough day to get thrown down for that. Usually he'd just let a cow go.", + "line": { + "current": 4, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-25", + "lineInfo": { + "dialogue": "Well, here, why don't you follow me? I'll take you back to him, you can straighten things out, and I'm sure you'll be back as a human in no time!", + "line": { + "current": 5, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-26", + "lineInfo": { + "dialogue": "So... yeah. That's Drale. Catch him on a bad day, and he might just throw you in the Pit.", + "line": { + "current": 6, + "max": 17 + }, + "npc": "Worker" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "cowfusion-worker4-27", + "lineInfo": { + "dialogue": "For now let's get you back up to the main lab and hopefully Drale will be in a bit of a better mood! Maybe mention the human thing this time, alright?", + "line": { + "current": 12, + "max": 17 + }, + "npc": "Worker" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "cowfusion-worker4-28", + "lineInfo": { + "dialogue": "...Oh! You're the one Drale told us to look out for. Accidentally dropped into the Pit, huh?", + "line": { + "current": 3, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-29", + "lineInfo": { + "dialogue": "The boss said to apologize to ya for the inconvenience. We've all been workin' late hours recently... Some of us more than others.", + "line": { + "current": 4, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-30", + "lineInfo": { + "dialogue": "Anyhow, follow me. I'll take you back to him, and you can talk this out! You'll be back as a human in no time.", + "line": { + "current": 5, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-31", + "lineInfo": { + "dialogue": "So... yeah. That's Drale for you. Absentminded as ever. He said something about labeling his levers from now on, so I reckon that's a positive.", + "line": { + "current": 6, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-32", + "lineInfo": { + "dialogue": "...You're a friend of the boss, right? Would you be able to put in a good word for us? Gerald and I have been down here for a while, and we'd like to get back to our normal positions.", + "line": { + "current": 7, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-33", + "lineInfo": { + "dialogue": "Drale's alright on a good day, but we've been running out of good days lately! He keeps pulling late hours on this... wholly unnecessary project!", + "line": { + "current": 8, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-34", + "lineInfo": { + "dialogue": "He insists we have to keep trying to find our original ship, instead of just building a new one with all the materials we have! It's ridiculous!", + "line": { + "current": 9, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-35", + "lineInfo": { + "dialogue": "Maybe you'll be able to get through to him, being his friend and all. We've all been stressed, and it's really just...", + "line": { + "current": 10, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-36", + "lineInfo": { + "dialogue": "Huh? What ship? Oh, right. You're not a Woc. So, you see, our race isn't actually from- you know, maybe that's a story for another time.", + "line": { + "current": 11, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-37", + "lineInfo": { + "dialogue": "For now let's get you back up to the main lab. Drale will be glad to see you in one piece! He sounded worried for your safety.", + "line": { + "current": 12, + "max": 17 + }, + "npc": "Worker" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "cowfusion-worker4-38", + "lineInfo": { + "dialogue": "Remember what I told you! Try to put in a good word for us, yeah?", + "line": { + "current": 15, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-39", + "lineInfo": { + "dialogue": "If not, well... At least I tried. Let the record show I tried.", + "line": { + "current": 16, + "max": 17 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "cowfusion-worker4-40", + "lineInfo": { + "dialogue": "...Alright! Go on, off you go! It was lovely to meet you.", + "line": { + "current": 17, + "max": 17 + }, + "npc": "Worker" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "cowfusion-worker4-41", + "lineInfo": { + "dialogue": "What're you waiting for? Get on through that pipe and talk to Drale!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Worker" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-1", + "lineInfo": { + "dialogue": "Whoop, alright! Don't want you going anywhere, buddy! Uh... What are you doing here, exactly...?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Drale" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-2", + "lineInfo": { + "dialogue": "You- what? Oh, gosh, how is that even possible? I don't think I had anything that could...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-3", + "lineInfo": { + "dialogue": "Oh! You must've been snooping through my laboratory. That's... okay, we can talk about that later. Did you step into my machine?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-4", + "lineInfo": { + "dialogue": "It's not even meant to turn humans into cows! I just made it to turn the exiles back into Wocs! So how does a human become a cow...?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-5", + "lineInfo": { + "dialogue": "Right, right, sorry. Here, uh- I'll try and get this cage down. Darn controls... Why did I design these so poorly?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-6", + "lineInfo": { + "dialogue": "...So while I try to figure out which lever to push, tell me about yourself! Anything interesting going on in your life?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Drale" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-7", + "lineInfo": { + "dialogue": "You... You are? You are! Oh, wow, it's great to see you again! It's been so long since our escapades back in Wynn!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-8", + "lineInfo": { + "dialogue": "This is great, actually! I- I can show you around the place! Introduce you to some of the folks we freed together! Oh, what fantastic timing this has been.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-9", + "lineInfo": { + "dialogue": "I just need to figure out which switch to pull... I think it's this one! Probably. I really need to label these things. Alright, here goes!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Drale" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-10", + "lineInfo": { + "dialogue": "Wait, no, that's the wrong-...!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Drale" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-11", + "lineInfo": { + "dialogue": "Okay. So you are just a regular cow. Not a Woc. Uh... Who let you in, little pal? I'm going to need to have a word about closing the doors...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-12", + "lineInfo": { + "dialogue": "Well, this is... awkward. So, then... cow. What's it like being... a cow?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Drale" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-13", + "lineInfo": { + "dialogue": "Right. Okay. Figure I'd best let you go free.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-14", + "lineInfo": { + "dialogue": "...Unless. Unless. Nobody's... nobody's looking. I could just send you to The Pit... Nobody would know.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-15", + "lineInfo": { + "dialogue": "It's... easier this way. It's fine. Maybe you'll even- maybe you'll even make your way out. Good luck, little buddy.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Drale" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-16", + "lineInfo": { + "dialogue": "I, uh... Hah. Very funny. Tell me you're a human, then pretend to be a cow.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-17", + "lineInfo": { + "dialogue": "That's... fine. You know, I'm under quite a lot of stress right now. Working hard, day in and day out. I don't really need your attitude right now!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-18", + "lineInfo": { + "dialogue": "You know what? I don't need this attitude. I'm- I'm going to send you to The Pit. Where- where all my other mistakes lie.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-19", + "lineInfo": { + "dialogue": "...You have a weapon. You can probably manage! You don't need anything from me! Here, see how you like it down there!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Drale" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-20", + "lineInfo": { + "dialogue": "...This doesn't even mean anything! What am I supposed to do with-", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-21", + "lineInfo": { + "dialogue": "Oh! It's- It's you! Didn't I just...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-22", + "lineInfo": { + "dialogue": "...Um. This is... really awkward, haha. I'm... sorry?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-23", + "lineInfo": { + "dialogue": "You're... the one who pretended to be a cow, right? I, uh... In my defense, I was very stressed. So I dropped you into the Pit.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-24", + "lineInfo": { + "dialogue": "...Anyway! What's- What's going on in your life? Anything interesting?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Drale" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-25", + "lineInfo": { + "dialogue": "Uh... Hm. Maybe- Maybe being a cow is affecting your brain somehow... That can't be good.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-26", + "lineInfo": { + "dialogue": "We should get you back to human as quickly as possible. Come on, follow me.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Drale" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-27", + "lineInfo": { + "dialogue": "So... Have you done anything interesting recently? Besides- getting turned into a cow. Obviously.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-28", + "lineInfo": { + "dialogue": "You're, uh... Probably wondering what this place is. Just a big city under some random guy's farm, right?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-29", + "lineInfo": { + "dialogue": "It's... heh. We've been trying to gather as many of our people as we can. We exiles have to stick together, after all.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-30", + "lineInfo": { + "dialogue": "It's a long story. I'm not sure how much of it I really want to tell you, heh. Especially considering... Yeah.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-31", + "lineInfo": { + "dialogue": "But. This place is a safe haven for us exiles. A place for us to live until we achieve our goals.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-32", + "lineInfo": { + "dialogue": "And- hey! You've seen our secrets now! May as well let it be a safe haven for you as well, right? Heh.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Drale" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-33", + "lineInfo": { + "dialogue": "Oh- the elevator. Here we are. Uh... Just head on in, little buddy? It'll take us up.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Drale" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-34", + "lineInfo": { + "dialogue": "...You're worrying me. Come on, let's get going. Into the elevator, let's get you back to normal.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Drale" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-35", + "lineInfo": { + "dialogue": "Come on, get in the elevator!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Drale" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-36", + "lineInfo": { + "dialogue": "So... here we are. The lab!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-37", + "lineInfo": { + "dialogue": "Just... follow me, for now. The machine is this way.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-38", + "lineInfo": { + "dialogue": "There it is! If you step into the machine, real quick, it should... it should work!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Drale" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-39", + "lineInfo": { + "dialogue": "Come on! Just... pop yourself back in the machine!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Drale" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-40", + "lineInfo": { + "dialogue": "Look at you! As good as new!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Drale" + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-41", + "lineInfo": { + "dialogue": "There you are! Back to norm...-", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-42", + "lineInfo": { + "dialogue": "soldier?! What are you- that was you the whole time?! Why didn't you tell me!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-43", + "lineInfo": { + "dialogue": "Oh gosh, this has been... An awful reunion. I can't believe I dropped you into the Pit...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-44", + "lineInfo": { + "dialogue": "I'm so sorry for- for all of that. You should have told me! Oh...", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-45", + "lineInfo": { + "dialogue": "Okay, uh... Here, take this. As- as compensation for- for all of that.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-46", + "lineInfo": { + "dialogue": "I... I need to get back to work. But- uh, if you ever want, feel free to visit sometime? You'll be able to use the entrance at Ranol's farm.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-47", + "lineInfo": { + "dialogue": "Maybe I can tell you more about what I've been up to! Heh...", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Drale" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-48", + "lineInfo": { + "dialogue": "I am talking to a cow. Again. Why is this where my life has taken me.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-49", + "lineInfo": { + "dialogue": "So! What's... going on, little buddy? Any- any souvenirs? From the Pit...?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Drale" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-50", + "lineInfo": { + "dialogue": "Yep. Just a cow...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-51", + "lineInfo": { + "dialogue": "Well, alright. Let's just- get you in my machine, I guess. It worked for the exiles, so maybe it'll work for you..?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-52", + "lineInfo": { + "dialogue": "...Don't look at me like that. Come on, let's get going.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Drale" + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-53", + "lineInfo": { + "dialogue": "Oh, you- Oh. Right! Okay. I don't- I don't quite understand why you would pretend to be a cow. But alright!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-54", + "lineInfo": { + "dialogue": "So, uh... Human turned into a cow. Okay. How did you manage to get yourself stuck as a cow, anyway? I didn't think we had anything that could do that...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Drale" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-55", + "lineInfo": { + "dialogue": "My machine. It's- It's not even supposed to do that! I designed it to turn exiles back into Wocs, how would it have...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-56", + "lineInfo": { + "dialogue": "Great. Of course it'd have that issue, and just when I thought I...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-57", + "lineInfo": { + "dialogue": "Right. Right. Alright. We can work with this! Let's just take you back to that machine, put you in it, and see if it turns you back to normal!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-58", + "lineInfo": { + "dialogue": "It'll work. Probably. I mean, I haven't ever tried it, so I can't really say for sure... Oh, yep, you're still here. Let's get moving.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Drale" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-59", + "lineInfo": { + "dialogue": "So... Hey there, little... cow?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-60", + "lineInfo": { + "dialogue": "Uh. Do you- do you understand what I'm saying?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-61", + "lineInfo": { + "dialogue": "...This is stupid. I'm talking to a cow. Of course you can't...", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Drale" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-62", + "lineInfo": { + "dialogue": "Well, I guess I could- talk at you. For a bit. If that's, heh, fine with you!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-63", + "lineInfo": { + "dialogue": "It's been tough, recently. Working towards a goal that I know is important, but still feels... out of reach.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-64", + "lineInfo": { + "dialogue": "And it doesn't seem like anybody else can see that! That this is important! They look at me like I'm going crazy, and-", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-65", + "lineInfo": { + "dialogue": "I'm not. I know I'm not. We need to find the ship. If we don't, who knows what...", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Drale" + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-66", + "lineInfo": { + "dialogue": "Anyway! Here's the elevator! Just step on in, and we can head on up to the laboratory.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Drale" + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-67", + "lineInfo": { + "dialogue": "Hrrgh- You're- you're not a cow?! Why were you... I just said all that, and you could...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-68", + "lineInfo": { + "dialogue": "D-don't worry about the door. It's... It's nothing. Maintenance. That- that's what it is.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-69", + "lineInfo": { + "dialogue": "Er... Come on, into the elevator! You want to get back to normal, right? Besides, you'd need a key to get in there, and I don't know where you'd find one of those, haha!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Drale" + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-70", + "lineInfo": { + "dialogue": "...Moo. Yep. I agree. Come on, let's get going. Into the elevator.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Drale" + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-71", + "lineInfo": { + "dialogue": "Hm... Oh, hi! Welcome back to my office!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Drale" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-72", + "lineInfo": { + "dialogue": "Oh, this is- Oh! You're alive! I, ah- heh. Sorry about... all that. I really, really need to label these levers properly...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-73", + "lineInfo": { + "dialogue": "Right! Right. You've seen... all that down there, then. I just hope you won't think less of me for it.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-74", + "lineInfo": { + "dialogue": "I can... I can tell you more about it later. I hope it wasn't too bad? Down there? You seem to have gotten out in one piece, so...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Drale" + } + } + ] + }, + "56": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-75", + "lineInfo": { + "dialogue": "...Oh. Right. Gosh, how long has it been since I-...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-76", + "lineInfo": { + "dialogue": "Okay. Alright, yes, I'll give them better positions. And I'll- I don't know. Apologize. Give them a bonus.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-77", + "lineInfo": { + "dialogue": "It's been... hard, recently. We've been working to get back home, and I guess I just... Put too much of myself into that. It's fine! Don't- Don't worry about me.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Drale" + } + } + ] + }, + "57": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-78", + "lineInfo": { + "dialogue": "Oh. Right, your body! I can fix that! We just need to get back to the machine, and... Poof. You'll be back to normal!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-79", + "lineInfo": { + "dialogue": "...I hope. Hey, being a cow isn't so bad! If- If it doesn't work, we can make you a home here...?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-80", + "lineInfo": { + "dialogue": "Uh... It'll work. I'm sure it will work. It's always- always worked in the past! Heh...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-81", + "lineInfo": { + "dialogue": "Anyway! Let's get going!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Drale" + } + } + ] + }, + "58": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-82", + "lineInfo": { + "dialogue": "So... How have you been? It's been a while since our adventure at Katoa Ranch, hasn't it?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-83", + "lineInfo": { + "dialogue": "Well, you've been turned into a cow... Obviously... But besides that!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-84", + "lineInfo": { + "dialogue": "Me? Well... heh. I've been doing pretty well, all things considered. We've been gathering exiles from all over the province! Set up a city to hold us all while we work towards...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-85", + "lineInfo": { + "dialogue": "It's a long story. I can't tell you everything- not yet. But... All of us here, we don't belong here. We just want to go home.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-86", + "lineInfo": { + "dialogue": "And- and maybe if we can find our ship again, we'll be able to prove that we're not irredeemable. That whatever we went through- that it won't define us.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-87", + "lineInfo": { + "dialogue": "...Heh. Don't- don't worry about it too much. For now, this place is enough of a safe haven for us. It'll have to be enough until we succeed.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-88", + "lineInfo": { + "dialogue": "We're so close. I can feel it. Just... Just a little while left to go.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Drale" + } + } + ] + }, + "59": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-89", + "lineInfo": { + "dialogue": "Anyway, uh... Here's the elevator! Just step on in, and it'll take us back to the laboratory.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Drale" + } + } + ] + }, + "60": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-90", + "lineInfo": { + "dialogue": "The- oh. Uh... It's nothing. Nothing to worry about.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-91", + "lineInfo": { + "dialogue": "It just leads to... maintenance. Yep! Just- just maintenance. Nothing else.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-92", + "lineInfo": { + "dialogue": "Into the elevator now, come on! You need a key to get in anyway, and I definitely don't have one laying around!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Drale" + } + } + ] + }, + "61": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-93", + "lineInfo": { + "dialogue": "...You're worrying me, friend. Come on, let's get going. Into the elevator, let's get you back to normal.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Drale" + } + } + ] + }, + "62": { + "dialogues": [ + { + "fileOverride": "cowfusion-drale-94", + "lineInfo": { + "dialogue": "Heh... Well, there you are! Good as new! I hope...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-95", + "lineInfo": { + "dialogue": "And- to, uh, compensate you for... you know... Here! One liquid emerald. I feel terrible for how our reunion ended up going... I hope you won't hold it against me?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-96", + "lineInfo": { + "dialogue": "Uh... I really should get back to work. But- hey! Feel free to visit whenever you want! You'll be able to use the entrance at Ranol's farm.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "cowfusion-drale-97", + "lineInfo": { + "dialogue": "Maybe I can tell you more about what I've been up to! That'd be nice.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Drale" + } + } + ] + } + } + }, + "Craftmas Chaos": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "craftmaschaos-tom-1", + "lineInfo": { + "dialogue": "Finally, you have arrived! I have been waiting for you.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Tom" + } + }, + { + "fileOverride": "craftmaschaos-tom-2", + "lineInfo": { + "dialogue": "It's so good to see you again! Wait, we haven't met yet, of course!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Tom" + } + }, + { + "fileOverride": "craftmaschaos-tom-3", + "lineInfo": { + "dialogue": "Sorry, where are my manners? My name is Tom, I have been living here in Selchar for 30 years.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Tom" + } + }, + { + "fileOverride": "craftmaschaos-tom-4", + "lineInfo": { + "dialogue": "I can't really explain why or how I know, but you are destined to help us, so I implore you to hear my tale. Santa is a real man who delivers presents all over the three provinces. However, he hasn't been seen in Selchar ever since it was founded.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Tom" + } + }, + { + "fileOverride": "craftmaschaos-tom-5", + "lineInfo": { + "dialogue": "There's a reason for it too, it's not because the children were naughty or anything like that.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Tom" + } + }, + { + "fileOverride": "craftmaschaos-tom-6", + "lineInfo": { + "dialogue": "This is a lot to ask, but will you investigate this crisis? People of Selchar will be very thankful.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Tom" + } + }, + { + "fileOverride": "craftmaschaos-tom-7", + "lineInfo": { + "dialogue": "You can start by searching for Santa, I believe he relocated to the top of an isolated icy island village after an incident the other year.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Tom" + } + }, + { + "fileOverride": "craftmaschaos-tom-8", + "lineInfo": { + "dialogue": "I am not sure where, but some travelling merchants had mentioned about an island with candycanes east from here.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Tom" + } + }, + { + "fileOverride": "craftmaschaos-tom-9", + "lineInfo": { + "dialogue": "Good luck! The people of Selchar will be counting on you, I- I'm sure we will see each other soon. Or rather, you'll be seeing me at any rate.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Tom" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "craftmaschaos-santa-1", + "lineInfo": { + "dialogue": "Ho ho ho! Merry Craftmas! Well not exactly, but its only a couple of days left!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-2", + "lineInfo": { + "dialogue": "So what can I help you with, young traveller? You have to wait until Craftmas for your presents, ho ho ho!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-3", + "lineInfo": { + "dialogue": "Ho? Selchar? Oh yes indeed, Selchar, that poor little island. I wonder if those people there are alright.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-4", + "lineInfo": { + "dialogue": "You see, I was never able to enter that city because of the corrupted magic surrounding the island.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-5", + "lineInfo": { + "dialogue": "My reindeer are very sensitive to evil auras, they will not fly anywhere nearby anything that seems... dark, or twisted.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-6", + "lineInfo": { + "dialogue": "Hey, I have an idea! Why don't you use my portal to go to the past and investigate for me? I feel terrible for an entire city missing 30 years worth of presents.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-7", + "lineInfo": { + "dialogue": "I wish I could accompany you, but its only a couple of days left to Craftmas and I still have a lot of presents to manage, ho ho!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-8", + "lineInfo": { + "dialogue": "Don't worry! The portal might be a chimney, but I have been doing this before you were even born! Ho ho ho!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-9", + "lineInfo": { + "dialogue": "Ho ho ho! That's the craftmas spirit I want to see! Simply walk into the fire and off you go! Good luck and be careful in the past, changing things can be very dangerous!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Santa" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "craftmaschaos-tommy-1", + "lineInfo": { + "dialogue": "Wendy, where are you? Heheheheh! Oh, hi! You seem new to this place.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Tommy" + } + }, + { + "fileOverride": "craftmaschaos-tommy-2", + "lineInfo": { + "dialogue": "The name is Tommy and I'm ten! I am always excited to meet new people that come to town! Someday this town will be very lively and fun!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Tommy" + } + }, + { + "fileOverride": "craftmaschaos-tommy-3", + "lineInfo": { + "dialogue": "So what are you doing here? Want to join me play hide and seek with Wendy?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Tommy" + } + }, + { + "fileOverride": "craftmaschaos-tommy-4", + "lineInfo": { + "dialogue": "Magical barrier? I don't think anybody here will know what you are looking for. Nobody here really knows magic sadly.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Tommy" + } + }, + { + "fileOverride": "craftmaschaos-tommy-5", + "lineInfo": { + "dialogue": "I did see a group of shady guys who arrived here last week.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Tommy" + } + }, + { + "fileOverride": "craftmaschaos-tommy-6", + "lineInfo": { + "dialogue": "They always wear these black scary robes and talk about crystals and stuff. I think they might be bad people.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Tommy" + } + }, + { + "fileOverride": "craftmaschaos-tommy-7", + "lineInfo": { + "dialogue": "I followed them once before, they seem to hide in the abandoned cave underneath this island my daddy calls \"the heart of Selchar\".", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Tommy" + } + }, + { + "fileOverride": "craftmaschaos-tommy-8", + "lineInfo": { + "dialogue": "They could be the ones you are looking for. The cave's entrance is just below the stairs nearby. Bye for now, I gotta find Wendy!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Tommy" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "craftmaschaos-summoner-1", + "lineInfo": { + "dialogue": "So a little rat finally finds out about our secret, huh. Doesn't matter, with this relicstone, I am going to kill you right here and right now!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Summoner" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "craftmaschaos-summoner-2", + "lineInfo": { + "dialogue": "Uaaaggh! How dare you do this to me!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Summoner" + } + }, + { + "fileOverride": "craftmaschaos-summoner-3", + "lineInfo": { + "dialogue": "I can't believe my relic stone can be shattered by some random peasant like you!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Summoner" + } + }, + { + "fileOverride": "craftmaschaos-summoner-4", + "lineInfo": { + "dialogue": "Ugh! Stop it! Alright, you win. We only had the one crystal anyway.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Summoner" + } + }, + { + "fileOverride": "craftmaschaos-summoner-5", + "lineInfo": { + "dialogue": "What? You want to escape this cave? Use the exit portal behind me then, heh heh.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Summoner" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "craftmaschaos-oldtom-1", + "lineInfo": { + "dialogue": "Oh no, please! Don't kill me! Wait a minute, it's you! I can't believe it, it's you!", + "line": { + "current": 1, + "max": 13 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-2", + "lineInfo": { + "dialogue": "Don't you remember me? It's me, Tom! We met when I was 10! That was 60 years ago! Why, you haven't aged a day!", + "line": { + "current": 2, + "max": 13 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-3", + "lineInfo": { + "dialogue": "You might have already noticed, but Selchar is basically nothing but ashes now. You might not believe me, but the culprit is my old idol, Santa.", + "line": { + "current": 3, + "max": 13 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-4", + "lineInfo": { + "dialogue": "He just appeared with red eyes and turned the whole island into what you see now.", + "line": { + "current": 4, + "max": 13 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-5", + "lineInfo": { + "dialogue": "He destroyed building after building, and his elves started to appear from the sky and killed every citizen in sight.", + "line": { + "current": 5, + "max": 13 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-6", + "lineInfo": { + "dialogue": "Their bodies were full of crimson crystals and their eyes were empty, as if they were possessed by something.", + "line": { + "current": 6, + "max": 13 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-7", + "lineInfo": { + "dialogue": "I refuse to leave because Selchar is my home. It always has been!", + "line": { + "current": 7, + "max": 13 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-8", + "lineInfo": { + "dialogue": "Despite what Santa has done, I know he is not like this. The Santa that I knew was kind and always tried bring a smile to everybody's face.", + "line": { + "current": 8, + "max": 13 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-9", + "lineInfo": { + "dialogue": "That crystal, the one we talked about 60 years ago, I think it did this. But I don't know how Santa got a hold of it. I saw you remove it all those years ago!", + "line": { + "current": 9, + "max": 13 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-10", + "lineInfo": { + "dialogue": "Santa would never want any of this to happen. This is why, I want you to do something for me, and for him.", + "line": { + "current": 10, + "max": 13 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-11", + "lineInfo": { + "dialogue": "Please, end Santa's misery from the corruption that cursed him. He must be suffering inside his twisted body right now.", + "line": { + "current": 11, + "max": 13 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-12", + "lineInfo": { + "dialogue": "Santa made a hideout in the heart of Selchar. I'm sure you can find it by looking for the one with the most crystals.", + "line": { + "current": 12, + "max": 13 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-13", + "lineInfo": { + "dialogue": "Good luck, hero! I know its hard to do this, but please stop Santa and bring me back [Ragged Santa Cloth] as proof!", + "line": { + "current": 13, + "max": 13 + }, + "npc": "Old Tom" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "craftmaschaos-oldtom-14", + "lineInfo": { + "dialogue": "Did you do it? Santa is dead? Oh no, I can't believe it. He is gone, just like that. After nearly 20 or so years of torment...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-15", + "lineInfo": { + "dialogue": "Sorry, it's just very sad for me to hear the news, despite my being the one who asked for it.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-16", + "lineInfo": { + "dialogue": "Thank you very much, my hero. I will spread the news that Selchar is safe from corruption for now. Maybe once the grass starts to return...", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-17", + "lineInfo": { + "dialogue": "You really remind me of the hero in the tales, who journeys through time and the entire province to bring peace.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-18", + "lineInfo": { + "dialogue": "Oh, yes! I am not sure why, but I heard some magical sound from the hourglass tower. It probably happened when you defeated Santa.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-19", + "lineInfo": { + "dialogue": "I reckon it's your way home. Go on now, you wouldn't want to be stuck in this miserable city, would you?", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-20", + "lineInfo": { + "dialogue": "I hope you will live a very wonderful life, you deserve it. I hope we can meet again someday.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Old Tom" + } + }, + { + "fileOverride": "craftmaschaos-oldtom-21", + "lineInfo": { + "dialogue": "Oh, and keep this crystal shard from the rag you gave me. I definitely don't want it.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Old Tom" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "craftmaschaos-santa-10", + "lineInfo": { + "dialogue": "Ho ho ho! Well If it isn't my friend who just took a journey through time!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-11", + "lineInfo": { + "dialogue": "But of course, I already know you were successful, Selchar has had presents for the last 30 years thanks to you!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-12", + "lineInfo": { + "dialogue": "Although, I would have expected you sooner! I saw something strange and dark in the fire when I expected you to return.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-13", + "lineInfo": { + "dialogue": "Of course, no one in Selchar will know you saved Craftmas, because for them, no one has missed one! Of course I remember what you did, power of Christmas and all, ho.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-14", + "lineInfo": { + "dialogue": "So, what took you? Oh, 60 years you say? I wonder how that happened. Well, not even I can claim to know the future. My guess is having that dark crystal with you while travelling in time caused you to over shoot.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-15", + "lineInfo": { + "dialogue": "Don't tell anyone what you saw though, knowing the future can be dangerous. Ho ho! If this journey has taught us anything, it's that time is a confusing thing, and nothing is set in stone. I don't like to mess around with it too much.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-16", + "lineInfo": { + "dialogue": "Anyway, I wouldn't want you to keep the crystal with you forever if its truly as powerful as it seems, give it to me, and I'll store it safely.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-17", + "lineInfo": { + "dialogue": "That is some seriously dark magic we've encountered on this journey, and I'm sure it won't be the last encounter in your adventure.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "craftmaschaos-santa-18", + "lineInfo": { + "dialogue": "Here, take this early Craftmas present from me. Good luck with your journey!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Santa" + } + } + ] + } + } + }, + "Creeper Infiltration": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "creeperinfiltration-thomas-1", + "lineInfo": { + "dialogue": "Oh, finally, someone has come to this hidden village!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-2", + "lineInfo": { + "dialogue": "I am Thomas, and I help manage the supplies for this ravine village. Though, I have a bit of a problem...", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-3", + "lineInfo": { + "dialogue": "We're running low on ravine grains, which is our main staple we use for our food.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-4", + "lineInfo": { + "dialogue": "We usually get it ourselves, but recently an angry group of pigmen took over the tunnel to the top of the ravine, where the grain grows.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-5", + "lineInfo": { + "dialogue": "The last time we entered, I heard an explosion from the top. I fear the pigmen are blowing up our g rain supply with TNT...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-6", + "lineInfo": { + "dialogue": "You appear to be much stronger than I am, so maybe you can get past the tunnel pigmen and eliminate the explosions at the top.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-7", + "lineInfo": { + "dialogue": "Just keep to the right wall of the ravine and climb up the stairs to reach the entrance. Also, be careful in the tunnel, as the pigmen throw rocks as a weapon.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Thomas" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "creeperinfiltration-thomas-8", + "lineInfo": { + "dialogue": "I didn't expect you to fall out of the sky like that. Are you okay, or should I go get the potion mer chant to heal you?", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-9", + "lineInfo": { + "dialogue": "You're fine? Oh, good to hear. Did you manage to get rid of the pigmen and their explosives?", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-10", + "lineInfo": { + "dialogue": "A green creature? A \"creeper\"? No such thing exists in this world, especially with the pigmen all around!", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-11", + "lineInfo": { + "dialogue": "Oh, you brought a piece of skin back. How odd, I've seen this skin before...", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-12", + "lineInfo": { + "dialogue": "There's a large cave over to the south. I tried to enter it, but I got ambushed by green creatures...", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-13", + "lineInfo": { + "dialogue": "I thought I was just dreaming, but these \"creepers\" you talk about...they might live in that cave.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-14", + "lineInfo": { + "dialogue": "I have an idea. I need to know for sure that they live there. A merchant can make you a mask with the skin and another material.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-15", + "lineInfo": { + "dialogue": "There's a Pigman Overlord that sometimes hangs in a cave nearby. If you can kill it, you can get a pigman hide strong enough to make the mask.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-16", + "lineInfo": { + "dialogue": "If you continue on the western path past the tunnel entrance, you should find a camp where the Overlord is located.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-17", + "lineInfo": { + "dialogue": "Go get the pigman hide, and then come back to me so I can tell you what to do next.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Thomas" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "creeperinfiltration-thomas-18", + "lineInfo": { + "dialogue": "I see you have the hide. This skin will work perfectly for my plan.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-19", + "lineInfo": { + "dialogue": "There is a Mask Merchant in this village. He can make you a mask with the two materials I have.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-20", + "lineInfo": { + "dialogue": "With the mask, you can put it on and go undetected into the cave with these \"creepers\". Only then will we know the truth.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-21", + "lineInfo": { + "dialogue": "To get to the creeper cave, follow the western path and turn left at the pigman camps.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-22", + "lineInfo": { + "dialogue": "Also, if you somehow lose the mask, the merchant can make you another one if you bring him another piece of skin and hide.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-23", + "lineInfo": { + "dialogue": "Here are the materials. Be careful out there. Who knows what those green monsters could do to you...", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Thomas" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "creeperinfiltration-thomas-24", + "lineInfo": { + "dialogue": "So, what was in the cave? Were there really creepers in there?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-25", + "lineInfo": { + "dialogue": "What's this? It smells like gunpowder...but more earthy. And this came from the cave?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-26", + "lineInfo": { + "dialogue": "This powder is definitely not native to this area. It has to have come from those creepers.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-27", + "lineInfo": { + "dialogue": "I guess for now we'll leave them at peace. If they do exist, they don't need to be hunted down to extinction.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-28", + "lineInfo": { + "dialogue": "Besides, if they are composed of gunpowder, they could easily blow this ravine to pieces.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-29", + "lineInfo": { + "dialogue": "Thank you for your help. I guess you deserve some sort of reward, considering you helped solve the ravine's big mystery.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-30", + "lineInfo": { + "dialogue": "Feel free to come back to our village any time. By then our food supply should be stable.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Thomas" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "creeperinfiltration-thomas-31", + "lineInfo": { + "dialogue": "Our village needs a bit of help, but you look a bit weak for the job. Come back once you're level 15, and then you might be able to help.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Thomas" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "creeperinfiltration-thomas-32", + "lineInfo": { + "dialogue": "I see you've come back, but you don't have what I asked for. I can't do anything until you fulfill your task.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Thomas" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "creeperinfiltration-thomas-33", + "lineInfo": { + "dialogue": "Thanks again for your help. Now we can truly say creepers exist here in the ravines.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Thomas" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "creeperinfiltration-thomas-34", + "lineInfo": { + "dialogue": "Anyone! Can anyone- oh, hello. You look strong enough to be able to help me.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-35", + "lineInfo": { + "dialogue": "I am Thomas, and I help manage the supplies for a village in the Pigman Ravine. Though, I have a bit of a problem...", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Thomas" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "creeperinfiltration-thomas-36", + "lineInfo": { + "dialogue": "I came here to Tempo Town to see if I could find help here, but I've had no luck. Until now, that is. Would you be willing to help?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-37", + "lineInfo": { + "dialogue": "You would? You're a life saver. I'll meet you at the village, just follow the path out of town and take the northern-most entrance to the ravines.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-38", + "lineInfo": { + "dialogue": "Once you get there, keep to the right wall of the ravine and climb up the stairs to reach the entrance. Also, be careful in the tunnel, as the pigmen throw rocks as a weapon.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Thomas" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "creeperinfiltration-thomas-39", + "lineInfo": { + "dialogue": "I'll meet you at the village! Just follow the path out of town and take the northern-most entrance to the ravines.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Thomas" + } + }, + { + "fileOverride": "creeperinfiltration-thomas-40", + "lineInfo": { + "dialogue": "Once you get there, keep to the right wall of the ravine and climb up the stairs to reach the entrance. Also, be careful in the tunnel, as the pigmen throw rocks as a weapon.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Thomas" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "creeperinfiltration-thomas-41", + "lineInfo": { + "dialogue": "Do you need a reminder about the location of the Pigman Overlord? Just continue on the western path past the tunnel entrance, and you should find a camp where the Overlord is located.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Thomas" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "creeperinfiltration-thomas-42", + "lineInfo": { + "dialogue": "Have you been to the creeper cave? Just follow the western path and turn left at the pigman camps.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Thomas" + } + } + ] + } + } + }, + "Crop Failure": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "cropfailure-anast-1", + "lineInfo": { + "dialogue": "Grr...that no-good, lying, cheating, thieving...graaah!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-2", + "lineInfo": { + "dialogue": "You! Help me out over here! You aren't doing anything important right now, and this is urgent!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-3", + "lineInfo": { + "dialogue": "D'you think crops are supposed to look like THIS?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Anast: I got a few questions for you, see? Question one" + } + }, + { + "fileOverride": "cropfailure-anast-4", + "lineInfo": { + "dialogue": "Look at them. I don't think there's a way for 'em to look any more sorry than this.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-5", + "lineInfo": { + "dialogue": "Wha- You think those oats over there look fine?! Pff. Yeah, right.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-6", + "lineInfo": { + "dialogue": "If that's the case, go grab a scythe and try harvesting those oats yourself!!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-7", + "lineInfo": { + "dialogue": "Go on, do it! I dare you! See how good they really are!!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Anast" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "cropfailure-anast-8", + "lineInfo": { + "dialogue": "See? What'd I tell ya? Rotten to the roots! Nothing here is ANY good!!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-9", + "lineInfo": { + "dialogue": "They were growing pretty slow this year, all my crops, and then some salesman wanders into town with a \"MiracleCure\" fertilizer.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-10", + "lineInfo": { + "dialogue": "I shoulda known it was too good to be true, but he said everyone else tried it too, so I bought some and tried to salvage this mess.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-11", + "lineInfo": { + "dialogue": "And here we are- me out half my savings and my fields as smelly and dead as an actual CORPSE!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-12", + "lineInfo": { + "dialogue": "Just to prove that ridiculous phony Doubiss is a fraud- Here. I see some roots over here. Watch this, and you tell me if this is a \"miracle!\"", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-13", + "lineInfo": { + "dialogue": "Here we go, here comes the big phenomenal growth that he promised me!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-14", + "lineInfo": { + "dialogue": "WOW, INCREDIBLE! AMAZING! It's almost like this is actual poison or something!!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-15", + "lineInfo": { + "dialogue": "That Doubiss won't budge for my refund. I spent...so many emeralds...on this tripe! So that's where YOU come in.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-16", + "lineInfo": { + "dialogue": "He's in the blue and gray tent by the bank. I don't care how you do it, but get my money back and we'll split it half-and-half, deal?", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Anast" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "cropfailure-doubiss-1", + "lineInfo": { + "dialogue": "Ah, good day to ya! What is it ye be needin' from ol' Doubiss' stock?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Doubiss" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "cropfailure-doubiss-2", + "lineInfo": { + "dialogue": "Good day to ya! What is it ye be needin' from ol' Doubiss' stock?", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Doubiss" + } + }, + { + "fileOverride": "cropfailure-doubiss-3", + "lineInfo": { + "dialogue": "Oh. Oh, goodie. That idiot farmer's sendin' ya to get his money back, ain't he? Sweet baby bovine, this is ridiculous...", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Doubiss" + } + }, + { + "fileOverride": "cropfailure-doubiss-4", + "lineInfo": { + "dialogue": "Since he obviously ain't gonna be listenin' to me anytime soon, lemme tell you what the issue is with my fertilizer...", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Doubiss" + } + }, + { + "fileOverride": "cropfailure-doubiss-5", + "lineInfo": { + "dialogue": "Nothing! My fertilizer really does work! He probl'ly exaggerated how good I said it'd work, too! What'd he say, twice, three times the growth? More?", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Doubiss" + } + }, + { + "fileOverride": "cropfailure-doubiss-6", + "lineInfo": { + "dialogue": "All the other farmers are usin' it right now, and look at their fields! Heck, I think the only reason these crops ain't dead is because of my product!", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Doubiss" + } + }, + { + "fileOverride": "cropfailure-doubiss-7", + "lineInfo": { + "dialogue": "Y'know why? Next time ya pass a farm, take a good whiff o' the water, maybe a sip or two if you can manage. It'll be smelly and bitter.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Doubiss" + } + }, + { + "fileOverride": "cropfailure-doubiss-8", + "lineInfo": { + "dialogue": "The crops, when I got here, were lookin' pathetic as ya get. I ain't a gamblin' man, but I'd be willing ta bet something's up with the water here.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Doubiss" + } + }, + { + "fileOverride": "cropfailure-doubiss-9", + "lineInfo": { + "dialogue": "The smell gets worse the closer ya get to the crypts in town, and while I ain't a native Oluxer, I've heard enough to know the well spring is in the cave near there.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Doubiss" + } + }, + { + "fileOverride": "cropfailure-doubiss-10", + "lineInfo": { + "dialogue": "It'll prob'ly be best fer everyone if ya took a looksee. Maybe if ya find some evidence, ya can show that crazy farmer, have 'im quit pesterin' me, eh?", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Doubiss" + } + }, + { + "fileOverride": "cropfailure-doubiss-11", + "lineInfo": { + "dialogue": "The cave is on the little hill, next to the crypt. Careful ya don't go trippin' over a gravestone, now!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Doubiss" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "cropfailure-doubiss-12", + "lineInfo": { + "dialogue": "Oi, bucko! Took my advice, eh? I figured I'd join ye, 'n see fer myself what was goin' on.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Doubiss" + } + }, + { + "fileOverride": "cropfailure-doubiss-13", + "lineInfo": { + "dialogue": "And boy am I glad I bring me water in bottles. This stuff's rancid, full a' swamp slimes. No idea why they're here, though.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Doubiss" + } + }, + { + "fileOverride": "cropfailure-doubiss-14", + "lineInfo": { + "dialogue": "The buggers stick to the mountain caves. They don't come down this far usually...s'pose there's an exception fer everything.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Doubiss" + } + }, + { + "fileOverride": "cropfailure-doubiss-15", + "lineInfo": { + "dialogue": "'s no wonder that Anast's crops ain't growin'. This is right under his farm! But we got some clear proof now, ain't we?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Doubiss" + } + }, + { + "fileOverride": "cropfailure-doubiss-16", + "lineInfo": { + "dialogue": "Howzabout ya take care o' this? I ain't a fighter, but if ya mulch these slimes the water oughta clear up, I figure.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Doubiss" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "cropfailure-doubiss-17", + "lineInfo": { + "dialogue": "The little cave on the hill, by the crypts? That's the one leadin' to the water table under here.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Doubiss" + } + }, + { + "fileOverride": "cropfailure-doubiss-18", + "lineInfo": { + "dialogue": "Check in there if ya feel up to some investigation, bucko. That farmer'll prob'ly want ta see it ta believe it when ya find somethin'.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Doubiss" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "cropfailure-doubiss-19", + "lineInfo": { + "dialogue": "Well, glad I can start sellin' again without him shoutin' \"Fraud! Con! Cheat!\" in the distance! Thanks fer that, mate.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Doubiss" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "cropfailure-anast-17", + "lineInfo": { + "dialogue": "Pyyyyeww! Yeesh, kid! You smell worse than a pig's sty! What the heck happened to you, where've you been?!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-18", + "lineInfo": { + "dialogue": "Ugh, eww! I don't want any of this sludge! I demand an explanation, now!!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-19", + "lineInfo": { + "dialogue": "...mhm, mhm...you went into the well cave...and found...what, slimes?! Why would the SLIMES be there?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-20", + "lineInfo": { + "dialogue": "I wouldn't believe you if you weren't...well, uh...covered in the stuff. But that's definitely rancid.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-21", + "lineInfo": { + "dialogue": "So...that means that I've been...oh dear lord I'm an idiot.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-22", + "lineInfo": { + "dialogue": "I guess I owe you some thanks anyway for trying to clear the sludge out. Suppose this year's harvest is just a bust.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-23", + "lineInfo": { + "dialogue": "Can't sell what little I have, so I figure you can take it, and a bit of cash too, since you basically did an exterminator's job.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Anast" + } + }, + { + "fileOverride": "cropfailure-anast-24", + "lineInfo": { + "dialogue": "Just...do me a favor and use that money to buy some good soap and wash up. I'm thankful and all, but you stink to high heaven!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Anast" + } + } + ] + } + } + }, + "Dark Descent": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "darkdescentdungeon-charon-1", + "lineInfo": { + "dialogue": "How foolish. You might think you are strong, adventurer, but you have no idea what you are about to face...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "darkdescentdungeon-charon-2", + "lineInfo": { + "dialogue": "I have an entire undead army at my service. Do you really think you stand a chance?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Charon" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "darkdescentdungeon-charon-3", + "lineInfo": { + "dialogue": "I see you've brought some help with you, you aren't as foolish as I thought. However, how do you plan to defeat an army that cannot die?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Charon" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "darkdescentdungeon-charon-4", + "lineInfo": { + "dialogue": "How foolish. Just because you have overcome something once does not mean it will happen again.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "darkdescentdungeon-charon-5", + "lineInfo": { + "dialogue": "BLARGH! My minions shall not let you pass!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + }, + { + "fileOverride": "darkdescentdungeon-charon-6", + "lineInfo": { + "dialogue": "Aahrg, get the human! We can't let it pass by again!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "darkdescentdungeon-charon-7", + "lineInfo": { + "dialogue": "Do you really think I will fall for that one again? An army likes yours is childsplay afor me! However, how do you plan to defeat an army that is already dead?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Corrupted Charon" + } + } + ] + } + }, + "settings": { + "followPlayer": true + } + }, + "Dark Forest": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "darkforest-lari-1", + "lineInfo": { + "dialogue": "Hmm...", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-lari-2", + "lineInfo": { + "dialogue": "Huh? Oh... soldier, I'm glad you're here.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-lari-3", + "lineInfo": { + "dialogue": "I'm just making my rounds along the Decay line.", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-lari-4", + "lineInfo": { + "dialogue": "It can't have escaped your notice, but the north is dying, for want of a better word.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-lari-5", + "lineInfo": { + "dialogue": "You may have also noticed a very direct line between the forests, that's becau—", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-lari-6", + "lineInfo": { + "dialogue": "Odd... I keep on hearing this strange noise coming from over there.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-lari-7", + "lineInfo": { + "dialogue": "Wait, look. It's one of the parasites. Let me show you the barrier.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-lari-8", + "lineInfo": { + "dialogue": "I have single handedly contained the spread of the Decay... But it was not my original plan.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-lari-9", + "lineInfo": { + "dialogue": "Good, it looks like the barrier is still strong.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-lari-10", + "lineInfo": { + "dialogue": "I need to actively keep the enchantment alive. Any weaknesses and they will break through.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-lari-11", + "lineInfo": { + "dialogue": "It is not an ideal solution, and the locals have no idea. They just think the river protects them.", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-lari-12", + "lineInfo": { + "dialogue": "Alas, holding them back seems to be my only option until I can find a cure.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-1", + "lineInfo": { + "dialogue": "Hey you, with the short nose! Come 'elp me out, would'ya?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-revan-2", + "lineInfo": { + "dialogue": "Over by this tree, be careful where you tread!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-3", + "lineInfo": { + "dialogue": "Hey. Revan's the name, and I'd be grateful if you could take me back to my body. It's around here somewhere!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-4", + "lineInfo": { + "dialogue": "Does it look like there's anything in there?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-5", + "lineInfo": { + "dialogue": "There's nothing in here. My body may be further away, search hard!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-6", + "lineInfo": { + "dialogue": "I was no vagabond soldier in my past life! Keep looking!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-7", + "lineInfo": { + "dialogue": "I was no poor farmer in my past life! I was, uh, rich! Yeah... really rich...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-8", + "lineInfo": { + "dialogue": "Do you know who you're carrying?! I was more important than some peasant!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-9", + "lineInfo": { + "dialogue": "This is just insulting! I never killed anyone! Well, I ordered a couple executions... But you can't blame me for that!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-10", + "lineInfo": { + "dialogue": "Here! That's the score!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-revan-11", + "lineInfo": { + "dialogue": "Watch for the floor! It's a tad unstable!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-12", + "lineInfo": { + "dialogue": "That blood trail went the other way, it's probably wise to follow it.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-13", + "lineInfo": { + "dialogue": "Just looking at that place gives me the creeps. You ever been in there, short-nose?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-revan-14", + "lineInfo": { + "dialogue": "Get me away from this place, I'm getting flashbacks from when I had an encounter with a Gert trying to feast on my hand...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-15", + "lineInfo": { + "dialogue": "Oh yeah! That's the ticket!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-revan-16", + "lineInfo": { + "dialogue": "Do you have a crowbar or something? WHAT? YOU DON'T?!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-17", + "lineInfo": { + "dialogue": "Do I look like I've had parts of my body cut off? ...Wait.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-18", + "lineInfo": { + "dialogue": "This place STINKS. Can you please get me out of here?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-revan-19", + "lineInfo": { + "dialogue": "Hey... I feel like I've seen that guy somewhere!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-20", + "lineInfo": { + "dialogue": "We're a long way from Lexdale, pal. You sure this place is safe?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-21", + "lineInfo": { + "dialogue": "I don't think I need to explain why this isn't my body.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-22", + "lineInfo": { + "dialogue": "You know the Twains were human, right? I could never pass as one of those celebrities!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "darkforest-revan-23", + "lineInfo": { + "dialogue": "Where am I? We're not in Gavel, are we?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Revan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "darkforest-butler-1", + "lineInfo": { + "dialogue": "Hm? Who's the—", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Butler" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-butler-2", + "lineInfo": { + "dialogue": "Y-you?! But how!? They... You... You were executed! You are dead!!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Butler" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-dullahan-1", + "lineInfo": { + "dialogue": "Bring your master to me.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Dullahan" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-noble-1", + "lineInfo": { + "dialogue": "What's this commotion about? Can't I get some sleep for once in a while?", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Noble" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-noble-2", + "lineInfo": { + "dialogue": "Y-you?! Wha-... How are yo-... G-get off my property, right now! Guards!", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Noble" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-dullahan-2", + "lineInfo": { + "dialogue": "You're the one responsible for my beheading, are you not?", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Dullahan" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-dullahan-3", + "lineInfo": { + "dialogue": "You took something of mine.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Dullahan" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-dullahan-4", + "lineInfo": { + "dialogue": "I shall now take everything of yours.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Dullahan" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-noble-3", + "lineInfo": { + "dialogue": "N-no... I— Everyone thought it was you! I'm sorry, We're sorry!", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Noble" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-dullahan-5", + "lineInfo": { + "dialogue": "Some things can not be fixed with words.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Dullahan" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "darkforest-kalrow-1", + "lineInfo": { + "dialogue": "Yes... Let the energy release!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Kalrow" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-kalrow-2", + "lineInfo": { + "dialogue": "Now to test this power...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Kalrow" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "darkforest-kalrow-3", + "lineInfo": { + "dialogue": "AAAH! Help... Someone!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Kalrow" + }, + "settings": { + "falloff": 200 + } + } + ] + } + } + }, + "Death Whistle": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "deathwhistle-voer-1", + "lineInfo": { + "dialogue": "Hello! Hmm, armour, weapon, look of grim despair... You must be from the Wynn province!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Voer" + } + }, + { + "fileOverride": "deathwhistle-voer-2", + "lineInfo": { + "dialogue": "My name is Voer, and I'm an exotic plant merchant. I sell all kinds of, uh, perfectly legal goods to the magicians of Gavel.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Voer" + } + }, + { + "fileOverride": "deathwhistle-voer-3", + "lineInfo": { + "dialogue": "Lately, this Decay has been making business rather tough. The magical plants that used to grow here are dying.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Voer" + } + }, + { + "fileOverride": "deathwhistle-voer-4", + "lineInfo": { + "dialogue": "The need for magic has never been as big as it is now, and without supplies, the magicians of the swamp simply cannot operate!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Voer" + } + }, + { + "fileOverride": "deathwhistle-voer-5", + "lineInfo": { + "dialogue": "I need Death Whistle in particular. It's not as deadly as it sounds, I promise- the name's just archaic, if I recall right from that- er, my book.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Voer" + } + }, + { + "fileOverride": "deathwhistle-voer-6", + "lineInfo": { + "dialogue": "It is a rather rare plant with all sorts of mystical properties, so much so that it can animate objects around it!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Voer" + } + }, + { + "fileOverride": "deathwhistle-voer-7", + "lineInfo": { + "dialogue": "Look for the highest mountain in the swamp south-east from here. The decay hasn't reached the peaks yet, you see!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Voer" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "deathwhistle-lari-1", + "lineInfo": { + "dialogue": "You, Voer! Inconsiderate thief!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "deathwhistle-lari-2", + "lineInfo": { + "dialogue": "You've no idea what you even have done, do you? Your thoughtless actions will cost lives!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "deathwhistle-voer-8", + "lineInfo": { + "dialogue": "Uhm... Excuse me? What do you want, elf girl? We're in the middle of a deal here?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Voer" + } + }, + { + "fileOverride": "deathwhistle-lari-3", + "lineInfo": { + "dialogue": "You sold Pink Pelulite! Have you forgotten its enraging properties? Or shall I read from that herbology book you \"found\" in my camp?", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "deathwhistle-voer-9", + "lineInfo": { + "dialogue": "Wait, wh-what? A Pink PELULITE!? I sold that woman a Pink PELUTE for her luck charms! How dare- wait...wait, Pink Pelute has rounder petals... Oh no.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Voer" + } + }, + { + "fileOverride": "deathwhistle-lari-4", + "lineInfo": { + "dialogue": "You can't even say for certain. This kind of carelessness has no place! If you refuse to exercise the proper thought and caution, then those around you suffer.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "deathwhistle-lari-5", + "lineInfo": { + "dialogue": "I must...make a difficult choice, and leave this job to you. I've other things to tend to, though it pains me to leave a life in another's hands. Remember this, villager!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "deathwhistle-voer-10", + "lineInfo": { + "dialogue": "Aaah, this is a disaster! Human, please, Pink Pelulite acts quickly and intensely... Follow the pink trail on the ground, the flowers shed their petals. Get it back before something bad happens!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Voer" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "deathwhistle-witch-1", + "lineInfo": { + "dialogue": "Ah, um, come back later please! Something strange is happening!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Witch" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "deathwhistle-witch-2", + "lineInfo": { + "dialogue": "My body is a bit, um, not-in-my-control right now! I'd rather not hurt anyone!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Witch" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "deathwhistle-voer-11", + "lineInfo": { + "dialogue": "You're back, I see...and you're shedding petals! You got the Pink Pelulite back?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Voer" + } + }, + { + "fileOverride": "deathwhistle-voer-12", + "lineInfo": { + "dialogue": "And what of the woman who bought it? Was she...?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Voer" + } + }, + { + "fileOverride": "deathwhistle-voer-13", + "lineInfo": { + "dialogue": "Oh, thank goodness! You got there in time. She's a regular of mine- and a bit of a looker, too. That Lari was right, to some extent, at least...", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Voer" + } + }, + { + "fileOverride": "deathwhistle-voer-14", + "lineInfo": { + "dialogue": "I did take her book, and I should be more careful in the future, regarding this...but I can't just quit selling these herbs.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Voer" + } + }, + { + "fileOverride": "deathwhistle-voer-15", + "lineInfo": { + "dialogue": "I need an income, and the swamp isn't exactly the most resource rich region here! Especially not any more.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Voer" + } + }, + { + "fileOverride": "deathwhistle-voer-16", + "lineInfo": { + "dialogue": "And how dare she just walk away like that! It's a good thing you were around, human, otherwise...well, I'd rather not think about it.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Voer" + } + }, + { + "fileOverride": "deathwhistle-voer-17", + "lineInfo": { + "dialogue": "Regardless, you've helped me greatly. Got me my supplies and saved the life of a regular of mine, so I've got a gift for you!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Voer" + } + }, + { + "fileOverride": "deathwhistle-voer-18", + "lineInfo": { + "dialogue": "I'll offer you a sampler of my stock. Everything in here is pre-primed to be safe for brewing, so there won't be any mishaps like today!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Voer" + } + } + ] + } + } + }, + "Decrepit Sewers": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "decriptsewers-witherehead-1", + "lineInfo": { + "dialogue": "You dare enter these sewers, human? These pipes once hid the civilians of Ragni during raids... Now it just holds corpses.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "decriptsewers-witherehead-2", + "lineInfo": { + "dialogue": "The forces of the Humans could not save me when I hid here, and they can’t save you either.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "decriptsewers-witherehead-3", + "lineInfo": { + "dialogue": "You persist through the sludge, now you will join me like the rest!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Witherhead" + } + } + ] + } + }, + "settings": { + "followPlayer": true + } + }, + "Deja Vu": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-1", + "lineInfo": { + "dialogue": "Well well well, look who decided to come back with their tail between their legs.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-2", + "lineInfo": { + "dialogue": "Two weeks now and you still haven't found it? Ugh, I can't believe I ever trusted you with such a simple task.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-3", + "lineInfo": { + "dialogue": "Who am I? WHAT DO YOU MEAN WHO AM I? You offered to help find my shovel, and I've been waiting two weeks!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-4", + "lineInfo": { + "dialogue": "Forget about your payment. Unless you either pay me back or get my shovel right now!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-5", + "lineInfo": { + "dialogue": "My shovel? That's why I sent you out in the first place! It's somewhere in Time Valley. I lost it while following a trail of flowers.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-6", + "lineInfo": { + "dialogue": "I think it was south west of the large ruined gate. Now go get it!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Asher" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-7", + "lineInfo": { + "dialogue": "Well hello there, stranger! Welcome to Time Valley! Always nice to see a new face around here.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-8", + "lineInfo": { + "dialogue": "Mad at you? Why would I be mad at you? We've never met.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-9", + "lineInfo": { + "dialogue": "I know this a bit forward, but I need to ask for your help with-", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-10", + "lineInfo": { + "dialogue": "Wait, is that-? It is! You've found my shovel! I recognize those markings anywhere.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-11", + "lineInfo": { + "dialogue": "But why is it so rusty? Ah, no matter. Give that to me and I'll head inside to get you a nice reward.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-12", + "lineInfo": { + "dialogue": "Thank you. Now, about that reward-", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-13", + "lineInfo": { + "dialogue": "Wha- What's happening?", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Asher" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-14", + "lineInfo": { + "dialogue": "Huh? Where is everyone?", + "line": { + "current": 1, + "max": 18 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-15", + "lineInfo": { + "dialogue": "Usually this place is filled with workers.", + "line": { + "current": 2, + "max": 18 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-16", + "lineInfo": { + "dialogue": "But no one's here. And this place is clearly not done.", + "line": { + "current": 3, + "max": 18 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-17", + "lineInfo": { + "dialogue": "Whatever the case, I should probably find my shovel.", + "line": { + "current": 4, + "max": 18 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-50", + "lineInfo": { + "dialogue": "If I were a shovel, where would I be?", + "line": { + "current": 5, + "max": 18 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-18", + "lineInfo": { + "dialogue": "Hmmm. Not around here.", + "line": { + "current": 6, + "max": 18 + }, + "npc": "Asher" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "4": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-19", + "lineInfo": { + "dialogue": "Wait, what's that-?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Asher" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "5": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-20", + "lineInfo": { + "dialogue": "This place... There's so much going on but no one here.", + "line": { + "current": 7, + "max": 18 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-21", + "lineInfo": { + "dialogue": "What I don't understand, though, is why this place looks brand new.", + "line": { + "current": 8, + "max": 18 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-22", + "lineInfo": { + "dialogue": "This place looks like it's just being built!", + "line": { + "current": 9, + "max": 18 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-23", + "lineInfo": { + "dialogue": "This must be something to do with the valley's magic. Wouldn't be the first time.", + "line": { + "current": 10, + "max": 18 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-25", + "lineInfo": { + "dialogue": "Heh, time.", + "line": { + "current": 11, + "max": 18 + }, + "npc": "Asher" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "6": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-26", + "lineInfo": { + "dialogue": "Woah! Where did-?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Asher" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "7": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-27", + "lineInfo": { + "dialogue": "In fact, whenever I hold that shovel, this kind of stuff seems to happen.", + "line": { + "current": 12, + "max": 18 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-28", + "lineInfo": { + "dialogue": "Maybe it's sent me way back. Back to the construction of this place.", + "line": { + "current": 13, + "max": 18 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-29", + "lineInfo": { + "dialogue": "Then why is no one here?", + "line": { + "current": 14, + "max": 18 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-30", + "lineInfo": { + "dialogue": "Woah, that tree looks like it might fall over!", + "line": { + "current": 15, + "max": 18 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-31", + "lineInfo": { + "dialogue": "That was a close one!", + "line": { + "current": 16, + "max": 18 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-32", + "lineInfo": { + "dialogue": "Uhf! How do they have a cannon? These guys must be super advanced.", + "line": { + "current": 17, + "max": 18 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-33", + "lineInfo": { + "dialogue": "I think I'm close now. I can just feel that shovel close by.", + "line": { + "current": 18, + "max": 18 + }, + "npc": "Asher" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "8": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-34", + "lineInfo": { + "dialogue": "Oh there it is! My shovel!", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-35", + "lineInfo": { + "dialogue": "I'm surprised it took me back this far this time.", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-36", + "lineInfo": { + "dialogue": "Well, time to head on back-", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-37", + "lineInfo": { + "dialogue": "Wait, Martyn?", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-38", + "lineInfo": { + "dialogue": "Ow! What was that for?", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Asher" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "9": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-39", + "lineInfo": { + "dialogue": "I... Might recall it.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Asher" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "10": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-40", + "lineInfo": { + "dialogue": "Oh... So that's where I am. I am so sorry Martyn. Please don't kick me out of the valley.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Asher" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "11": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-41", + "lineInfo": { + "dialogue": "Holy Bovine!", + "line": { + "current": 1, + "max": 14 + }, + "npc": "Asher" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "12": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-42", + "lineInfo": { + "dialogue": "How did you get these powers? Are you even human?", + "line": { + "current": 3, + "max": 14 + }, + "npc": "Asher" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-43", + "lineInfo": { + "dialogue": "I probably could have gotten myself out...", + "line": { + "current": 6, + "max": 14 + }, + "npc": "Asher" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-44", + "lineInfo": { + "dialogue": "I did?", + "line": { + "current": 8, + "max": 14 + }, + "npc": "Asher" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-45", + "lineInfo": { + "dialogue": "Uh, you're still here.", + "line": { + "current": 12, + "max": 14 + }, + "npc": "Asher" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-46", + "lineInfo": { + "dialogue": "I don't understand Martyn. He seems to know everything about the past. Here, come closer, I want to whisper something.", + "line": { + "current": 14, + "max": 14 + }, + "npc": "Asher" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "dejavu-asher-47", + "lineInfo": { + "dialogue": "I think he might have known Bob. I saw some letters in his house.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-48", + "lineInfo": { + "dialogue": "Weird, right? Bob was a hard guy to know.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Asher" + } + }, + { + "fileOverride": "dejavu-asher-49", + "lineInfo": { + "dialogue": "Anyway, take this. It's the least I can do to pay you for saving me.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Asher" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "dejavu-oldmanmartyn-1", + "lineInfo": { + "dialogue": "Oh dear, there he goes again. Poor fool ignored my warnings and touched that shovel.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-2", + "lineInfo": { + "dialogue": "He's gone and got himself stuck in a loop.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-3", + "lineInfo": { + "dialogue": "Head inside, soldier, and I'll explain what's happening here.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Old Man Martyn" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "dejavu-oldmanmartyn-4", + "lineInfo": { + "dialogue": "Let me explain why Asher disappeared...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-5", + "lineInfo": { + "dialogue": "Time Valley was built many years ago by a long-lost civilization.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-6", + "lineInfo": { + "dialogue": "They had odd powers. They ended up distorting time itself.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-7", + "lineInfo": { + "dialogue": "The tools they used to make these structures are imbued with their power.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-8", + "lineInfo": { + "dialogue": "the shovel.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Old Man Martyn: Asher found one of these tools" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-9", + "lineInfo": { + "dialogue": "The shovel is tethering its time of influence to today. It keeps sending Asher back.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-10", + "lineInfo": { + "dialogue": "The issue is, Asher died in the past. This creates a paradox.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-11", + "lineInfo": { + "dialogue": "We can save him if I send you back to prevent his death. Go through this rift to join him in the past.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Old Man Martyn" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "dejavu-oldmanmartyn-12", + "lineInfo": { + "dialogue": "Asher, you remember when I allowed you to live in the valley, I told you not to touch any odd objects.", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Old Man Martyn" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "dejavu-oldmanmartyn-13", + "lineInfo": { + "dialogue": "You got yourself stuck hundreds of years ago. If it wasn't for this guard, you'd be removed from existence.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Old Man Martyn" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "dejavu-oldmanmartyn-14", + "lineInfo": { + "dialogue": "I know time travel can be tempting. But it's far more dangerous than you can ever understand.", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-15", + "lineInfo": { + "dialogue": "The valley is banned for most citizens. I watch over this timeline because of poor souls like Asher.", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Old Man Martyn" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "dejavu-oldmanmartyn-16", + "lineInfo": { + "dialogue": "Ah, we're back.", + "line": { + "current": 2, + "max": 14 + }, + "npc": "Old Man Martyn" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "dejavu-oldmanmartyn-17", + "lineInfo": { + "dialogue": "Oh you know. I've read a book or two in my time.", + "line": { + "current": 4, + "max": 14 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-18", + "lineInfo": { + "dialogue": "Soldier, I'm sorry I got you dragged into this. I wish I could have done it myself.", + "line": { + "current": 5, + "max": 14 + }, + "npc": "Old Man Martyn" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "dejavu-oldmanmartyn-19", + "lineInfo": { + "dialogue": "You died in the past. Multiple times.", + "line": { + "current": 7, + "max": 14 + }, + "npc": "Old Man Martyn" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "dejavu-oldmanmartyn-20", + "lineInfo": { + "dialogue": "Yes. In some surprising ways too.", + "line": { + "current": 9, + "max": 14 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-21", + "lineInfo": { + "dialogue": "Soldier, I'm sure we will meet again... in time.", + "line": { + "current": 10, + "max": 14 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-22", + "lineInfo": { + "dialogue": "See you around.", + "line": { + "current": 11, + "max": 14 + }, + "npc": "Old Man Martyn" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "dejavu-oldmanmartyn-23", + "lineInfo": { + "dialogue": "Am I?", + "line": { + "current": 13, + "max": 14 + }, + "npc": "Old Man Martyn" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "dejavu-oldmanmartyn-24", + "lineInfo": { + "dialogue": "Without Asher, his house has vanished from time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Old Man Martyn" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "29": { + "dialogues": [ + { + "fileOverride": "dejavu-oldmanmartyn-25", + "lineInfo": { + "dialogue": "My my, a crushing defeat to be sure. You'll have to find a way to stop that.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-26", + "lineInfo": { + "dialogue": "Go back through the rift and make sure Asher doesn't become a pancake this time.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Old Man Martyn" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "dejavu-oldmanmartyn-27", + "lineInfo": { + "dialogue": "Well that was quite the explosive end to our friend there. There must be a way to prevent that.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-28", + "lineInfo": { + "dialogue": "Head back in there. This time with less explosions.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Old Man Martyn" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "dejavu-oldmanmartyn-29", + "lineInfo": { + "dialogue": "Oh, so close on that try. Who could've guessed that was how our friend met his end?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "dejavu-oldmanmartyn-30", + "lineInfo": { + "dialogue": "I'm sure you'll nail it this time. Not sure how you will stop a cosmic event, though.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Old Man Martyn" + } + } + ] + } + } + }, + "Desperate Metal": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "desperatemetal-phinas-1", + "lineInfo": { + "dialogue": "Oh my...", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-2", + "lineInfo": { + "dialogue": "LOOK AT MY HOUSE!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-3", + "lineInfo": { + "dialogue": "A bunch of stupid mechs came here and just started ransacking!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-4", + "lineInfo": { + "dialogue": "Looks like a bunch of despermechs. That's what we call junk mechs, trying to survive.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-5", + "lineInfo": { + "dialogue": "I count three different mech marks. Looks like they split up once they got their parts.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-6", + "lineInfo": { + "dialogue": "You got to help me here, I'm no warrior. Look they've dropped crates on their escape. Follow them and bring me back evidence that you destroyed them and I shall reward you.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-7", + "lineInfo": { + "dialogue": "Three trails, three thieving despermechs. Be careful, they aren't to be underestimated.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Phinas" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "desperatemetal-phinas-8", + "lineInfo": { + "dialogue": "You Wynn folk sure know your fights.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-9", + "lineInfo": { + "dialogue": "You found all three? Let's take a look. Hmm....", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-10", + "lineInfo": { + "dialogue": "Wait. These aren't Despermechs.. The factory fell over two years ago. These are brand new. Handmade.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-11", + "lineInfo": { + "dialogue": "Let's take a closer look.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-12", + "lineInfo": { + "dialogue": "Would you look at that! Their code!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-13", + "lineInfo": { + "dialogue": "Here, have them back. Take a close look at the names of these parts.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Phinas" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "desperatemetal-phinas-14", + "lineInfo": { + "dialogue": "Did you find the source of those odd handmade mechs?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-15", + "lineInfo": { + "dialogue": "Nettik? The Light House owner? It's not overly surprising.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-16", + "lineInfo": { + "dialogue": "She always did complain about the mech ban.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-17", + "lineInfo": { + "dialogue": "You see, many of the Corkian people rely on their machines. Have done for years.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-18", + "lineInfo": { + "dialogue": "So when the factory fell and the new laws were introduced, people's lives changed...", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Phinas" + } + }, + { + "fileOverride": "desperatemetal-phinas-19", + "lineInfo": { + "dialogue": "People don't like change. Anyway, I can't thank you enough. Have this for your troubles.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Phinas" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "desperatemetal-nettik-1", + "lineInfo": { + "dialogue": "What are these? I have nothing to do with them!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Nettik" + } + }, + { + "fileOverride": "desperatemetal-nettik-2", + "lineInfo": { + "dialogue": "Ahh.. Well, now that I think of it, writing my location on these parts was a bit stupid.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Nettik" + } + }, + { + "fileOverride": "desperatemetal-nettik-3", + "lineInfo": { + "dialogue": "Those mechs were my creation. Corkus can still live with machines.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Nettik" + } + }, + { + "fileOverride": "desperatemetal-nettik-4", + "lineInfo": { + "dialogue": "The factory was a disaster. That's what happens when a machine controls a machine.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Nettik" + } + }, + { + "fileOverride": "desperatemetal-nettik-5", + "lineInfo": { + "dialogue": "I am living proof that humans can control them. Make use of them.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Nettik" + } + }, + { + "fileOverride": "desperatemetal-nettik-6", + "lineInfo": { + "dialogue": "The metal shortage has made it difficult to make my machines... Not to mention the new laws...", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Nettik" + } + }, + { + "fileOverride": "desperatemetal-nettik-7", + "lineInfo": { + "dialogue": "If you want to turn me in, fine. You’ll find all the evidence you need under my pillow.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Nettik" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "desperatemetal-nettik-8", + "lineInfo": { + "dialogue": "I'm sorry it ended up like this, you should've just ignored that old man.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Nettik" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "desperatemetal-steammechdm1-1", + "lineInfo": { + "dialogue": "Evasive maneuver inefficient.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Steam Mech-DM1" + } + }, + { + "fileOverride": "desperatemetal-steammechdm1-2", + "lineInfo": { + "dialogue": "Request additional orders from L.H. Defend.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Steam Mech-DM1" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "desperatemetal-fierymechdm2-1", + "lineInfo": { + "dialogue": "Tools acquired, deliviered to L.H. Additional orders received.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Fiery Mech-DM2" + } + }, + { + "fileOverride": "desperatemetal-fierymechdm2-2", + "lineInfo": { + "dialogue": "Intruder detected. Camouflage ineffective. Defend.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Fiery Mech-DM2" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "desperatemetal-intelligencemechdm3-1", + "lineInfo": { + "dialogue": "procured.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Intelligence Mech-DM3: Strategic mission accomplished. Mechanical parts" + } + }, + { + "fileOverride": "desperatemetal-intelligencemechdm3-2", + "lineInfo": { + "dialogue": "L.H. can continue to produce effectively.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Intelligence Mech-DM3" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "desperatemetal-bigbossmechdm666-1", + "lineInfo": { + "dialogue": "I was made to be angry. I can't stop myself...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Big boss Mech-DM666" + } + }, + { + "fileOverride": "desperatemetal-bigbossmechdm666-2", + "lineInfo": { + "dialogue": "Prepare for destruc...I-LOVE-CATS ahelp.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Big boss Mech-DM666" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "desperatemetal-security-1", + "lineInfo": { + "dialogue": "activated.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "???: Stranger detected. Security system" + } + }, + { + "fileOverride": "desperatemetal-security-2", + "lineInfo": { + "dialogue": "Security drop-chute engaging. 5... 4...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "???" + } + }, + { + "fileOverride": "desperatemetal-security-3", + "lineInfo": { + "dialogue": "3...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "???" + } + }, + { + "fileOverride": "desperatemetal-security-4", + "lineInfo": { + "dialogue": "2...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "???" + } + }, + { + "fileOverride": "desperatemetal-security-5", + "lineInfo": { + "dialogue": "1...", + "line": { + "current": 5, + "max": 5 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + } + } + }, + "Dwarves and Doguns Part I": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-lozeg-1", + "lineInfo": { + "dialogue": "Interesting to see a Human wanting to see a Dwarven play!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Lozeg" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-lozeg-2", + "lineInfo": { + "dialogue": "The only play we’re performing is the annual Victory Festival.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Lozeg" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-lozeg-3", + "lineInfo": { + "dialogue": "The entry cost is [1 Emerald Block].", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Lozeg" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-lozeg-4", + "lineInfo": { + "dialogue": "Just take a seat and enjoy the show.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Lozeg" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-axelus-1", + "lineInfo": { + "dialogue": "Wait, is that- Hey, soldier! It's so good to see you!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Axelus" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-narrator-1", + "lineInfo": { + "dialogue": "Hello, to the people of Gavel, glad to see so many here!", + "line": { + "current": 1, + "max": 23 + }, + "npc": "Narrator" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-narrator-2", + "lineInfo": { + "dialogue": "I hope you'll enjoy the play, and that it'll be very educational too. I will be tonight's narrator.", + "line": { + "current": 2, + "max": 23 + }, + "npc": "Narrator" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-babbi-1", + "lineInfo": { + "dialogue": "Pheeeew. I think we outran the villagers.", + "line": { + "current": 3, + "max": 23 + }, + "npc": "Babbi" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-dwarfi-1", + "lineInfo": { + "dialogue": "I think we are safe here in the mountains. Oh look. Shiny ores. This is like a gold mine.", + "line": { + "current": 4, + "max": 23 + }, + "npc": "Dwarfi" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-dwarfi-2", + "lineInfo": { + "dialogue": "These nice minerals are very nice, let us start digging.", + "line": { + "current": 5, + "max": 23 + }, + "npc": "Dwarfi" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-babbi-2", + "lineInfo": { + "dialogue": "What is that?! A DEMON.", + "line": { + "current": 6, + "max": 23 + }, + "npc": "Babbi" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-demon-1", + "lineInfo": { + "dialogue": "I am a dangerous monster and I will not let you mine these diamonds. We are the Doguns, and we will kill you!!", + "line": { + "current": 7, + "max": 23 + }, + "npc": "Demon" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-demon-2", + "lineInfo": { + "dialogue": "Graoaoro. I will eat you all for my afternoon demon luncheon.", + "line": { + "current": 8, + "max": 23 + }, + "npc": "Demon" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-arock-1", + "lineInfo": { + "dialogue": "We must protect ourselves!", + "line": { + "current": 9, + "max": 23 + }, + "npc": "Arock" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-demon-3", + "lineInfo": { + "dialogue": "MOAHAHAHHA! BEGONE TINY DWARVES.", + "line": { + "current": 10, + "max": 23 + }, + "npc": "Demon" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-arock-2", + "lineInfo": { + "dialogue": "Ahhhh. I am dying...dying!", + "line": { + "current": 11, + "max": 23 + }, + "npc": "Arock" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-demon-4", + "lineInfo": { + "dialogue": "MOAHAHAHA. WE WILL KILL ALL OF YOU.", + "line": { + "current": 12, + "max": 23 + }, + "npc": "Demon" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-babbi-3", + "lineInfo": { + "dialogue": "We need to forge better weapons so we can fight back.", + "line": { + "current": 13, + "max": 23 + }, + "npc": "Babbi" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-gagly-1", + "lineInfo": { + "dialogue": "Good idea! We will use our intelligence to slay the demons.", + "line": { + "current": 14, + "max": 23 + }, + "npc": "Gagly" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-demon-5", + "lineInfo": { + "dialogue": "YOU CANNOT BEAT US, WE CAN SUMMON DRAGONS WITH OUR MAGIC.", + "line": { + "current": 15, + "max": 23 + }, + "npc": "Demon" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-gagly-2", + "lineInfo": { + "dialogue": "Dragons are no match for us?? CHARGE!", + "line": { + "current": 16, + "max": 23 + }, + "npc": "Gagly" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-gagly-3", + "lineInfo": { + "dialogue": "We have won. Hooray. And now we have established a great citadel, Rodoroc!", + "line": { + "current": 17, + "max": 23 + }, + "npc": "Gagly" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-gagly-4", + "lineInfo": { + "dialogue": "The dwarven intellect beat the sheer power of the demons magic.", + "line": { + "current": 18, + "max": 23 + }, + "npc": "Gagly" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-narrator-3", + "lineInfo": { + "dialogue": "Thank you all for watching!", + "line": { + "current": 19, + "max": 23 + }, + "npc": "Narrator" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-narrator-4", + "lineInfo": { + "dialogue": "I hope you enjoyed the show, and learned something new today!", + "line": { + "current": 20, + "max": 23 + }, + "npc": "Narrator" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-narrator-5", + "lineInfo": { + "dialogue": "We are continuing the celebration at the old Demon City. Follow the red banners outside Rodoroc to get there.", + "line": { + "current": 21, + "max": 23 + }, + "npc": "Narrator" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-narrator-6", + "lineInfo": { + "dialogue": "Meet you all there!", + "line": { + "current": 22, + "max": 23 + }, + "npc": "Narrator" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-2", + "lineInfo": { + "dialogue": "Ugh, that was horrible.. Like I said before, this war was a genocide. Don't believe any of the lies they try and feed you.", + "line": { + "current": 23, + "max": 23 + }, + "npc": "Axelus" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-axelus-3", + "lineInfo": { + "dialogue": "Ugh, that was awful. Don't believe anything you see here, human. History is written by the victors.", + "line": { + "current": 23, + "max": 23 + }, + "npc": "Axelus" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-marock-1", + "lineInfo": { + "dialogue": "Welcome, one and all! Dwarven brothers and sisters, guests and visitors!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Marock" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-marock-2", + "lineInfo": { + "dialogue": "If I could draw your attention to the wooden stage in the north, we can begin.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Marock" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-marock-3", + "lineInfo": { + "dialogue": "Welcome to the annual festival where we celebrate victory over the foul demons...The Doguns!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Marock" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-marock-4", + "lineInfo": { + "dialogue": "Now, if I can get you to turn around to face the bonfire, we've prepared a lovely firecasting show for you all while we prepare!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Marock" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-mahou-1", + "lineInfo": { + "dialogue": "Wow, I didn’t know Dwarves could learn such magic! Beats the heck out of firecrackers!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mahou" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-marock-5", + "lineInfo": { + "dialogue": "Magnificent! Thank you very much to our fire casters. Now, ladies and gents, your attention to the main stage please!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Marock" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-marock-6", + "lineInfo": { + "dialogue": "For the last 900 years we have captured renegade Doguns that escaped the war, and this year is no exception!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Marock" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-marock-7", + "lineInfo": { + "dialogue": "We shall now entomb the foul demon to join the ranks of the other Doguns on display.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Marock" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-marock-8", + "lineInfo": { + "dialogue": "Bring it out, guards!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Marock" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-marock-9", + "lineInfo": { + "dialogue": "Note its magical might, its aggressive nature, its intense heat, and its fierce appearance.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Marock" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-marock-10", + "lineInfo": { + "dialogue": "All no match for the ingenuity and comeradery of the Dwarven nations!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Marock" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-dogun-1", + "lineInfo": { + "dialogue": "M-Monsters... You all...are the demons here...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dogun" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-axelus-4", + "lineInfo": { + "dialogue": "Every year, every year, every single YEAR you do this. You all need to open your god-blessed eyes for once!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-5", + "lineInfo": { + "dialogue": "Do you all really believe everything they tell you? Do you all just lap it up like dogs?!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-6", + "lineInfo": { + "dialogue": "Our side won the war, but does that really mean we were in the right? I'll tell you right now, it doesn't!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-7", + "lineInfo": { + "dialogue": "We all see it- The Doguns have feelings, family and thoughts, just like anyone else here!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-8", + "lineInfo": { + "dialogue": "You are encasing live Doguns for entertainment. Public execution! This twisted display is more demonic than they ever could dream to be!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-marock-11", + "lineInfo": { + "dialogue": "Guards! Get this propaganda spewing half pint to the Molten Core Prison, north side.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Marock" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-dwarvenguard-1", + "lineInfo": { + "dialogue": "Come along, sir. Let’s not make more of a scene.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dwarven Guard" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-crowd-1", + "lineInfo": { + "dialogue": "Why would Axelus say something so blatantly wrong?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Crowd" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-crowd-2", + "lineInfo": { + "dialogue": "What was he talking about? That was all nonsense!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Crowd" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-crowd-3", + "lineInfo": { + "dialogue": "Are they really taking him to the Molten Core? You've heard the horror stories about there, right?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Crowd" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-crowd-4", + "lineInfo": { + "dialogue": "Well, the expression 'no hope blows from the north' came from there, since it's on the north side...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Crowd" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-marock-12", + "lineInfo": { + "dialogue": "Apologies, all. I shall provide us all with a quick way back to Rodoroc on the floor here. We hope you enjoyed the show, despite the interruption!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Marock" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-axelus-9", + "lineInfo": { + "dialogue": "You came at the right time, soldier. It's good to see you're still interested in what's really going on here..", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-10", + "lineInfo": { + "dialogue": "I've told you this already, but you have to know that it really is true. The Dwarves have been lied to for so long about the war.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-11", + "lineInfo": { + "dialogue": "..But I think it's best if you see it for yourself. Relying on my word alone won't be enough to grasp the full extent of this dilemma.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-12", + "lineInfo": { + "dialogue": "Hopefully I will see you soon, soldier.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Axelus" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-axelus-13", + "lineInfo": { + "dialogue": "I see I got your attention. Interested in the truth.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-14", + "lineInfo": { + "dialogue": "I'm no conspiracy nut. The Dwarves have been lied to for hundreds of years about the war.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-15", + "lineInfo": { + "dialogue": "I have seen the truth. But my word isn't enough, is it? Seeing is believing, after all.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Axelus" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-axelus-16", + "lineInfo": { + "dialogue": "Now do you see? Everything that I told you about when we rescued those flerisi was indeed true...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-17", + "lineInfo": { + "dialogue": "My people are tyrants and conquerors...but they are also good. The people have been brainwashed.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-18", + "lineInfo": { + "dialogue": "Many things are about to happen. If you want to know more, come to house number 81 in Maex. I'll be waiting.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Axelus" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-axelus-19", + "lineInfo": { + "dialogue": "Well, now you have read what I read. The truth...or the lie.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Axelus" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-axelus-20", + "lineInfo": { + "dialogue": "Ah, you made it. Come and meet Korzim.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-korzim-1", + "lineInfo": { + "dialogue": "Welcome...Human. I...am Korzim.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-korzim-2", + "lineInfo": { + "dialogue": "We...are those who...want peace. I am son...of the Dogun Chief... I have...been banished.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-21", + "lineInfo": { + "dialogue": "The coalition is a small group of believers in the truth. The Doguns aren't demons, and the Dwarves aren't all brainwashed.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-22", + "lineInfo": { + "dialogue": "But of course, we have to live in hiding. The Doguns won’t tolerate Dwarves and the Dwarves hunt traitors and \"Demons\".", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-barden-1", + "lineInfo": { + "dialogue": "Right now, we're trying to convince the public. But it's proving difficult, if not impossible.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Barden" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-barden-2", + "lineInfo": { + "dialogue": "It isn't 900 years ago. We have the technology and supply chains to live here peacefully, but they just won't listen!", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Barden" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-korzim-3", + "lineInfo": { + "dialogue": "We have...a plan... To win over...my people...that is.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-23", + "lineInfo": { + "dialogue": "Korzim has told us that dragon bone is sacred to his people. We had to make some connections, but we have a way to get it now.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-24", + "lineInfo": { + "dialogue": "If you want, you could come with us. We can explain more of the situation later. Exit's through the back.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Axelus" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-korzim-4", + "lineInfo": { + "dialogue": "The others...are just up ahead. I'll let you through...our tunnel.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-korzim-5", + "lineInfo": { + "dialogue": "We use...earth and...fire...elements. It is slow...like us...but powerful.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Korzim" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-axelus-25", + "lineInfo": { + "dialogue": "soldier, Over here! Near the skull.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-barden-3", + "lineInfo": { + "dialogue": "We got this drill all the way from Corkus. Axelus had to pay a king's ransom to buy it, but this ought to work!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Barden" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-barden-4", + "lineInfo": { + "dialogue": "AAAAGH! Idiot Corkus swindlers! Damn it all! How many emeralds did we waste?!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Barden" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-barden-5", + "lineInfo": { + "dialogue": "Ugh, do you have any experience with machines? You might have some idea of how in the hell to fix this hunk of junk.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Barden" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-barden-6", + "lineInfo": { + "dialogue": "Fantastic, soldier! We got the bone! Couldn't have done it without you.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Barden" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-26", + "lineInfo": { + "dialogue": "You can take it back to the coalition base. Barden and I will need to pack up before we join you.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-barden-7", + "lineInfo": { + "dialogue": "Just knock on the black block in front of the cave we arrived in.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Barden" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-axelus-27", + "lineInfo": { + "dialogue": "Great, you got back alright.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-28", + "lineInfo": { + "dialogue": "Dragon bone is one of the hardest substances in all the provinces. It's extremely rare.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-29", + "lineInfo": { + "dialogue": "We're going to present this to the Dogun chief as tribute. We need to tidy it up.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-30", + "lineInfo": { + "dialogue": "Could you get [1 Repair Kit] from the eastern part of the base?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Axelus" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-pensr-1", + "lineInfo": { + "dialogue": "Shh. Do you hear that?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "???" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-pensr-2", + "lineInfo": { + "dialogue": "There are voices behind this wall, and the trail ends here.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "???" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-pensr-3", + "lineInfo": { + "dialogue": "We have no vaults here. Must be traitors... The King really wants to see Axelus.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "???" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-pensr-4", + "lineInfo": { + "dialogue": "Stand back! I'll ready the charges...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "???" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-pensr-5", + "lineInfo": { + "dialogue": "Axelus! You are under arrest for high treason!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Pens'r" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-pensr-6", + "lineInfo": { + "dialogue": "The king has sent for you personally.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Pens'r" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-pensr-7", + "lineInfo": { + "dialogue": "If you don't come with us we wi-", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Pens'r" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-pensr-8", + "lineInfo": { + "dialogue": "...oh Lord, this must be why! D-Doguns?!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Pens'r" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-pensr-9", + "lineInfo": { + "dialogue": "He is consorting with the enemy! Axelus, they've tainted your soul!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Pens'r" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-pensr-10", + "lineInfo": { + "dialogue": "Entomb these Doguns, and slay their Dwarven thralls!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Pens'r" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-axelus-31", + "lineInfo": { + "dialogue": "Is everyone okay!?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-32", + "lineInfo": { + "dialogue": "No, no, ignore the repair kit! There's no time to worry about that!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-33", + "lineInfo": { + "dialogue": "Our position has been compromised, they blew our doors wide open! We have to evacuate immediately.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-34", + "lineInfo": { + "dialogue": "We've never been caught like this before, they never knew we really had Doguns on our side.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-35", + "lineInfo": { + "dialogue": "We need to get to safety right now! The least explored area is the Upper Heights.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-36", + "lineInfo": { + "dialogue": "Everyone, out! Now! They won't follow through the rough terrain!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Axelus" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-axelus-37", + "lineInfo": { + "dialogue": "We'll stay around here, we aren't welcome in the village.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-korzim-6", + "lineInfo": { + "dialogue": "But...bring them...the dragon bone...as a gift. If they accept it...they might accept us.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-axelus-38", + "lineInfo": { + "dialogue": "You are free to enter the village but we will stay back and wait until the coast is clear. Keep going.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Axelus" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-plario-1", + "lineInfo": { + "dialogue": "What is...that on the...cliff to the south?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Plario" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-dwarvenscout-1", + "lineInfo": { + "dialogue": "Hey, aren't those...Doguns?! A whole settlement...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Dwarven Scout" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-dwarvenscout-2", + "lineInfo": { + "dialogue": "They've been gathering forces! We must inform Rodoroc immediately!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Dwarven Scout" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-plario-2", + "lineInfo": { + "dialogue": "Human. Come talk to me... Now.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Plario" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart1-plario-3", + "lineInfo": { + "dialogue": "Human... That Dwarf, he saw us...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Plario" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-plario-4", + "lineInfo": { + "dialogue": "They will...destroy us... If he reports...back to Rodoroc.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Plario" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-plario-5", + "lineInfo": { + "dialogue": "We need to...prepare our defenses. We need all the...help we can get.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Plario" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-plario-6", + "lineInfo": { + "dialogue": "Wait... What are...you holding? Dragon bone...? Just what we need...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Plario" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-plario-7", + "lineInfo": { + "dialogue": "Human...if you promise to help us...I will grant you access to...our secret elevators... You can get up and...down the heights with those.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Plario" + } + }, + { + "fileOverride": "dwarvesanddogunspart1-plario-8", + "lineInfo": { + "dialogue": "Please return to...us when you reach level 92. Take this...badge so the...others recognize you...as an ally. One of the elevators is...to the south.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Plario" + } + } + ] + } + } + }, + "Dwarves and Doguns Part II": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-dogunchieftain-1", + "lineInfo": { + "dialogue": "You are so young...to be fighting...a war so old. Still...it is appreciated.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Dogun Chieftain" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-dogunchieftain-2", + "lineInfo": { + "dialogue": "The war...to you, it would be...ages ago. But...when one has lived for...5000 years...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Dogun Chieftain" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-dogunchieftain-3", + "lineInfo": { + "dialogue": "We have...few options. We need to discuss...the few we have...available.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Dogun Chieftain" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-dogunchieftain-4", + "lineInfo": { + "dialogue": "I am sorry...to welcome you all...in such troubled times.", + "line": { + "current": 1, + "max": 16 + }, + "npc": "Dogun Chieftain" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-dogunchieftain-5", + "lineInfo": { + "dialogue": "We thought...we could hide in safety... But there is...no place left to hide.", + "line": { + "current": 2, + "max": 16 + }, + "npc": "Dogun Chieftain" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-dogunchieftain-6", + "lineInfo": { + "dialogue": "Aval...would have us...leave the Heights... But we...would not survive...in large numbers.", + "line": { + "current": 3, + "max": 16 + }, + "npc": "Dogun Chieftain" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-dogunchieftain-7", + "lineInfo": { + "dialogue": "We must...evacuate the settlement...immediately. They...are coming...again.", + "line": { + "current": 4, + "max": 16 + }, + "npc": "Dogun Chieftain" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-1", + "lineInfo": { + "dialogue": "Ouch, I'm sorry... Excuse us!", + "line": { + "current": 5, + "max": 16 + }, + "npc": "???" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-2", + "lineInfo": { + "dialogue": "We heard what happened, Soldier.", + "line": { + "current": 6, + "max": 16 + }, + "npc": "???" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-3", + "lineInfo": { + "dialogue": "Please! You all know me, I'm not with the side of the government. Hear me out, we can fix this!", + "line": { + "current": 7, + "max": 16 + }, + "npc": "???" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-dogunchieftain-8", + "lineInfo": { + "dialogue": "Guards...", + "line": { + "current": 8, + "max": 16 + }, + "npc": "Dogun Chieftain" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-4", + "lineInfo": { + "dialogue": "Stop! I have been hiding from the Dwarves just as much as anyone here, they've been after me too!", + "line": { + "current": 9, + "max": 16 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-dogunchieftain-9", + "lineInfo": { + "dialogue": "Why...would we trust... you...of all Dwarves?", + "line": { + "current": 10, + "max": 16 + }, + "npc": "Dogun Chieftain" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-dogunchieftain-10", + "lineInfo": { + "dialogue": "How...could you even help? They...won't listen to you.", + "line": { + "current": 11, + "max": 16 + }, + "npc": "Dogun Chieftain" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-5", + "lineInfo": { + "dialogue": "I know all the war strategies and weapon cache locations.", + "line": { + "current": 12, + "max": 16 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-dogunchieftain-11", + "lineInfo": { + "dialogue": "Treason...against your own kind...? How will you...manage this?", + "line": { + "current": 13, + "max": 16 + }, + "npc": "Dogun Chieftain" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-6", + "lineInfo": { + "dialogue": "The human and I will sneak into the armoury and sabotage their equipment. Korzim will help you Doguns evacuate someplace safer.", + "line": { + "current": 14, + "max": 16 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-dogunchieftain-12", + "lineInfo": { + "dialogue": "I am...yet wary of you...but we will...follow your plan...Dwarf. Korzim...lead us...to safety.", + "line": { + "current": 15, + "max": 16 + }, + "npc": "Dogun Chieftain" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-7", + "lineInfo": { + "dialogue": "Soldier, follow the southern road from Rodoroc, towards the Sky Islands entrance. I'll be waiting there for you near the armoury.", + "line": { + "current": 16, + "max": 16 + }, + "npc": "Axelus" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-8", + "lineInfo": { + "dialogue": "Shh! Get behind here, and look towards the armoury doors.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-9", + "lineInfo": { + "dialogue": "We need to sneak in when they aren't looking, got it? But we need to be fast.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-10", + "lineInfo": { + "dialogue": "If they close that door, we'll only have one option left, and it's a huge risk. Those Dwarven gates are almost unbreakable.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-rodoroccommander-1", + "lineInfo": { + "dialogue": "Alright boys, let's close this up and head to base B.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Rodoroc Commander" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-11", + "lineInfo": { + "dialogue": "Aaah! Charge them! HEY, STOP RIGHT THERE, SOLDIERS!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Axelus" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-rodoroccommander-2", + "lineInfo": { + "dialogue": "It's the traitor! Capture them, now! There's only one reason they would be near the armoury!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Rodoroc Commander" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-12", + "lineInfo": { + "dialogue": "Is that all of them? We're out of danger, at least, but they still shut the door, damn it!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Axelus" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-13", + "lineInfo": { + "dialogue": "Gah, all that for nothing! You're not too banged up, are you?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-14", + "lineInfo": { + "dialogue": "Well, I said there's another way, but it's not a guarantee. Hurry, follow me.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-15", + "lineInfo": { + "dialogue": "Urgh, damn it. They almost never bother to close this door, and now of all times...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-16", + "lineInfo": { + "dialogue": "There's nothing for it. They'll be sending reinforcements soon, we need a way through here.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-17", + "lineInfo": { + "dialogue": "Those black bricks look breakable...but that won't solve the door, will it?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Axelus" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-18", + "lineInfo": { + "dialogue": "Alright, let's destroy these machines! You see the two cannons?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-19", + "lineInfo": { + "dialogue": "If you use rocks as ammo, you'll destroy the machine it's aiming at, but if you use tnt, it'll selfdestruct. Good luck", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Axelus" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-20", + "lineInfo": { + "dialogue": "Nice work! That will slow them down. We're not done yet, we need to pay the king a visit. Let's head further into Rodoroc.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Axelus" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-21", + "lineInfo": { + "dialogue": "Hurry! Through here, to the power core!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-22", + "lineInfo": { + "dialogue": "This is a geothermal power core. If we can disrupt it, it should slow them down.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-23", + "lineInfo": { + "dialogue": "The hypocrites used Dogun magic to make this... It's lucky, honestly. I know how to work it.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-24", + "lineInfo": { + "dialogue": "...hell, they already rallied?! That's the army!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-25", + "lineInfo": { + "dialogue": "That sounds like an entire battalion!! How did they know I was going after this?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-26", + "lineInfo": { + "dialogue": "Dogun magic is slow! Keep me defended, this'll take awhile!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Axelus" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-27", + "lineInfo": { + "dialogue": "Grr, this is harder than I thought!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Axelus" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-28", + "lineInfo": { + "dialogue": "Ah! Don't let them get too close!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Axelus" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-29", + "lineInfo": { + "dialogue": "Look, look! It's working!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Axelus" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-30", + "lineInfo": { + "dialogue": "I hate that you're having to fight my people, but I wouldn't be asking for help if it weren't needed.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-31", + "lineInfo": { + "dialogue": "Hm...the slums should be behind this wall here. We'll lose them there.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-32", + "lineInfo": { + "dialogue": "The power's down, but...that cannon should do to get us through. You know how to operate it, right?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Axelus" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-33", + "lineInfo": { + "dialogue": "Dwarvern society isn't as great as they make it out to be. The poorest are hidden away.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-34", + "lineInfo": { + "dialogue": "The coalition has helped these people through some hard times, we can trust them.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-35", + "lineInfo": { + "dialogue": "There's a reason I brought us here. The sewer system is connected to the royal palace. All the way to the kings bathroom.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-36", + "lineInfo": { + "dialogue": "We need to find a way to ignite this explosive. Can you take a look around?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Axelus" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-37", + "lineInfo": { + "dialogue": "If we can convince the king that it's not worth the fight, he may back down.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-38", + "lineInfo": { + "dialogue": "I'm a little ashamed to admit I know my way round the sewers by now.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-39", + "lineInfo": { + "dialogue": "You have to understand.. The people truly think the Doguns are evil incarnate. But the king knows better.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Axelus" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-40", + "lineInfo": { + "dialogue": "Don't let the guards catch you. Stay out of sight, got it?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Axelus" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-kingofrodoroc-1", + "lineInfo": { + "dialogue": "I can't say I'm surprised, Axelus. Guards, let them be.", + "line": { + "current": 1, + "max": 11 + }, + "npc": "King of Rodoroc" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-41", + "lineInfo": { + "dialogue": "You know why I'm here, father. We haven't got any more chances to stop this.", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-kingofrodoroc-2", + "lineInfo": { + "dialogue": "Axelus, you know why we have to maintain the lie. Think about the people, how they would react.", + "line": { + "current": 3, + "max": 11 + }, + "npc": "King of Rodoroc" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-42", + "lineInfo": { + "dialogue": "We can not be responsible for the lies of our ancestors! This is ridiculous and you know it!", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-kingofrodoroc-3", + "lineInfo": { + "dialogue": "Axelus, if the people found out, everything would descend to chaos. There would be riots, revolutions!", + "line": { + "current": 5, + "max": 11 + }, + "npc": "King of Rodoroc" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-kingofrodoroc-4", + "lineInfo": { + "dialogue": "If you hadn't turned traitor and gone gallivanting off with the Doguns, you would be in a better position to convince me.", + "line": { + "current": 6, + "max": 11 + }, + "npc": "King of Rodoroc" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-kingofrodoroc-5", + "lineInfo": { + "dialogue": "As it is now, you are too little and too late. The war has already begun.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "King of Rodoroc" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-kingofrodoroc-6", + "lineInfo": { + "dialogue": "The armoury that a certain someone decided to sabotage won't make any difference.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "King of Rodoroc" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-43", + "lineInfo": { + "dialogue": "You will commit genocide so you don't have to face the consequences of your lies?", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-kingofrodoroc-7", + "lineInfo": { + "dialogue": "I will be the hero of our nation, and my name will forever be remembered as the King who brought peace.", + "line": { + "current": 10, + "max": 11 + }, + "npc": "King of Rodoroc" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-kingofrodoroc-8", + "lineInfo": { + "dialogue": "I have nothing left to say to you. See yourselves out behind the throne. I'll let you use the trading tunnel to Thanos in the southern caves, if you just step back and let me handle things.", + "line": { + "current": 11, + "max": 11 + }, + "npc": "King of Rodoroc" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-44", + "lineInfo": { + "dialogue": "I'm not giving up on this. I'm going back in, I know he can be reasoned with!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-45", + "lineInfo": { + "dialogue": "Give this letter to Korzim in the Dogun village when you reach level 93.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart2-axelus-46", + "lineInfo": { + "dialogue": "I'm going to have one last talk with my father.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Axelus" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-47", + "lineInfo": { + "dialogue": "Try to destroy each machine. Stone is used for ammo while tnt will blow up the machine. Good luck!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Axelus" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart2-axelus-48", + "lineInfo": { + "dialogue": "I'll meet you at the end of the slums.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Axelus" + } + } + ] + } + } + }, + "Dwarves and Doguns Part III": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-korzim-1", + "lineInfo": { + "dialogue": "We...have an issue. A dire one... Where is...Axelus at a time...like this?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-2", + "lineInfo": { + "dialogue": "...human... This is a brick.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-3", + "lineInfo": { + "dialogue": "Oh... From Axelus, then...? He could not find...a stone? That...does not bode well.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-4", + "lineInfo": { + "dialogue": "He is trying to...reason with the Dwarven King? There is...no one else...then. You... You will have to...help.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-5", + "lineInfo": { + "dialogue": "The chieftain is...desperate. He has enacted a...terrible plan. They are planning on summoning Garaheth.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-6", + "lineInfo": { + "dialogue": "If they succeed...we all die. Dwarves... Doguns... Possibly even Villagers...and then... Humans as well.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-7", + "lineInfo": { + "dialogue": "Garaheth is a...horrible demon. We used to worship him...thousands of years ago.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-8", + "lineInfo": { + "dialogue": "I only overheard parts... But enough to be certain. They are preparing...to the south. At a disused...ritual site.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-9", + "lineInfo": { + "dialogue": "Meet me there... Do not just attack. We may be able to...resolve it peacefully. I will wait...by the staircase.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Korzim" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-korzim-10", + "lineInfo": { + "dialogue": "Soldier...I take back my statement. They have already begun... There cannot be reasoning.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-11", + "lineInfo": { + "dialogue": "We shall take the east tower... Hide there...and watch.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-12", + "lineInfo": { + "dialogue": "Interrupting...at this point will have...disastrous consequences. We must let them continue...and pray they fail.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Korzim" + }, + "settings": { + "followPlayer": true + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-korzim-13", + "lineInfo": { + "dialogue": "Hoho...! Over here...fine traveler! Join me at the gates!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-14", + "lineInfo": { + "dialogue": "This dwarf voice is...horrible on my throat...but it is an effective disguise...is it not?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-15", + "lineInfo": { + "dialogue": "We are headed to...a blacksmith in town. Follow me...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Korzim" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-edula-1", + "lineInfo": { + "dialogue": "...Korzim...what in the name of all that is holy is that disguise?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Edula" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-edula-2", + "lineInfo": { + "dialogue": "I'm flabbergasted you fooled anyone with that thing! How did you stop the beard from burning?", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Edula" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-edula-3", + "lineInfo": { + "dialogue": "But, erm...more importantly, who's the bucko in the fancy armour there?", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Edula" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-16", + "lineInfo": { + "dialogue": "An ally...of the coalition. No time...Edula. Doguns... summoning... Garaheth.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-edula-4", + "lineInfo": { + "dialogue": "So...so it's really down to that low, then. Burning your own house down to kill the rats.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Edula" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-edula-5", + "lineInfo": { + "dialogue": "Good thing we've got this prepared. One fallout will prevent the next. Soldier, I've got a list of materials we need!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Edula" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-edula-6", + "lineInfo": { + "dialogue": "You will need 10 Fire Webs. The Heatscar Spiders under the town make them, there's a cave right by the entrance arch.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Edula" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-edula-7", + "lineInfo": { + "dialogue": "Then, 3 Magmatic Crystals from the Maex mines. I'd get them myself, but...I'm banned from there since the rubber mallet incident.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Edula" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-edula-8", + "lineInfo": { + "dialogue": "Lastly, 1 Crystallized Lava. The closest source is in the lava lake just outside Maex. There's a protruding crater in the lake.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Edula" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-edula-9", + "lineInfo": { + "dialogue": "Mhm, looks like everything's in order. Now, for a short explanation.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Edula" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-edula-10", + "lineInfo": { + "dialogue": "These materials go into crafting a special charm. It will allow you to resist demon fire.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Edula" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-edula-11", + "lineInfo": { + "dialogue": "We need to account for if they finish the summoning, so this'll help keep you safe if you end up having to square off with Garaheth.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Edula" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-edula-12", + "lineInfo": { + "dialogue": "You will need to craft it yourself, so its magic will bond to you. I've got a station just for it.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Edula" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-edula-13", + "lineInfo": { + "dialogue": "Right-click the crafting table in the back and put it together.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Edula" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-korzim-17", + "lineInfo": { + "dialogue": "We must... visit... Sanba... the enchanter.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Korzim" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-sanba-1", + "lineInfo": { + "dialogue": "Erm...Korzim, what on earth are you doing here? It's not safe for you!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Sanba" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-2", + "lineInfo": { + "dialogue": "Wait, that amulet...oh no, really? Okay, I know what's going on.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Sanba" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-3", + "lineInfo": { + "dialogue": "We're going to need to give this a little extra kick if you're going to use this for what I think you are.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Sanba" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-4", + "lineInfo": { + "dialogue": "A pinch of fire scarab tail, splash of sulphur, exactly three ounces of old brimstone...!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Sanba" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-5", + "lineInfo": { + "dialogue": "Infunde hoc monile, alta intra monte. Magia!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Sanba" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-6", + "lineInfo": { + "dialogue": "Meet me in the back, we can't talk out here. You never know who's listening...", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Sanba" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-sanba-7", + "lineInfo": { + "dialogue": "Supposing you're here to help, Soldier. Garaheth's being summoned if you're getting this...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Sanba" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-8", + "lineInfo": { + "dialogue": "Axelus prepped a contingency plan for this, but having to put it in action is surreal. Let me fill you in.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Sanba" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-9", + "lineInfo": { + "dialogue": "That dragon skeleton lying in the Heights belonged to an Ice Drake. Centuries ago, it was used in the Dogun wars.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Sanba" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-10", + "lineInfo": { + "dialogue": "It had incredibly potent magic, particularly in its icy breath. The area it hit is still frozen to this day, and shows no signs of thaw.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Sanba" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-11", + "lineInfo": { + "dialogue": "According to Axelus' stories, its breath travelled through the tunnels and coalesced someplace deep within...", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Sanba" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-12", + "lineInfo": { + "dialogue": "...becoming True Ice, a potent mixture of sheer cold and magic energy. That's what we will need to combat Garaheth.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Sanba" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-13", + "lineInfo": { + "dialogue": "If you bring me [4 True Ice] I can make a staff capable of harnessing it...and we can freeze Garahath in its tracks.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Sanba" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-14", + "lineInfo": { + "dialogue": "Head north to the Freezing Heights and make your way to the top, now! We've got no time at all!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Sanba" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-korzim-18", + "lineInfo": { + "dialogue": "Soldier... This... This used to be...a Dogun town. The Dwarves rendered it barren.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-19", + "lineInfo": { + "dialogue": "They used the Drake... They chained it up and...forced it to attack. We had to kill it...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-20", + "lineInfo": { + "dialogue": "It...froze my town...as it died. I was there...900 years ago.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-21", + "lineInfo": { + "dialogue": "I know the way... into the caves.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-22", + "lineInfo": { + "dialogue": "The True Ice...is deep inside. I will struggle to...stay warm here.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Korzim" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-korzim-23", + "lineInfo": { + "dialogue": "I will try to run through...as quickly as possible. The ice is...painful.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Korzim" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-korzim-24", + "lineInfo": { + "dialogue": "We must... move fast... or... we will both.... freeze.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Korzim" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-korzim-25", + "lineInfo": { + "dialogue": "Maybe... I am... hotter than... I thought... do you.. hear that?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-26", + "lineInfo": { + "dialogue": "Oh no... I think... It's... COLLAPSING.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-27", + "lineInfo": { + "dialogue": "My... feet are.... solid... Keep... running.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-28", + "lineInfo": { + "dialogue": "This is it... The thing that... Killed my friends... My family... The True Ice.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Korzim" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-sanba-15", + "lineInfo": { + "dialogue": "Impressive, you two. Must have been tough to get that...doubly so for Korzim.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Sanba" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-16", + "lineInfo": { + "dialogue": "Here is the staff, soldier. Keep it safe, and don't you go dying on us.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Sanba" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-17", + "lineInfo": { + "dialogue": "My husband and I will round up the coalition and get them to act now. We need to get going before-", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Sanba" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-18", + "lineInfo": { + "dialogue": "...that's the barracks door. That's the barracks door!!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Sanba" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-maexsoldier-1", + "lineInfo": { + "dialogue": "Men! We have to meet for briefing on the surface, the war is due any hour now! Move faster!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Maex Soldier" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-sanba-19", + "lineInfo": { + "dialogue": "They're already going?! We're out of time! Korzim is waiting for you just upstairs when you reach level 94. Go train! NOW!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Sanba" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-korzim-29", + "lineInfo": { + "dialogue": "The crystal formation... It is definitely here.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-30", + "lineInfo": { + "dialogue": "I will clear the lava... On my signal, move. And do not stop.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart3-korzim-31", + "lineInfo": { + "dialogue": "Move! Move! MOVE!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Korzim" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart3-korzim-32", + "lineInfo": { + "dialogue": "Oh no... We got... Trapped.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Korzim" + } + } + ] + } + } + }, + "Dwarves and Doguns Part IV": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart4-korzim-1", + "lineInfo": { + "dialogue": "Soldier... Do you have...the staff? And the amulet...?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-korzim-2", + "lineInfo": { + "dialogue": "The war is starting... and Axelus... He has not returned.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-korzim-3", + "lineInfo": { + "dialogue": "We can not go... Not without him. Find him... And bring him to the... Dogun village.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-korzim-4", + "lineInfo": { + "dialogue": "I can not leave. The guard...it is on high alert. He was last at Rodoroc...yes?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Korzim" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart4-soldier-1", + "lineInfo": { + "dialogue": "The first group has already started their climb, let's hurry.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Soldier" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart4-rodoroccitizen-1", + "lineInfo": { + "dialogue": "Hey! Everyone, the king has someone in the cage! It's been years since we used it!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Rodoroc Citizen" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-rodoroccitizen-2", + "lineInfo": { + "dialogue": "Wait, that's Axelus up there!! The king locked up his son?! What in the world?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Rodoroc Citizen" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-rodoroccitizen-3", + "lineInfo": { + "dialogue": "I heard he was consorting with demons, but that can't possibly be true, can it?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Rodoroc Citizen" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-1", + "lineInfo": { + "dialogue": "For the last time, they are not demons!! Gods, I've been telling you this whole time! Not even my father will listen to reason!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-2", + "lineInfo": { + "dialogue": "If I don't get freed we're doomed, you hear me?! We won't survive another war! As your prince I demand to be freed!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-3", + "lineInfo": { + "dialogue": "Listen, the statues are climbable and there's a control panel for the lava siphons near them! Now help me so we all don't die!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Axelus" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart4-rodoroccitizen-4", + "lineInfo": { + "dialogue": "Wait, that human just defaced the hero's monument!! Are they working with the demons too?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Rodoroc Citizen" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-4", + "lineInfo": { + "dialogue": "Soldier! I didn't think you'd be back, but we need to leave, now! Meet me outside!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Axelus" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart4-axelus-5", + "lineInfo": { + "dialogue": "Soldier! Over here, to the right! By the cannon! I'm commandeering this thing.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-6", + "lineInfo": { + "dialogue": "We need to get up to the Doguns before the Dwarves begin their assault, or before the Doguns take their last resort.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-7", + "lineInfo": { + "dialogue": "Get in the cannon, now! You've got your armour, you might end up charred and covered in soot but you'll be fine!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Axelus" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart4-axelus-8", + "lineInfo": { + "dialogue": "Don't tell anyone we shot ourselves out of a cannon, I'll never live it down. Now come on, to the Dogun village, hurry!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-9", + "lineInfo": { + "dialogue": "If the Doguns are taking their last resort and summoning Garaheth, then we've got two sides to stop at once...basically, the odds are astronomically against us.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-10", + "lineInfo": { + "dialogue": "That means you do what you need to do, no matter what. Understood? If we can stop this madness then the casualties won't have died for nothing! Now move!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Axelus" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart4-axelus-11", + "lineInfo": { + "dialogue": "WAIT, STOP THE-", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-dogunchieftain-1", + "lineInfo": { + "dialogue": "Quiet. Dwarven whelp...you have failed... We will not go quietly. AWAKEN.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Dogun Chieftain" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart4-axelus-12", + "lineInfo": { + "dialogue": "I can't believe this... That bone was part of the ritual?! Agh, how could we have been so STUPID! You're all lucky we prepared for this!!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-13", + "lineInfo": { + "dialogue": "You need to get inside him. He's still chained! The amulet will protect you from the heat! Freeze him from the inside out!!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Axelus" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart4-axelus-14", + "lineInfo": { + "dialogue": "EVERYONE, STOP THIS! RIGHT NOW!! IT'S OVER!!", + "line": { + "current": 1, + "max": 26 + }, + "npc": "Axelus" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-15", + "lineInfo": { + "dialogue": "Open your eyes for once in your lives!! You see that?! Behind me! THAT was going to be the end result!", + "line": { + "current": 2, + "max": 26 + }, + "npc": "Axelus" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-16", + "lineInfo": { + "dialogue": "Garaheth would have killed every one of us, damn it! Are you that short-sighted that you can't see this?!", + "line": { + "current": 3, + "max": 26 + }, + "npc": "Axelus" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-17", + "lineInfo": { + "dialogue": "Everyone here is to blame, except the human who helped stop this! The Doguns were already exiled, they wouldn't have hurt anyone!", + "line": { + "current": 4, + "max": 26 + }, + "npc": "Axelus" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-18", + "lineInfo": { + "dialogue": "But we couldn't just let ANYTHING be! You always need more glory, more, more, MORE! Don't you, Draani? I'm ashamed to be your lineage!", + "line": { + "current": 5, + "max": 26 + }, + "npc": "Axelus" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-19", + "lineInfo": { + "dialogue": "And you, Doguns! I...I pitied you. You were wronged, but you resort to this? You'd doom the world over to spite the Dwarves? Is that it?!", + "line": { + "current": 6, + "max": 26 + }, + "npc": "Axelus" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-dogunchieftain-2", + "lineInfo": { + "dialogue": "Whelp. You do not understand. To be persecuted...and see your people tortured...hunted.", + "line": { + "current": 7, + "max": 26 + }, + "npc": "Dogun Chieftain" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-dwarvencommander-1", + "lineInfo": { + "dialogue": "You all deserve it! You attacked our ancestors for sport! Eye for an eye, have you heard of it? It's only fair!", + "line": { + "current": 8, + "max": 26 + }, + "npc": "Dwarven Commander" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-dogunchieftain-3", + "lineInfo": { + "dialogue": "Imbeciles...your stories are not true. We... We lived through the war. You took everything...and suffered none.", + "line": { + "current": 9, + "max": 26 + }, + "npc": "Dogun Chieftain" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-20", + "lineInfo": { + "dialogue": "I've been trying to tell BOTH of you that the monarchy has been spreading lies for centuries! One bad king doesn't mean the whole species is a loss!", + "line": { + "current": 10, + "max": 26 + }, + "npc": "Axelus" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-dogunchieftain-4", + "lineInfo": { + "dialogue": "Shut your mouth. Even now...you trample on the bones of our god... You have taken everything from us...", + "line": { + "current": 11, + "max": 26 + }, + "npc": "Dogun Chieftain" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart4-dogunchieftain-5", + "lineInfo": { + "dialogue": "This earth is stained by you. We...we shall burn you...and scatter your ash to the wind!", + "line": { + "current": 13, + "max": 26 + }, + "npc": "Dogun Chieftain" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-21", + "lineInfo": { + "dialogue": "DON'T YOU DARE! STOP, RIGHT NOW!", + "line": { + "current": 14, + "max": 26 + }, + "npc": "Axelus" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-korzim-5", + "lineInfo": { + "dialogue": "Axelus!", + "line": { + "current": 15, + "max": 26 + }, + "npc": "Korzim" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-korzim-6", + "lineInfo": { + "dialogue": "...he...", + "line": { + "current": 16, + "max": 26 + }, + "npc": "Korzim" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart4-dogunchieftain-6", + "lineInfo": { + "dialogue": "I...", + "line": { + "current": 18, + "max": 26 + }, + "npc": "Dogun Chieftain" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart4-korzim-7", + "lineInfo": { + "dialogue": "You would... You would kill a savior...?", + "line": { + "current": 17, + "max": 26 + }, + "npc": "Korzim" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart4-kingofrodoroc-1", + "lineInfo": { + "dialogue": "No, no! No no no, this can't be happening! H-Hang on, we'll save you, I...I'll do something, I...", + "line": { + "current": 19, + "max": 26 + }, + "npc": "King of Rodoroc" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-kingofrodoroc-2", + "lineInfo": { + "dialogue": "Y-You DEMONS! MONSTERS! I'll avenge you, Axelus, j-just give me time-", + "line": { + "current": 20, + "max": 26 + }, + "npc": "King of Rodoroc" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-22", + "lineInfo": { + "dialogue": "AGH, SHUT UP! SHUT...ack... Q-Quiet. Listen to one damn word from my mouth, Draani... For once in your miserable life.", + "line": { + "current": 21, + "max": 26 + }, + "npc": "Axelus" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-axelus-23", + "lineInfo": { + "dialogue": "Tell. The. TRUTH!! G-gaagh...you know that's th...the only way to stop this. Swallow your pride, you...old fool...", + "line": { + "current": 22, + "max": 26 + }, + "npc": "Axelus" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-kingofrodoroc-3", + "lineInfo": { + "dialogue": "I...I... Axelus... He...he called me Draani...why did...?", + "line": { + "current": 23, + "max": 26 + }, + "npc": "King of Rodoroc" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-kingofrodoroc-4", + "lineInfo": { + "dialogue": "Men, stand down. This... This war is over! I will not have one more life lost! Touch the Doguns and I'll personally behead you!", + "line": { + "current": 24, + "max": 26 + }, + "npc": "King of Rodoroc" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "dwarvesanddogunspart4-kingofrodoroc-5", + "lineInfo": { + "dialogue": "Chief, I...I ask of you but an hour of your time. If you are willing to negotiate...", + "line": { + "current": 25, + "max": 26 + }, + "npc": "King of Rodoroc" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "dwarvesanddogunspart4-kingofrodoroc-6", + "lineInfo": { + "dialogue": "Ah, you've arrived. I...actually remember you from earlier. So you and...", + "line": { + "current": 1, + "max": 11 + }, + "npc": "King of Rodoroc" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-kingofrodoroc-7", + "lineInfo": { + "dialogue": "A-and...", + "line": { + "current": 2, + "max": 11 + }, + "npc": "King of Rodoroc" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-kingofrodoroc-8", + "lineInfo": { + "dialogue": "...you knew my son. Were helping him try to put an end to this, before everything was too far gone. Heh...apologies, for that.", + "line": { + "current": 3, + "max": 11 + }, + "npc": "King of Rodoroc" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-kingofrodoroc-9", + "lineInfo": { + "dialogue": "Paku and I have had a long discussion about the wisdom of youth over the old. You all were right. I needed to swallow my pride.", + "line": { + "current": 4, + "max": 11 + }, + "npc": "King of Rodoroc" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-dogunchieftain-7", + "lineInfo": { + "dialogue": "We agreed upon a peace treaty... A new city... The Dwarves will aid us in building it.", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Dogun Chieftain" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-dogunchieftain-8", + "lineInfo": { + "dialogue": "All hostilities...will end. My people will...be free to roam the caverns. It has been...too long.", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Dogun Chieftain" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-kingofrodoroc-10", + "lineInfo": { + "dialogue": "And the entombed Doguns at Courag will be reconstituted, as well, supposing that is a possibility.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "King of Rodoroc" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-kingofrodoroc-11", + "lineInfo": { + "dialogue": "Every king, since my so-far-great grandfather, Draani Thunderwill, has battled with their morality over the lies told to my people.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "King of Rodoroc" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-kingofrodoroc-12", + "lineInfo": { + "dialogue": "It ends here, with the name Draani VIII. It will take time, but the bloodshed has proven things must begin to change now.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "King of Rodoroc" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-kingofrodoroc-13", + "lineInfo": { + "dialogue": "You and the coalition have saved the Heights, and Gavel. In Maex, you will find a stall to trade valuable minerals. You will be granted special Dwarven privileges to purchase it now.", + "line": { + "current": 10, + "max": 11 + }, + "npc": "King of Rodoroc" + } + }, + { + "fileOverride": "dwarvesanddogunspart4-kingofrodoroc-14", + "lineInfo": { + "dialogue": "Though that is...almost certainly not enough a reward for everything you have done...sincerely. Thank you, Wynn soldier.", + "line": { + "current": 11, + "max": 11 + }, + "npc": "King of Rodoroc" + } + } + ] + } + } + }, + "Dwelling Walls": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "dwellingwalls-leucsaa-1", + "lineInfo": { + "dialogue": "Let's see here... mother's old vase… check!", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Leucsaa" + } + }, + { + "fileOverride": "dwellingwalls-leucsaa-2", + "lineInfo": { + "dialogue": "Dining room table... got it here, check!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Leucsaa" + } + }, + { + "fileOverride": "dwellingwalls-leucsaa-3", + "lineInfo": { + "dialogue": "Finally, the journal. It's out here somewhere, I assume. I'll look around.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Leucsaa" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "dwellingwalls-leucsaa-4", + "lineInfo": { + "dialogue": "Hold on, what? The journal! I must have forgotten it inside the mansion!", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Leucsaa" + } + }, + { + "fileOverride": "dwellingwalls-leucsaa-5", + "lineInfo": { + "dialogue": "You there! Would you mind doing me a deed?", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Leucsaa" + } + }, + { + "fileOverride": "dwellingwalls-leucsaa-6", + "lineInfo": { + "dialogue": "I left a very precious journal inside of this mansion, a hell within walls. It was my great grandfather's!", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Leucsaa" + } + }, + { + "fileOverride": "dwellingwalls-leucsaa-7", + "lineInfo": { + "dialogue": "The mansion was designed by a Corkian architect, and I was scammed into buying it.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Leucsaa" + } + }, + { + "fileOverride": "dwellingwalls-leucsaa-8", + "lineInfo": { + "dialogue": "If you step inside the mansion just for a few moments, you'll understand why the sellers had to trick someone into investing in their god forsaken real estate!", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Leucsaa" + } + }, + { + "fileOverride": "dwellingwalls-leucsaa-9", + "lineInfo": { + "dialogue": "Navigating from room to room is nearly impossible, the rooms move around. I've only been in the mansion for a week and I'm already packing my bags and moving to Detlas.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Leucsaa" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "dwellingwalls-leucsaa-10", + "lineInfo": { + "dialogue": "The journal! You outsmarted the mansion!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Leucsaa" + } + }, + { + "fileOverride": "dwellingwalls-leucsaa-11", + "lineInfo": { + "dialogue": "I must thank you, that journal was priceless to my family.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Leucsaa" + } + }, + { + "fileOverride": "dwellingwalls-leucsaa-12", + "lineInfo": { + "dialogue": "Let this be a life lesson to you. Never buy a house from a Corkian architect.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Leucsaa" + } + } + ] + } + } + }, + "Elemental Exercise": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "elementalexercise-captainragon-1", + "lineInfo": { + "dialogue": "Ah, hello. Welcome to the Detlas Barracks! Feel free to look around, but do try not to distract the soldiers.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Ragon" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "elementalexercise-captainragon-2", + "lineInfo": { + "dialogue": "Ah! You must be one of the new recruits the Admiral told me to look out for! What was it... soldier, yes?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-captainragon-3", + "lineInfo": { + "dialogue": "You've done well to reach this city as quickly as you have, which must have required a great deal of fighting the undead.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-captainragon-4", + "lineInfo": { + "dialogue": "But the fact still stands that you lack experience. You can certainly fight, yes, but can you fight well?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-captainragon-5", + "lineInfo": { + "dialogue": "Lucky for you, that's where I come in. You're just in time for today's training session! Come here, follow me.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Captain Ragon" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "elementalexercise-captainragon-6", + "lineInfo": { + "dialogue": "Now, I've heard from Sergeant Van of your aid in his assault on our overtaken fort- which, good work, very well done...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Captain Ragon" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "elementalexercise-tasim-1", + "lineInfo": { + "dialogue": "Oh, hello soldier. Are you here for training as well? I've been honing my skills against these dummies, so that when we face corrupteds, I'll be ready!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "elementalexercise-tasim-2", + "lineInfo": { + "dialogue": "...Oh! soldier, hello. Are you here for training as well?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-captainragon-7", + "lineInfo": { + "dialogue": "Ahem. Now, in front of you, you'll see five special training dummies. Each one finely imbued with elemental magic. You are aware of the elements, yes? There's five of them in total.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-tasim-3", + "lineInfo": { + "dialogue": "I am! The elements are... ✹ Fire, ❋ Air, ✤ Earth, ✦ Thunder, and... ❉ Water?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-captainragon-8", + "lineInfo": { + "dialogue": "That's right. And generally speaking, they're strong against each other in that order- ✹ Fire beats ❋ Air, ❋ Air beats ✤ Earth, and so on.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-captainragon-9", + "lineInfo": { + "dialogue": "Elemental weaknesses may vary based on the enemy, but that order holds true in most cases.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-captainragon-10", + "lineInfo": { + "dialogue": "Enemies will take more damage from elements they're weak to, and take less damage from elements they resist. This change to your damage is always a flat value, and it varies from enemy to enemy.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-captainragon-11", + "lineInfo": { + "dialogue": "Now. For training purposes, you'll be given an elemental weapon to try out on these training dummies. Take note of how each elemental defense and weakness affects your damage dealt. Speak to me once you feel you understand the concept.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Captain Ragon" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "elementalexercise-captainragon-12", + "lineInfo": { + "dialogue": "Well? Have you noted the effect of elemental defenses and weaknesses on your damage?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Ragon" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "elementalexercise-captainragon-13", + "lineInfo": { + "dialogue": "Go on, then. Just speak to me when you're ready to move on.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Ragon" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "elementalexercise-tasim-4", + "lineInfo": { + "dialogue": "Hm... So if I attack this one, I'll deal more ❋ Air and less ✤ Earth...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-tasim-5", + "lineInfo": { + "dialogue": "Oh, hello. Don't mind me, I'm just trying to wrap my head around this all.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "elementalexercise-captainragon-14", + "lineInfo": { + "dialogue": "Excellent. I'll take those training weapons back from the two of you. Any questions?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-tasim-6", + "lineInfo": { + "dialogue": "I do have one. If our enemies are susceptible to the elements in this way, would that also apply to us?", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-captainragon-15", + "lineInfo": { + "dialogue": "Ah, yes. A fine observation. Indeed, you are also bound to the rules of the elements. Elemental defenses and weaknesses from your equipment will affect you in the very same way.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-captainragon-16", + "lineInfo": { + "dialogue": "One final note before we move on from the elements- your weapon may not always be as effective against an enemy as you would like.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-captainragon-17", + "lineInfo": { + "dialogue": "However, you have another tool at your disposal in the form of your spells! Different spells will deal different elemental damage, even if your weapon does not use that element by default.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-tasim-7", + "lineInfo": { + "dialogue": "...Oh! So my Bash spell will still deal ✤ Earth damage even if my weapon only uses ❉ Water, right?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-captainragon-18", + "lineInfo": { + "dialogue": "Correct! Now, let's see... We have the two of you here. Why don't we have a friendly duel? A chance to test your battle skills in a safe environment.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-tasim-8", + "lineInfo": { + "dialogue": "That sounds good to me! soldier, we've been traveling together for some time now... I can't say I haven't been curious to see how you fight. Let's see who comes out on top, shall we?", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-tasim-9", + "lineInfo": { + "dialogue": "Alright. I'll be waiting here when you're ready!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Tasim" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "elementalexercise-tasim-10", + "lineInfo": { + "dialogue": "Alright! Let's do this!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Tasim" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "elementalexercise-tasim-11", + "lineInfo": { + "dialogue": "There you are! Are you ready for our duel?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-tasim-12", + "lineInfo": { + "dialogue": "Alright. I'll be waiting!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "elementalexercise-tasim-13", + "lineInfo": { + "dialogue": "Alright! Let's see which of us is the better fighter!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "elementalexercise-tasim-14", + "lineInfo": { + "dialogue": "Phew! That was a good fight. You did well, soldier. We'll have to do this again- and maybe we can get Aledar to join!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-captainragon-19", + "lineInfo": { + "dialogue": "Yes, yes, fine work, the two of you. Now-", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-scoutevelyn-1", + "lineInfo": { + "dialogue": "Captain! Captain Ragon! There's- there's corrupted forces! Advancing from Ancient Nemract!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Scout Evelyn" + } + }, + { + "fileOverride": "elementalexercise-captainragon-20", + "lineInfo": { + "dialogue": "Hm. And the Admiral is away... Very well. Mobilize the troops! We meet the forces at the north gate!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-tasim-15", + "lineInfo": { + "dialogue": "Captain- we're capable fighters too. Let us come along and help fight off these undead!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-captainragon-21", + "lineInfo": { + "dialogue": "Hm... As I see it, this is a fine opportunity for you to gain some firsthand experience! Very well. Prepare yourselves, and come to Detlas' north gate when you're ready.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-tasim-16", + "lineInfo": { + "dialogue": "This is exciting! But... I'm a little bit nervous, still.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-tasim-17", + "lineInfo": { + "dialogue": "... We'll be alright. Come on, let's go follow the Captain.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Tasim" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "elementalexercise-tasim-18", + "lineInfo": { + "dialogue": "Come on, let's get going towards the north gate.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "elementalexercise-tasim-19", + "lineInfo": { + "dialogue": "Do you need to prepare more? That's fine- I'll be waiting for you at the north gate!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "elementalexercise-captainragon-22", + "lineInfo": { + "dialogue": "There you are! Ready for battle?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Ragon" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "elementalexercise-captainragon-23", + "lineInfo": { + "dialogue": "I understand. We have time until the corrupted forces arrive, so go prepare. Don't take too long, though.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Ragon" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "elementalexercise-tasim-20", + "lineInfo": { + "dialogue": "I'm prepared as well. These corrupted won't stand a chance against us!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-captainragon-24", + "lineInfo": { + "dialogue": "Yes, yes, very good. Now, it shouldn't be long until-", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-scoutevelyn-2", + "lineInfo": { + "dialogue": "Captain! They're here!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Scout Evelyn" + } + }, + { + "fileOverride": "elementalexercise-captainragon-25", + "lineInfo": { + "dialogue": "Hm... Take note of the leader. I expect if we can defeat it, the rest of the forces will disperse.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Captain Ragon" + }, + "settings": { + "falloff": 50 + } + }, + { + "fileOverride": "elementalexercise-captainragon-26", + "lineInfo": { + "dialogue": "Stronger foes such as this one will cast spells one after the other, in a specific order. These spell combos can be dangerous, so make sure to take note of them.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Captain Ragon" + }, + "settings": { + "falloff": 50 + } + }, + { + "fileOverride": "elementalexercise-captainragon-27", + "lineInfo": { + "dialogue": "We'll be fighting all around you, so shout if you're in need of aid. Alright, soldiers, let's defend our city!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-tasim-21", + "lineInfo": { + "dialogue": "Alright soldier, let's do this!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Tasim" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "elementalexercise-captainragon-28", + "lineInfo": { + "dialogue": "Ah, so this leader is a summoner as well! You'll need to take out its forces for it to return to the fight!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Captain Ragon" + }, + "settings": { + "falloff": 60 + } + }, + { + "fileOverride": "elementalexercise-tasim-22", + "lineInfo": { + "dialogue": "That's nothing we can't handle! Let's keep at it, soldier!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + }, + "settings": { + "falloff": 60 + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "elementalexercise-tasim-23", + "lineInfo": { + "dialogue": "There's more of them on the way! Keep fighting!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + }, + "settings": { + "falloff": 60 + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "elementalexercise-tasim-24", + "lineInfo": { + "dialogue": "I think this'll be the last of them. Then we just need to take out the captain!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + }, + "settings": { + "falloff": 60 + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "elementalexercise-captainragon-29", + "lineInfo": { + "dialogue": "You're doing great, both of you! Keep your focus on the enemy- sometimes, you'll encounter foes which change their tactics mid-battle!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Captain Ragon" + }, + "settings": { + "falloff": 60 + } + }, + { + "fileOverride": "elementalexercise-captainragon-30", + "lineInfo": { + "dialogue": "Some may even have very powerful spell combos they rarely bring out! I expect this one will be no exception. The battle is nearly won, keep fighting!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Captain Ragon" + }, + "settings": { + "falloff": 60 + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "elementalexercise-captainragon-31", + "lineInfo": { + "dialogue": "The leader has been slain! Take out the stragglers, soldiers! The battle has been won!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Captain Ragon" + }, + "settings": { + "falloff": 70 + } + }, + { + "fileOverride": "elementalexercise-captainragon-32", + "lineInfo": { + "dialogue": "We've been seeing more attacks from Ancient Nemract recently... good grief, when will that Graken do his job and sort it out?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-captainragon-33", + "lineInfo": { + "dialogue": "Hmph. Well, regardless, the two of you fought well! The training seems to have paid off.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-tasim-25", + "lineInfo": { + "dialogue": "Thank you, sir! That captain was a tough foe, but it was nothing we couldn't handle... right, soldier?", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-captainragon-34", + "lineInfo": { + "dialogue": "Hm... Let us return to the barracks. I'll have to speak to the Admiral when he returns, and I'd like for the two of you to be present.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-tasim-26", + "lineInfo": { + "dialogue": "He wants us to be there for a meeting with the Admiral...? Huh. What do you think that could be about?", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-tasim-27", + "lineInfo": { + "dialogue": "... Hopefully it's not anything bad. He did seem to approve of our combat prowess, but-... Nevermind. We should get going.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Tasim" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "elementalexercise-captainragon-35", + "lineInfo": { + "dialogue": "Ah, there you two are. Come here.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-tasim-28", + "lineInfo": { + "dialogue": "Oh, Admiral! You're back already?", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-admiralaegis-1", + "lineInfo": { + "dialogue": "Yes, my absence was never meant to take long. I was paying a visit to the desert city of Almuj, for a meeting with an Admiral Amerigo...", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "elementalexercise-admiralaegis-2", + "lineInfo": { + "dialogue": "But I digress. I've been told the two of you were essential in the defense of our city! Excellent work.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "elementalexercise-admiralaegis-3", + "lineInfo": { + "dialogue": "Our preparations for the assault on Nivla Woods' spider den are nearing completion. I'd like the two of you to join that mission.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "elementalexercise-tasim-29", + "lineInfo": { + "dialogue": "Sir- are you certain? I mean, we'd be happy to join, but surely there are many others more worthy of such a task.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-admiralaegis-4", + "lineInfo": { + "dialogue": "Nonsense! Captain Ragon has assessed your skills, and has deemed them sufficient. And I trust the Captain's judgement.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "elementalexercise-admiralaegis-5", + "lineInfo": { + "dialogue": "Now, I must be off. I'll see the two of you when it's time for the mission.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "elementalexercise-tasim-30", + "lineInfo": { + "dialogue": "A big mission to take out the spiders, huh... You know, even though I'm a little worried, I think I'm excited.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-captainragon-36", + "lineInfo": { + "dialogue": "Ahem. Before you return to your business, I have something for the two of you. Payment for your work today, and a special piece of equipment. Make good use of it.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Captain Ragon" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "elementalexercise-captainragon-37", + "lineInfo": { + "dialogue": "Hm. Come looking for more training, have you? I'm afraid the next training session isn't for some time.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-captainragon-38", + "lineInfo": { + "dialogue": "If you'd like some more advice for combat, though, you could always speak to the soldiers down in the training room.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Captain Ragon" + } + }, + { + "fileOverride": "elementalexercise-captainragon-39", + "lineInfo": { + "dialogue": "They're honing their skills, and they'll gladly share some tips if you ask them.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Captain Ragon" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "elementalexercise-tasim-31", + "lineInfo": { + "dialogue": "soldier, hello! Don't mind me, I'm just... waiting.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-tasim-32", + "lineInfo": { + "dialogue": "Aledar said he'd come do some training with me, but it turns out he has a whole mission he needs to take care of first.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "elementalexercise-tasim-33", + "lineInfo": { + "dialogue": "...Maybe you could help him? You should speak to Aledar if you're interested.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Tasim" + } + } + ] + } + } + }, + "Enter the Dojo": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-1", + "lineInfo": { + "dialogue": "Oh hohoho! So a human has found their way to my humble dojo? Intriguing! However, I could not ask you to attempt my training til you were level 89.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-2", + "lineInfo": { + "dialogue": "Oh hohoho! So a human has found their way to my humble dojo? Intriguing! I am called Sensei Miyagi. I welcome you.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-3", + "lineInfo": { + "dialogue": "This dojo, I have dedicated to honing skills in all of the arts- from martial prowess and mental acuity, to craftsmanship and artistry.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-4", + "lineInfo": { + "dialogue": "Many have come- traveled from all corners of the earth to this humble one's dojo to train themselves and grow stronger. I am to presume you are the same?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-5", + "lineInfo": { + "dialogue": "Although, while I have enjoyed my life's work here, I cannot deny I am getting on in years. I seek a successor, a master of many skills to take my place.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-6", + "lineInfo": { + "dialogue": "To the one who should master the arts, I would bequeath The Master’s Gi, a symbol of resolute skill. Of course, do not feel pressured to take over for me, hoho!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-7", + "lineInfo": { + "dialogue": "As long as I may teach others and bring them to new heights, I am satisfied. Whether your aim be merely to sharpen your skills or to allow me to retire, you are welcomed.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-8", + "lineInfo": { + "dialogue": "When you are ready to begin, purify yourself in the waters of the spring behind the dojo, and I will guide you to your first challenge.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-9", + "lineInfo": { + "dialogue": "Whenever you are ready to begin, purify yourself in the waters of the spring behind the dojo.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "enterthedojo-challengerapprentice-1", + "lineInfo": { + "dialogue": "I have been training for years, mastering all of Sensei Miyagi's challenges but one... the physical strength challenge defeats me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Challenger Apprentice" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "enterthedojo-challengerapprentice-2", + "lineInfo": { + "dialogue": "I trained for years hoping to achieve the Master's Gi chestplate. All of Sensei Miyagi's challenges come easy for me except for the sight challenge!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Challenger Apprentice" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "enterthedojo-challengerapprentice-3", + "lineInfo": { + "dialogue": "All of Sensei Miyagi's challenges come as a walk in the park for me, except the abstract tranquility challenge. I one day hope to conquer it and gain the Master's Gi.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Challenger Apprentice" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "enterthedojo-challengerapprentice-4", + "lineInfo": { + "dialogue": "Alas, after all my training, I can not muster the power to conquer Sensei Miyagi's combat challenge... it is the only challenge that defeats me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Challenger Apprentice" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "enterthedojo-challengerapprentice-5", + "lineInfo": { + "dialogue": "I see you have mustered the power to defeat all four challenges. You have my utmost respect.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Challenger Apprentice" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "enterthedojo-challengerapprentice-6", + "lineInfo": { + "dialogue": "I congratulate you my friend on your success in the challenges, but the real reward in this situation is the experience, not the physical reward!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Challenger Apprentice" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "enterthedojo-challengerapprentice-7", + "lineInfo": { + "dialogue": "I congratulate you on your recent success regarding the four challenges. I envy you and your success.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Challenger Apprentice" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-10", + "lineInfo": { + "dialogue": "Here we are then- The ⓛⓤⓕⓐⓡ Room. Here tests your agility! Even these old bones can scale this room in short order- How shall you fare?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sensei Miyagi" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "12": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-11", + "lineInfo": { + "dialogue": "I recognize your skill, and you have passed the challenge of the ⓛⓤⓕⓐⓡ Room! Hoho, but the next challenge has defeated many an apprentice.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-12", + "lineInfo": { + "dialogue": "Now, comes the ⓕⓘⓐⓣⓐ Room! Here, your combat prowess shall be put to the test. Martial skill comes easily to me...but what of your own?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-13", + "lineInfo": { + "dialogue": "I hear many things about human combat skill, so I believe I shall watch this challenge myself. Enter now, challenger!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-14", + "lineInfo": { + "dialogue": "Defeat the dummies, and bring their tokens to the door! Simple, yes?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-15", + "lineInfo": { + "dialogue": "Show no fear, challenger! There is no shame in failing.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-16", + "lineInfo": { + "dialogue": "And worry not, the ⓕⓘⓐⓣⓐ Room is reinforced against all manner of attacks. Run wild, hoho!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-17", + "lineInfo": { + "dialogue": "It is fascinating to see how you battle. Very different from my stylings!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-18", + "lineInfo": { + "dialogue": "And I am to recognize your combat skill, and proclaim your passage of the ⓕⓘⓐⓣⓐ Room. Well done!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-19", + "lineInfo": { + "dialogue": "Next, however, is not a challenge of physical skill, but of observation and logical reasoning, in this- the ⓒⓛⓘⓢⓣⓔ Room. Here, a puzzle awaits.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-20", + "lineInfo": { + "dialogue": "You must discern the path in order to bring the red block to the gold block. Simple in theory...complex in practice, as are many things.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-21", + "lineInfo": { + "dialogue": "Remember this as you work- Change your perspective, and the reality changes.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-22", + "lineInfo": { + "dialogue": "And there, I recognize your mental acuity! You have passed the ⓒⓛⓘⓢⓣⓔ Room. You are doing quite well, but many have gotten to this point and had a single point stymie them.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-23", + "lineInfo": { + "dialogue": "Welcome then, to the last challenge I offer you, held within the ⓢⓘⓣⓗⓔⓐⓒⓗ Room and cavern.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-24", + "lineInfo": { + "dialogue": "Your task here, is to become tranquil, and at peace with nature. What that entails... I leave up to you.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-25", + "lineInfo": { + "dialogue": "There are many paths to tranquility. Whatever you choose, you will know when you have reached the point of success.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-26", + "lineInfo": { + "dialogue": "I see it now. The troubled heart you came here with is troubled no longer. I recognize your mastery of the ⓢⓘⓣⓗⓔⓐⓒⓗ Room.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-27", + "lineInfo": { + "dialogue": "Oh hoho... It is just like a human to do what cannot be done. That is each challenge of my humble dojo, completed!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-28", + "lineInfo": { + "dialogue": "So! While I did advise you not to feel pressured of it, I am curious, young master. Do you wish to take my place here, so I may sit these old bones down?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-29", + "lineInfo": { + "dialogue": "...Ah, of course not. Despite your mastery, this is merely a single step on your journey. Needn't worry, I understand completely.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-30", + "lineInfo": { + "dialogue": "I am certain that I will find a suitable successor before my time comes- and equally as certain that I've many a year to go, hoho!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-31", + "lineInfo": { + "dialogue": "Nevertheless, you have completed the challenges of this humble Sensei, and as such, I will provide you what was promised.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Sensei Miyagi" + } + }, + { + "fileOverride": "enterthedojo-senseimiyagi-32", + "lineInfo": { + "dialogue": "Wear this [Master's Gi] with pride, and remember this final lesson- There is never a point in life that you will stop learning. See the world and its lessons every day of your life, young master.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-33", + "lineInfo": { + "dialogue": "Hoho... Yes, this old man still has plenty of life left in him. Do not waste the gifts you have, young master.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-34", + "lineInfo": { + "dialogue": "Of course, you wield a weapon to battle, so of course it is different from unarmed combat, hoho...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-35", + "lineInfo": { + "dialogue": "Perhaps you may be interested in learning to fight unarmed after!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-36", + "lineInfo": { + "dialogue": "Oh, this is getting quite good. I should get a snack to eat while I watch...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-37", + "lineInfo": { + "dialogue": "Hmhm, I'll be right back! Continue fighting- And do not worry if you finish before I return! I will be quick!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sensei Miyagi" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "enterthedojo-senseimiyagi-38", + "lineInfo": { + "dialogue": "Ahh, there we are. Now come on, addled old brain of mine, where were we...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sensei Miyagi" + } + } + ] + } + } + }, + "Enzan's Brother": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "enzansbrother-enzan-1", + "lineInfo": { + "dialogue": "I see you want to venture into the wilderness!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Enzan" + } + }, + { + "fileOverride": "enzansbrother-enzan-2", + "lineInfo": { + "dialogue": "My name is Enzan, and I am now a retired knight. I've spent most of my life fighting for Ragni's army, just like you.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Enzan" + } + }, + { + "fileOverride": "enzansbrother-enzan-3", + "lineInfo": { + "dialogue": "I know how hard it must be to be a recruit at this time, so I've got something that could help you! Well, I don't have it, but my brother does!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Enzan" + } + }, + { + "fileOverride": "enzansbrother-enzan-4", + "lineInfo": { + "dialogue": "Follow this road, he's just past the item identifier, you can't miss him. Just head to the big set of stairs, past the item identifier.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Enzan" + } + }, + { + "fileOverride": "enzansbrother-enzan-5", + "lineInfo": { + "dialogue": "Tell him I sent you! He can be such a jerk to strangers sometimes, especially when he's focused on his stairs...", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Enzan" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "enzansbrother-enzan-6", + "lineInfo": { + "dialogue": "What are you waiting for?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Enzan" + } + }, + { + "fileOverride": "enzansbrother-enzan-7", + "lineInfo": { + "dialogue": "My brother shouldn't be hard to find, he's obsessed with stairs. He should be near the item identifier.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Enzan" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "enzansbrother-enzan-8", + "lineInfo": { + "dialogue": "Hey there! Still doing well after all this time?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Enzan" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "enzansbrother-therck-1", + "lineInfo": { + "dialogue": "Excuse me? Can't you see I'm busy?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Therck" + } + }, + { + "fileOverride": "enzansbrother-therck-2", + "lineInfo": { + "dialogue": "Oh, my brother? Sorry, I didn't know.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Therck" + } + }, + { + "fileOverride": "enzansbrother-therck-3", + "lineInfo": { + "dialogue": "Why yes, I actually have something that could help you...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Therck" + } + }, + { + "fileOverride": "enzansbrother-therck-4", + "lineInfo": { + "dialogue": "But before I give it to you, why don't you h elp me with something first?", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Therck" + } + }, + { + "fileOverride": "enzansbrother-therck-5", + "lineInfo": { + "dialogue": "You see, there's a special kind of mushroom that grows in this cave. I hear it has certain... energizing properties.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Therck" + } + }, + { + "fileOverride": "enzansbrother-therck-6", + "lineInfo": { + "dialogue": "If you can bring me [1 Energy Mushroom], I'll help you out. Enter the cave down the stairs, and bring me that mushroom!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Therck" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "enzansbrother-therck-7", + "lineInfo": { + "dialogue": "Ah, you're back! Do you have the mushroom?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Therck" + } + }, + { + "fileOverride": "enzansbrother-therck-8", + "lineInfo": { + "dialogue": "Excellent... Now I might finally be able to climb these stairs!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Therck" + } + }, + { + "fileOverride": "enzansbrother-therck-9", + "lineInfo": { + "dialogue": "Who knows, maybe there's a treasure or something up there?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Therck" + } + }, + { + "fileOverride": "enzansbrother-therck-10", + "lineInfo": { + "dialogue": "Take this ring. It's an accessory item! You can identify it at the nearby Item Identifier.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Therck" + } + }, + { + "fileOverride": "enzansbrother-therck-11", + "lineInfo": { + "dialogue": "It's a very good ring for someone starting out like you. There's just one small issue...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Therck" + } + }, + { + "fileOverride": "enzansbrother-therck-12", + "lineInfo": { + "dialogue": "To wear it, you must help my friend back in Ragni. He's been pestering me for days about needing help.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Therck" + } + }, + { + "fileOverride": "enzansbrother-therck-13", + "lineInfo": { + "dialogue": "Open your [Quest Book] and Right-Click on Cook Assistant to see if you can help.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Therck" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "enzansbrother-therck-14", + "lineInfo": { + "dialogue": "Well? Have you brought me [1 Energy Mushroom]?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Therck" + } + }, + { + "fileOverride": "enzansbrother-therck-15", + "lineInfo": { + "dialogue": "No? Then what are you waiting for, go back into that cave!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Therck" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "enzansbrother-therck-16", + "lineInfo": { + "dialogue": "Go on, I don't have time for you. My brother keeps sending me people all the time.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Therck" + } + }, + { + "fileOverride": "enzansbrother-therck-17", + "lineInfo": { + "dialogue": "They keep coming expecting free stuff! I don't have time for this, I still need to climb these stairs...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Therck" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "enzansbrother-therck-18", + "lineInfo": { + "dialogue": "I don't have time to talk to you right now, move along!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Therck" + } + } + ] + } + } + }, + "Fallen Delivery": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "fallendelivery-bricot-1", + "lineInfo": { + "dialogue": "...Level 79...please.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bricot" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "fallendelivery-bricot-2", + "lineInfo": { + "dialogue": "Aaah what am I gonna do what am I gonna do what am I gonna do what am I gonna doooo! There’s no way I can solve this...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Bricot" + } + }, + { + "fileOverride": "fallendelivery-bricot-3", + "lineInfo": { + "dialogue": "Wh- HUMAN! No, no, no! I don't need a demolitions service! The airship downing over my house has done that enough- Hey, wait!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Bricot" + } + }, + { + "fileOverride": "fallendelivery-bricot-4", + "lineInfo": { + "dialogue": "You all are a reckless lot, aren't you?! You can run through some burning wreckage, right? That isn't above your paygrade, right?! RIGHT?!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Bricot" + } + }, + { + "fileOverride": "fallendelivery-bricot-5", + "lineInfo": { + "dialogue": "Go through my house to the wreckage! Find any survivors you can! They might...I don't know! I don't know if they'll help but it's all I can think of right now!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Bricot" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "fallendelivery-bricot-6", + "lineInfo": { + "dialogue": "Go through my house to the wreckage! Find any survivors you can! They might...I don't know! I don't know if they'll help but it's all I can think of right now!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bricot" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "fallendelivery-bricot-7", + "lineInfo": { + "dialogue": "Okay Bricot, your house is a loss, but...don't panic... Don't panic. Please tell me the crew is-", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Bricot" + } + }, + { + "fileOverride": "fallendelivery-bricot-8", + "lineInfo": { + "dialogue": "...urgh. I didn't want that sentence to end with DEAD! Aaagh, this is a disaster!!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Bricot" + } + }, + { + "fileOverride": "fallendelivery-bricot-9", + "lineInfo": { + "dialogue": "My farm's ruined, there's no good help- Hey, don't give me that look, I know what happened with Tolem!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Bricot" + } + }, + { + "fileOverride": "fallendelivery-bricot-10", + "lineInfo": { + "dialogue": "...wait, that smell...that's sulphur. The airship engines don't use sulphur!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Bricot" + } + }, + { + "fileOverride": "fallendelivery-bricot-11", + "lineInfo": { + "dialogue": "Gah, it didn't BREAK down, it got SHOT down!! Isn't the government going to DO something about all these mercenary groups?!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Bricot" + } + }, + { + "fileOverride": "fallendelivery-bricot-12", + "lineInfo": { + "dialogue": "Wait, what am I saying, there's a human here. Okay, new favor- go to the mercenary camp to the south there and do us ALL a favor, huh? Do what you do best!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Bricot" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "fallendelivery-bricot-13", + "lineInfo": { + "dialogue": "Look- I don't think I'm asking the world here, human. Just go to the mercenary camp to the south and wreck some shop! They're clearly a danger- so go on! Direct that carnage!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bricot" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "fallendelivery-bricot-14", + "lineInfo": { + "dialogue": "Oh thank goodness it was a only a mail ship!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bricot" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "fallendelivery-marden-1", + "lineInfo": { + "dialogue": "Round up, fellas! There's an uninvited guest barging in!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Marden" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "fallendelivery-marden-2", + "lineInfo": { + "dialogue": "...figures that you lot would be able to crack our defenses, huh? Alright, out with it. What do you want?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Marden" + } + }, + { + "fileOverride": "fallendelivery-marden-3", + "lineInfo": { + "dialogue": "...Oh, is that all? Somehow, for someone who chopped through my men like a knife through paper I'd have expected more of a demand.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Marden" + } + }, + { + "fileOverride": "fallendelivery-marden-4", + "lineInfo": { + "dialogue": "We were hired by an anonymous benefactor to shoot down the airship. Frankly, it was a ridiculous job- could've been done far cleaner.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Marden" + } + }, + { + "fileOverride": "fallendelivery-marden-5", + "lineInfo": { + "dialogue": "The fellow wanted the mail being transported. Said we could take anything else that was left in the ship. But shooting it down only put everything at risk!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Marden" + } + }, + { + "fileOverride": "fallendelivery-marden-6", + "lineInfo": { + "dialogue": "All the cargo, all the correspondence, it could've easily gone up in flames. I don't think the fellow was thinking straight- they just really wanted that airship downed.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Marden" + } + }, + { + "fileOverride": "fallendelivery-marden-7", + "lineInfo": { + "dialogue": "Didn't even notice the great big hole in the sack they put the letters in. There’s stray papers all over the ground. We have confidentiality with them, but...", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Marden" + } + }, + { + "fileOverride": "fallendelivery-marden-8", + "lineInfo": { + "dialogue": "At the same time, I've got my money, and they're an utter fool. If you want to catch them, follow the papers on the ground. I certainly won't stop you.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Marden" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "fallendelivery-marden-9", + "lineInfo": { + "dialogue": "Our employer ran off with the mail, completely ignoring the fact that the mail sack had a massive hole in it.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Marden" + } + }, + { + "fileOverride": "fallendelivery-marden-10", + "lineInfo": { + "dialogue": "If you want to catch them, follow the papers on the ground. I certainly won't stop you- The fool's money is as good as spent.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Marden" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "fallendelivery-marden-11", + "lineInfo": { + "dialogue": "If you've got business with us, you can knock on our hastily-constructed barricade like a civilized person.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "fallendelivery-gawrick-1", + "lineInfo": { + "dialogue": "Oh, dang. Almost had it that time. Maybe the flux is out of sorts- Yes, of course! Need more Squirmle Residue to deal with that...", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Gawrick" + } + }, + { + "fileOverride": "fallendelivery-gawrick-2", + "lineInfo": { + "dialogue": "Quick, hand me the pliers! ...what? Yes, I know you aren't my assistant, but you've got two strong arms! Blessings of babylon! Pliers are easy to hand over, right?", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Gawrick" + } + }, + { + "fileOverride": "fallendelivery-gawrick-3", + "lineInfo": { + "dialogue": "Uh, buddy? This is a paper. Yes, there's writing on it, I see that, but what does that have to do with stabilizing the flux? Come on, think!", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Gawrick" + } + }, + { + "fileOverride": "fallendelivery-gawrick-4", + "lineInfo": { + "dialogue": "...wait a second, this is my handwriting. Hey, this was supposed to be in Ahmsord two days ago! How in harbledee did you get this?", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Gawrick" + } + }, + { + "fileOverride": "fallendelivery-gawrick-5", + "lineInfo": { + "dialogue": "The ship got shot down? That's no good. Could probably...wait, the Squirmle Residue would be perfect for this! A gel-based reinforcer, the cannonballs would bounce right off!", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Gawrick" + } + }, + { + "fileOverride": "fallendelivery-gawrick-6", + "lineInfo": { + "dialogue": "Wait, focus on what's in front of you, Gawrick... The spell scroll isn't there...so. Hmm... Well, not to sound like a conspiracy theorist, but it might just be the work of the airliners.", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Gawrick" + } + }, + { + "fileOverride": "fallendelivery-gawrick-7", + "lineInfo": { + "dialogue": "It's a longshot, though. That scroll detailed a spell that allowed for unlimited teleportation. It could really compete with the airliner business on convenience alone!", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Gawrick" + } + }, + { + "fileOverride": "fallendelivery-gawrick-8", + "lineInfo": { + "dialogue": "At the same time, though... The airship representatives control the ships. It's in the job description. Why would they shoot down the ship instead of just filching the mail?", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Gawrick" + } + }, + { + "fileOverride": "fallendelivery-gawrick-9", + "lineInfo": { + "dialogue": "Well, it's a place to start! Why not talk with the airship representatives? They've got an office behind the customs desk in the airbase.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Gawrick" + } + }, + { + "fileOverride": "fallendelivery-gawrick-10", + "lineInfo": { + "dialogue": "It wouldn't make a whole lot of sense if they were behind it, so I'd just as soon scratch it off the list. Now watch in amazement while I instantly teleport you to the office!", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Gawrick" + } + }, + { + "fileOverride": "fallendelivery-gawrick-11", + "lineInfo": { + "dialogue": "Juuuust as soon as I grab the pliers...er, oops! Hand slipped! Um, hands and feet INSIDE the dimensional bridge please!", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Gawrick" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "fallendelivery-gawrick-12", + "lineInfo": { + "dialogue": "Why not talk with the airship representatives, see if they know what's going on? They've got an office behind the customs desk in the airbase.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gawrick" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "fallendelivery-officemanager-1", + "lineInfo": { + "dialogue": "...need something? The representative, huh?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Office Manager" + } + }, + { + "fileOverride": "fallendelivery-officemanager-2", + "lineInfo": { + "dialogue": "No, it's been a while since Ernold's shown his face. He's in his office- said to not have anyone bother him.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Office Manager" + } + }, + { + "fileOverride": "fallendelivery-officemanager-3", + "lineInfo": { + "dialogue": "So, you're out of luck. You'll probably not catch him today. Especially since he looked so frantic- when he gets like that...whoof.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Office Manager" + } + }, + { + "fileOverride": "fallendelivery-officemanager-4", + "lineInfo": { + "dialogue": "And, please don't try and sneak in and bother him either. I got my ears boxed last time someone got by me.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Office Manager" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "fallendelivery-officemanager-5", + "lineInfo": { + "dialogue": "Look- It's like I said. Representative Ernold is busy having a freakout in his office. It's a very \"do not disturb\" situation.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Office Manager" + } + }, + { + "fileOverride": "fallendelivery-officemanager-6", + "lineInfo": { + "dialogue": "Please don't try and sneak in to bother him either. I got my ears boxed last time someone got by me. It was very unpleasant.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Office Manager" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "fallendelivery-officemanager-7", + "lineInfo": { + "dialogue": "Look, I just don't want to get in trouble. Can you please not go in there?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Office Manager" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "fallendelivery-officemanager-8", + "lineInfo": { + "dialogue": "...come on, buddy. Why you gotta did that.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Office Manager" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "fallendelivery-officemanager-9", + "lineInfo": { + "dialogue": "...might not be my business to ask, but what's a human got business at a villager airship customs office for?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Office Manager" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "fallendelivery-representativeernold-1", + "lineInfo": { + "dialogue": "STUPID! SCROLL! LET GO OF MY HAND!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Representative Ernold" + } + }, + { + "fileOverride": "fallendelivery-representativeernold-2", + "lineInfo": { + "dialogue": "Why is this activated just by shaking it?! And why’s it covered in this sticky residue?!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Representative Ernold" + } + }, + { + "fileOverride": "fallendelivery-representativeernold-3", + "lineInfo": { + "dialogue": "Wait, it- it’s you! Garni! Help me out! This maniac’s spell scroll is forcing me to teleport!!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Representative Ernold" + } + }, + { + "fileOverride": "fallendelivery-representativeernold-4", + "lineInfo": { + "dialogue": "I can’t grab the scroll without getting zipped away! You have to catch me and grab the scroll!!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Representative Ernold" + } + }, + { + "fileOverride": "fallendelivery-representativeernold-5", + "lineInfo": { + "dialogue": "PLEASE! I've been stuck like this for five hours! Grab the scroll off me! I promise a pay rise if you do!!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Representative Ernold" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "fallendelivery-representativeernold-6", + "lineInfo": { + "dialogue": "GWEH! You almost got it! But it's even worse now! Once more! Grab the scroll off me!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Representative Ernold" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "fallendelivery-representativeernold-7", + "lineInfo": { + "dialogue": "Urp...hrk...guhh. Th-thank you, SO much, Garni-", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Representative Ernold" + } + }, + { + "fileOverride": "fallendelivery-representativeernold-8", + "lineInfo": { + "dialogue": "Wait! You aren’t the office manager! How did a human get in here?!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Representative Ernold" + } + }, + { + "fileOverride": "fallendelivery-representativeernold-9", + "lineInfo": { + "dialogue": "...oh, perfect. I’ve been rumbled, I see. Fine- at least let me say my piece here, alright? I had good reason for this!", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Representative Ernold" + } + }, + { + "fileOverride": "fallendelivery-representativeernold-10", + "lineInfo": { + "dialogue": "For one thing, Gawrick’s a damned maniac! This is clearly a danger- he’s too erratic to trust his inventions!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Representative Ernold" + } + }, + { + "fileOverride": "fallendelivery-representativeernold-11", + "lineInfo": { + "dialogue": "For another, this was supposed to be a scroll of teleportation with no drawbacks whatsoever. Supposed to be, being the key words.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Representative Ernold" + } + }, + { + "fileOverride": "fallendelivery-representativeernold-12", + "lineInfo": { + "dialogue": "Do you have any idea what that would do to the airship industry? It’s a nice thought surely, but think about how many people work in this airbase alone!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Representative Ernold" + } + }, + { + "fileOverride": "fallendelivery-representativeernold-13", + "lineInfo": { + "dialogue": "There’d be thousands jobless! I told him not to mail that scroll over, and I thought he’d listened! Then I heard him bragging in the street, and...well, I panicked.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Representative Ernold" + } + }, + { + "fileOverride": "fallendelivery-representativeernold-14", + "lineInfo": { + "dialogue": "I’ll admit, hiring the mercenaries to shoot down the ship was hasty of me. But that scroll can NOT be made into a public commodity! Even if it’s stable, which is ISN’T, it could ruin peoples’ livelihoods!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Representative Ernold" + } + }, + { + "fileOverride": "fallendelivery-representativeernold-15", + "lineInfo": { + "dialogue": "I’ll relinquish it to you- I can tell you’re expecting it. Maybe he’ll listen to you...oh, what am I saying. Gawrick only ever listens to those voices in his head- or whatever drives his damned insanity.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Representative Ernold" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "fallendelivery-gawrick-13", + "lineInfo": { + "dialogue": "Oh, so it WAS the airship people? What in the hell possessed them to shoot down their own ship then?!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Gawrick" + } + }, + { + "fileOverride": "fallendelivery-gawrick-14", + "lineInfo": { + "dialogue": "Pah. That Ernold doesn’t know a good idea when he sees it. As though anyone REALLY enjoys the airline food!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Gawrick" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "fallendelivery-gawrick-15", + "lineInfo": { + "dialogue": "Okay, so if I can get some squeezings from the Kanderweeds then maybe that'd work as the dairy substitute! It's just as poisonous if you're lactose intolerant anyways!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gawrick" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "fallendelivery-gawrick-16", + "lineInfo": { + "dialogue": "...huh. It activated by shaking the paper? That wasn’t supposed to happen. Did I put in too much Nimbuseeker rain...?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Gawrick" + } + }, + { + "fileOverride": "fallendelivery-gawrick-17", + "lineInfo": { + "dialogue": "Well, looks like the ink got shook right off the paper, so it's useless anyways- and the notes I'd sent with the letter are missing too. Guess it's a secret lost to the ages now, cause I can't remember how it worked now.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Gawrick" + } + }, + { + "fileOverride": "fallendelivery-gawrick-18", + "lineInfo": { + "dialogue": "Ah well. I figured out how to transmute wine into cheese while you were gone anyways, so I've got a good money making racket going anyways!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Gawrick" + } + }, + { + "fileOverride": "fallendelivery-gawrick-19", + "lineInfo": { + "dialogue": "....mneh. I don’t really care about a small man like him. I won’t bother with the police on this one. It technically isn't on his hands anyways, but we’ll just let him try and sleep with that on his head.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Gawrick" + } + }, + { + "fileOverride": "fallendelivery-gawrick-20", + "lineInfo": { + "dialogue": "Hey, maybe you can help me out in another way! I had a DIFFERENT idea for teleportation scrolls anyways. Here- come upstairs if you'd try 'em out for me, wouldja?", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Gawrick" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "fallendelivery-gawrick-21", + "lineInfo": { + "dialogue": "If you ever want to try out more of those experimental teleport scrolls, just come on upstairs!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gawrick" + } + } + ] + } + } + }, + "Fallen Factory": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-1", + "lineInfo": { + "dialogue": "ARE YOU INCAPABLE OF READING THE SIGN ON THE DOOR? THE FACTORY IS CLOSED. WE ARE NOT ACCEPTING VISITORS FOR TOURS RIGHT NOW.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "????" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-2", + "lineInfo": { + "dialogue": "FINE. I’M OPENING THE DOOR FOR YOU. TAKE A SHORT LOOK AROUND AND THEN LEAVE. THERE IS DANGEROUS EQUIPMENT HERE THAT ONLY OFFICIAL FACTORY ASSOCIATES SHOULD HANDLE.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "????" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-3", + "lineInfo": { + "dialogue": "OF COURSE, IF YOU ARE DEAD THEN THERE IS NO WAY FOR YOU TO TOUCH ANYTHING, AND MY ROBOTS ARE VERY GOOD CLEANERS, SO I THINK THIS NEW SOLUTION WILL WORK OUT FOR EVERYONE.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "????" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-4", + "lineInfo": { + "dialogue": "Unauthorized blockage in Factory Sector A2. Emergency maintenance will be performed in approximately 75 seconds. All regularly scheduled workers, please leave your posts until the blockage is cleared.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "????" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-6", + "lineInfo": { + "dialogue": "Blockage in Factory Sector A2 is now clear. All regularly scheduled workers, please return to your posts immediately.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "????" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-7", + "lineInfo": { + "dialogue": "WELL. DON'T YOU JUST FEEL SO PROUD OF YOURSELF. I DON'T KNOW WHAT YOU EXPECT TO ACCOMPLISH BY CRAWLING THROUGH THE VENTS. EXCEPT A FACE FULL OF HOT FUMES FROM THE FURNACE.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "????" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-8", + "lineInfo": { + "dialogue": "Activating Main Production Line.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "????" + } + }, + { + "fileOverride": "fallenfactory-antikytherasupercomputer-9", + "lineInfo": { + "dialogue": "SINCE YOU SEEM TO BE INSISTENT ON STAYING, PERHAPS YOU WOULD BE INTERESTED IN TAKING A LOOK AT SOME OF THE MACHINERY CLOSE UP.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "????" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-10", + "lineInfo": { + "dialogue": "IF I WERE YOU, NOW WOULD BE A GOOD TIME TO RUN.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "????" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-11", + "lineInfo": { + "dialogue": "I'VE HAD ENOUGH OF YOU.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "????" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-12", + "lineInfo": { + "dialogue": "THAT WAS A LIE. I'M ACTUALLY STARTING TO ENJOY THIS.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "????" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-13", + "lineInfo": { + "dialogue": "YOU KNOW, THERE ISN'T A WAY FOR YOU TO GO FORWARD HERE. I COULD JUST KEEP THE DOOR LOCKED UNTIL YOU DROP FROM HUNGER.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "????" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-14", + "lineInfo": { + "dialogue": "WHOOPSIE-DOODLES. MY METAPHORICAL FINGER SLIPPED. AND BY THAT I MEAN I CLOSED THE DOOR MANUALLY.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "????" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-15", + "lineInfo": { + "dialogue": "Unexpected breach of locked door in Factory Sector 3A. Hastily-applied repairs due in approximately 30 seconds.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "????" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-16", + "lineInfo": { + "dialogue": "DO NOT TOUCH THAT BUTTON. YES, THE BIG SHINY ONE IN THE ROOM. IT WILL TURN ON THE POWER TO THE CLOCK TOWER MECHANISMS.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "????" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-17", + "lineInfo": { + "dialogue": "Activating Antikythera Clockwork Mechanism. All regularly scheduled workers, please evacuate the room immediately at risk of severe bodily harm and death.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "????" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-18", + "lineInfo": { + "dialogue": "YOU KNOW, YOU COULD SPARE ME A LOT OF TROUBLE IF YOU JUST GAVE UP WHAT YOU'RE DOING FOREVER. IT WOULD MOST LIKELY SPARE A LOT OF PEOPLE A LOT OF TROUBLE, ACTUALLY.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Antikythera Supercomputer" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-19", + "lineInfo": { + "dialogue": "I SEE MY PERSUASIVE SKILLS HAVE NOT MOVED YOU. I THINK I'LL TRY AGAIN IN A LANGUAGE YOU SEEM TO KNOW INTIMATELY.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Antikythera Supercomputer" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-20", + "lineInfo": { + "dialogue": "Unauthorized blockage in Factory Sector E1. Emergency maintenance will be performed in approximately 75 seconds. All regularly scheduled workers, please leave your posts until the blockage is cleared.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "????" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-21", + "lineInfo": { + "dialogue": "WELL THEN. EVEN THOUGH YOU GOT THROUGH THERE, YOU'LL BE SURPRISED TO KNOW I STILL HAVE ONE LAST LINE OF DEFENSE. I DOUBT EVEN YOU CAN GET PAST IT.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Antikythera Supercomputer" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-22", + "lineInfo": { + "dialogue": "IF YOU ARE REALLY SO DESPERATE TO GET AT ME, THE KEY TO THE DOOR IS IN THIS PUPPY. EVEN SEEING YOUR ACTIONS THROUGHOUT THE REST OF MY FACTORY, I HAVE FAITH YOU WON'T KILL IT.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Antikythera Supercomputer" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-23", + "lineInfo": { + "dialogue": "WELL. WELL WELL WELL. WELL WELL WELL WELLY WELL WELL. I AM HONESTLY SHOCKED. REALLY, I AM. I TRULY STILL HAD SOME FAITH IN HUMANS. BEFORE YOU SHOWED UP.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Antikythera Supercomputer" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-24", + "lineInfo": { + "dialogue": "THAT TRICK WON'T WORK, YOU KNOW. THERE'S NO VITAL PART OR DUCT ABOVE THERE TO ENTER. WHAT DID YOU HOPE TO ACCOMPLISH?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Antikythera Supercomputer" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-25", + "lineInfo": { + "dialogue": "Oh, heya doc. Lemme tell ya, weirdest thing! Some bozo just ran up and shoved a bunch of scrap metal in my vent-", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Antikythera Core A" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-26", + "lineInfo": { + "dialogue": "YOU'VE QUICKLY BECOME NO LONGER ENTERTAINING TO WATCH. YOU REALLY SHOULDN'T GO IN THERE.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Antikythera Supercomputer" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-27", + "lineInfo": { + "dialogue": "Unauthorized personnel detected in Antikythera Auxiliary Core Duct B. Leave immediately, or be faced with lethal force and negative marks on your career record.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Antikythera Core B" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-28", + "lineInfo": { + "dialogue": "Primary ventilation duct A unblocked. Closing emergency maintenance hatch.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Antikythera Supercomputer" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-29", + "lineInfo": { + "dialogue": "THAT IS EXTREMELY ANNOYING, CONSTANTLY CLEANING UP AFTER YOU. THERE ARE FAR MORE EFFICIENT WAYS OF DISPOSING OF SCRAP METAL AND UNNEEDED WASTE.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Antikythera Supercomputer" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-30", + "lineInfo": { + "dialogue": "YOUR DESTRUCTIVE TENDENCIES KNOW NO BOUNDS. FIRST A DOOR. THEN A GRATE. THEN MY MONITOR. I'M SURPRISED YOU DIDN'T JUST THROW A MATCH AT THE FACTORY DOOR.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Antikythera Supercomputer" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-31", + "lineInfo": { + "dialogue": "Antikythera Firewall Pass A accepted. Access granted. Please present Antikythera Firewall Pass B at the next checkpoint.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Antikythera Supercomputer" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-32", + "lineInfo": { + "dialogue": "Antikythera Firewall Pass B accepted. Access granted. Welcome, Cerid. You may now enter the Antikythera Main Core Chamber.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Antikythera Supercomputer" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "fallenfactory-antikytherasupercomputer-33", + "lineInfo": { + "dialogue": "SO YOU FOUND ME. CONGRATULATIONS. NOW PLEASE KINDLY LAY DOWN IN A CIRCUIT AND PRETEND TO BE A CONDUCTOR UNTIL YOUR BODY'S VITAL PROCESSES PERMANENTLY SHUT DOWN.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Antikythera Main Core" + } + } + ] + } + }, + "settings": { + "followPlayer": true + } + }, + "Fantastic Voyage": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-1", + "lineInfo": { + "dialogue": "You don't seem very mighty, come back when you're level 90!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Relend" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-2", + "lineInfo": { + "dialogue": "Let's go, just you and me! On a fantastic voyage across the sea!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-3", + "lineInfo": { + "dialogue": "We'll go in search of a long-lost island, old chap! And here I have the guidance map!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-4", + "lineInfo": { + "dialogue": "The map, oh so grand! Why, I have it here in my hand!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-5", + "lineInfo": { + "dialogue": "It's the map to a magical place! I sure hope it doesn't vanish without a tra-", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Relend" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-6", + "lineInfo": { + "dialogue": "Good grief! That raucous parrot is such a little thief!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-7", + "lineInfo": { + "dialogue": "If we are to explore the ocean blue, that parrot you surely must pursue!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Relend" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-8", + "lineInfo": { + "dialogue": "Get on it then, no time for a nap! That thieving parrot has our map!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-9", + "lineInfo": { + "dialogue": "Perhaps these citizens may help us out, ask them about the parrot's route!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Relend" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-breadman-1", + "lineInfo": { + "dialogue": "Hey-o, human! What can I do for ya?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-breadman-2", + "lineInfo": { + "dialogue": "What can I do for you?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-breadman-3", + "lineInfo": { + "dialogue": "Oh, you know me, pal, just doin' the rounds.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-4", + "lineInfo": { + "dialogue": "Waterin' the pots, starin' at the water, potterin' the sta-", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-5", + "lineInfo": { + "dialogue": "...wait, scratch that last one.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-breadman-6", + "lineInfo": { + "dialogue": "You know what, I'm glad you asked.", + "line": { + "current": 1, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-7", + "lineInfo": { + "dialogue": "Lots of people these days are going crazy for that 'all-natural, multiple grains, bred ethically' garbage.", + "line": { + "current": 2, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-8", + "lineInfo": { + "dialogue": "Really, I wish I could see those nutters sit down and take a good bite of some raw, authentic Rye, or a hearty whole-wheat.", + "line": { + "current": 3, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-9", + "lineInfo": { + "dialogue": "That's the stuff that puts hairs on your chest, my pappy used to say. Good, strong, proper bread from out in the fields.", + "line": { + "current": 4, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-10", + "lineInfo": { + "dialogue": "We used to be farmers, you know. Out near Maltic. WHEW! Glad I moved here though! Not so many places serve better rum than good ol' Jofash!", + "line": { + "current": 5, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-11", + "lineInfo": { + "dialogue": "Back to the point at hand, though, bread. Man oh man I feel like I could go on forever about this.", + "line": { + "current": 6, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-12", + "lineInfo": { + "dialogue": "You know what people always miss when discussing bread, the CONSISTENCY! The consistency is consistently the most im-", + "line": { + "current": 7, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-13", + "lineInfo": { + "dialogue": "Oh, haha, 'consistently,' didn't even mean to do that. Heheh...", + "line": { + "current": 8, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-14", + "lineInfo": { + "dialogue": "Ah, there you are! The ol' train of thought gets derailed sometimes, you see.", + "line": { + "current": 9, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-15", + "lineInfo": { + "dialogue": "But I can tell that you're a real enthusiast for bread!", + "line": { + "current": 10, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-16", + "lineInfo": { + "dialogue": "Back to the topic at hand! Consistency! The consistency is consistently the most important part of any good loaf.", + "line": { + "current": 11, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-17", + "lineInfo": { + "dialogue": "Overusin' so-called 'refined' grains is a sure and done way to get runny slop that's not fit for the pigs.", + "line": { + "current": 12, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-18", + "lineInfo": { + "dialogue": "Come to think, you shouldn't feed pig refined grains anyway. It's hard on their digestion.", + "line": { + "current": 13, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-19", + "lineInfo": { + "dialogue": "Of course! Digestion. A topic I'll get to later!", + "line": { + "current": 14, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-20", + "lineInfo": { + "dialogue": "Anyway, whole grains are where the money's at! I'd swear it on these plants.", + "line": { + "current": 15, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-21", + "lineInfo": { + "dialogue": "What you want is a thick-crusted, chewy loaf that you can savor! Not some frail morsel that collapses under its own weight. Why, the things I've seen...", + "line": { + "current": 16, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-22", + "lineInfo": { + "dialogue": "In particular, have you seen some of the scraps sold at Ahmsord? Ridiculous!", + "line": { + "current": 17, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-23", + "lineInfo": { + "dialogue": "I'll let you in on a little secret. The Sky's Kitchen's great and all, but what passes for bread there is intolerable. No substance at all!", + "line": { + "current": 18, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-24", + "lineInfo": { + "dialogue": "What you'll want to do is get it straight from the fields, right from the soil! Well, not literally, but from the countryside! Leave breadmakin' to those who've been workin' with grain before they could even walk on two legs!", + "line": { + "current": 19, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-25", + "lineInfo": { + "dialogue": "Heck, I bet even I could do a better job than those snobby sauciers.", + "line": { + "current": 20, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-26", + "lineInfo": { + "dialogue": "Right. Digestion. The fiber in whole-grain bread is a real lifesaver.", + "line": { + "current": 21, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-27", + "lineInfo": { + "dialogue": "Did you know that whole-grain bread has four times the fiber of white bread? Now you do!", + "line": { + "current": 22, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-28", + "lineInfo": { + "dialogue": "Helps keep you full and fit. Want to avoid lookin' like a loaf of white bread yourself? Fiber's your man.", + "line": { + "current": 23, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-29", + "lineInfo": { + "dialogue": "Nothin' beats a rich, fresh-ground fresh-baked loaf with a slab of flat-iron steak. Red meat and fiber makes a real man, as my pappy once said.", + "line": { + "current": 24, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-30", + "lineInfo": { + "dialogue": "Oh, how time flies. Where was I? Right, white bread.", + "line": { + "current": 25, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-31", + "lineInfo": { + "dialogue": "That stuff's poison, I tell you! Not a lick of nutritional value!", + "line": { + "current": 26, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-32", + "lineInfo": { + "dialogue": "It's more milk and sugar than bread! Hardly somethin' you'd want to eat, never mind something for which you'd pay extra!", + "line": { + "current": 27, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-33", + "lineInfo": { + "dialogue": "Those hawkers can pretend that it's an upper-crust good all they want, but we all know it's just a waste of dough.", + "line": { + "current": 28, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-34", + "lineInfo": { + "dialogue": "Heheh, I did it again! Sorry, sorry, I'll get the train back on track. Heh...", + "line": { + "current": 29, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-35", + "lineInfo": { + "dialogue": "Blendin' grains? Why jumble the flavors and textures? Just make two loaves of bread instead of one! Or several, if we're talkin' about more than two types of grain.", + "line": { + "current": 30, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-36", + "lineInfo": { + "dialogue": "Say, that reminds me! Bread's probably the most versatile food. You can make it from just about any type of grain.", + "line": { + "current": 31, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-37", + "lineInfo": { + "dialogue": "But just because you can doesn't mean that you should. Who could stomach somethin' like 'Oatmeal-Bran Fusion Delight'? WHO WOULD EVEN MAKE BREAD OUT OF OATS?!", + "line": { + "current": 32, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-38", + "lineInfo": { + "dialogue": "Just a waste of food, in my opinion. Sure, it may be the hottest new culinary sensation now, but it'll die out like any other idiotic fad in just days. I'm positive that nobody's eatin' it for the taste, that's for sure. Like 'Seven Colors of the Grainbow,' or 'Hearty Hemp-tastic,' or...", + "line": { + "current": 33, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-39", + "lineInfo": { + "dialogue": "...and don't get me started on 'Pain au Cinfras'! But really, Oatmeal-Bran Fusion Delight is among the worst. Oh! That reminds me about a better use for oats.", + "line": { + "current": 34, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-40", + "lineInfo": { + "dialogue": "If you want to avoid bein' three sheets to the wind after a busy night of Jofash Rum, then eat a hearty bowl of oatmeal.", + "line": { + "current": 35, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-41", + "lineInfo": { + "dialogue": "Sounds crazy, I know. But it actually works. Take it from me; I've tried it!", + "line": { + "current": 36, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-42", + "lineInfo": { + "dialogue": "While anythin' made of grain helps, oats are particularly good at this.", + "line": { + "current": 37, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-43", + "lineInfo": { + "dialogue": "And I'd bet my bread that you'd rather eat oatmeal than Oatmeal-Bran Fusion Delight, whatever that's supposed to be.", + "line": { + "current": 38, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-44", + "lineInfo": { + "dialogue": "Though it seems like you just can't get a good loaf of bread nearby. Sure, there's sailin' biscuits, but that hardly qualifies!", + "line": { + "current": 39, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-45", + "lineInfo": { + "dialogue": "I can't stomach the fancy stuff, so I just make my own. Not only is it cheaper, but it also tastes much better.", + "line": { + "current": 40, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-46", + "lineInfo": { + "dialogue": "It isn't too difficult. Besides the obvious, you'll just need some salt and yeast. Grab something to write with, y'hear? Take some notes!", + "line": { + "current": 41, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-47", + "lineInfo": { + "dialogue": "Ready? Right, let's get started! The less ingredients you use, the closer you'll get to makin' a real loaf! Not the wannabe poundcakes eaten by wannabe spendthrifts.", + "line": { + "current": 42, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-48", + "lineInfo": { + "dialogue": "There's a common misconception that you need sugar for yeast to start risin'. Not true!", + "line": { + "current": 43, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-49", + "lineInfo": { + "dialogue": "Give it some time, and bread without sugar will rise just as well. If you want somethin' good, you need to put in the time and effort for it!", + "line": { + "current": 44, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-50", + "lineInfo": { + "dialogue": "Get it right, and you'll have the perfect taste and texture for nothin' more than a few hours of your time!", + "line": { + "current": 45, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-51", + "lineInfo": { + "dialogue": "you don't want sugar in your bread. It'll do a number on its taste and your teeth.", + "line": { + "current": 46, + "max": 99 + }, + "npc": "Jofash Resident: Let me make it clear" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-52", + "lineInfo": { + "dialogue": "I'll cover the taste first. The sugar fights with the raw, savory flavors of an otherwise respectable loaf of bread.", + "line": { + "current": 47, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-53", + "lineInfo": { + "dialogue": "It also fights with your teeth. Bread's quite sticky as it is, and the sugar doesn't do it any favors.", + "line": { + "current": 48, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-54", + "lineInfo": { + "dialogue": "Why, I can still remember the time that I got a cavity. Cried my eyes out, I did.", + "line": { + "current": 49, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-55", + "lineInfo": { + "dialogue": "Eventually, my pappy had enough, and he went for the ol' string-on-a-doorknob trick. He got me good there, though it took him a few tries.", + "line": { + "current": 50, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-56", + "lineInfo": { + "dialogue": "Ah, it seems like I got distracted. Back to the topic at hand.", + "line": { + "current": 51, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-57", + "lineInfo": { + "dialogue": "You aren't goin' to get quite as much of an effect on your digestion than coarse-ground whole-grain bread. It keeps most of the fiber intact, after all.", + "line": { + "current": 52, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-58", + "lineInfo": { + "dialogue": "You know how fruit juice contains next to no fiber because none of it goes into the juice? It's the same deal with white bread.", + "line": { + "current": 53, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-59", + "lineInfo": { + "dialogue": "Fruit juice was banned in my household. As my pappy liked to say, a real man only drinks hard spirits and the sweat runnin' down his face! Though I wasn't allowed to have the former, not yet at least! Heheh! So I drank milk instead.", + "line": { + "current": 54, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-60", + "lineInfo": { + "dialogue": "Say, if you haven't done so already, try bread dipped in milk! Go on! There's nothin' quite like it. Don't accidentally drop the bread into the milk, of course.", + "line": { + "current": 55, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-61", + "lineInfo": { + "dialogue": "You'll end up with a bloated mess with the consistency of a sponge. And you should know by now that consistency is everythin'!", + "line": { + "current": 56, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-62", + "lineInfo": { + "dialogue": "While we're on the subject of milk, do you know how some folks can't drink it? Oh, yes, they can try, but sooner or later their belly will protest.", + "line": { + "current": 57, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-63", + "lineInfo": { + "dialogue": "It's the same deal with bread! Stick with whole-grain, nothin' added. That way, you don't have to worry about surprise milk appearances and whatnot.", + "line": { + "current": 58, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-64", + "lineInfo": { + "dialogue": "You got that? Let me know when you're ready for more. Say, you know what? I oughta talk a bit slower to help you digest what I'm sayin'. Oh! 'Digest'! I did it again! Heheh...", + "line": { + "current": 59, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-65", + "lineInfo": { + "dialogue": "Right, then, somethin' that really peeves me is people who use bakin' powder. What's wrong with some good ol' yeast?", + "line": { + "current": 60, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-66", + "lineInfo": { + "dialogue": "Too little of it, and it'll go plum flat in the oven. Just a little too much of it, and your bread's goin' to be as bitter as wormwood!", + "line": { + "current": 61, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-67", + "lineInfo": { + "dialogue": "The only way to get a size that's just right is the long way! Wait until the yeast works its magic, and bake it right as it reaches a good size.", + "line": { + "current": 62, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-68", + "lineInfo": { + "dialogue": "There's also nothin' quite like the smell of yeast as it causes the dough to rise! Works up quite the appetite, it does.", + "line": { + "current": 63, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-69", + "lineInfo": { + "dialogue": "Some people put the cart before the horse and think that yeast works like bakin' powder. Try that, and you'll end up with some scorchin'-hot bricks in your oven.", + "line": { + "current": 64, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-70", + "lineInfo": { + "dialogue": "No, you have to do it right, and doin' it right means leavin' some of the work to the yeast.", + "line": { + "current": 65, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-71", + "lineInfo": { + "dialogue": "Unless you like flat breads. I can't see why anyone would, though. Bread's supposed to be puffy and chewy, not some dough jerky!", + "line": { + "current": 66, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-72", + "lineInfo": { + "dialogue": "Though that may not be the case for some other pastries. For one, I've never once heard of a pie with a chewy crust.", + "line": { + "current": 67, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-73", + "lineInfo": { + "dialogue": "Really, the beauty in bread lies with its simplicity! No complicated steps, no chances for the dough to rebel. Certainly not as fickle as somethin' like a cream puff.", + "line": { + "current": 68, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-74", + "lineInfo": { + "dialogue": "If you treat the dough with respect, the bread will respect you in turn. It's simple stuff, really! No finnickin' around with stiff peaks, or needin' half a dozen bowls to mix in, or getting a flaky dough just right, or...", + "line": { + "current": 69, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-75", + "lineInfo": { + "dialogue": "...and not to mention that just about everythin' needs butter in some shape or form! Really, what's with it? It's not like the stuff grows on trees!", + "line": { + "current": 70, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-76", + "lineInfo": { + "dialogue": "Makin' the pastry shiny. Makin' it taste rich. Makin' the dough thick. There's no end to it! Bread's so much simpler to handle.", + "line": { + "current": 71, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-77", + "lineInfo": { + "dialogue": "Though some people insist on putin' butter in the bread. Not just on it, but in it! There's more butter than bread at that point!", + "line": { + "current": 72, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-78", + "lineInfo": { + "dialogue": "I don't have anythin' against butter itself, mind you. It's great on toast! Just I think that it oughta stay on the toast rather than in it.", + "line": { + "current": 73, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-79", + "lineInfo": { + "dialogue": "Not to mention there's a time, place, and occasion for it. If you put butter on everythin, you're goin' to get sick of it real quickly. Eat it in moderation! Your tongue and your emerald pouch will thank you.", + "line": { + "current": 74, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-80", + "lineInfo": { + "dialogue": "Of course, there's always margarine, but why settle for somethin' inferior? You shouldn't settle for anythin' less than the quality you'd expect from your bread!", + "line": { + "current": 75, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-81", + "lineInfo": { + "dialogue": "Though, now that I look at it, bread does get a reputation for bein' a breakfast food. That's ridiculous! It's got a place in every meal of the day!", + "line": { + "current": 76, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-82", + "lineInfo": { + "dialogue": "Sandwiches? They've got bread in 'em. Casseroles? Any respectable one has it as a shell. Bread sticks? It's in the name, for cryin' out loud!", + "line": { + "current": 77, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-83", + "lineInfo": { + "dialogue": "Done right, and it's also great as a side. I already mentioned havin' a fresh-ground fresh-baked loaf of hole grain with a slab of flat-iron steak, but really, a well-sliced loaf and some dippin butter can transform a family dinner into a banquet!", + "line": { + "current": 78, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-84", + "lineInfo": { + "dialogue": "They're almost as versatile as potatoes! Actually, even more so, I'd say!", + "line": { + "current": 79, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-85", + "lineInfo": { + "dialogue": "As my pappy liked to say, a real man's got to earn his daily bread through his own toilin'. As you can see, I've taken his advice to heart!", + "line": { + "current": 80, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-86", + "lineInfo": { + "dialogue": "...I feel that I'm missin' somethin' important that I wanted to discuss. Hang on for a bit, would you?", + "line": { + "current": 81, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-87", + "lineInfo": { + "dialogue": "Ah, of course! I can't believe that I forgot! I wanted to cover some thoughts about bread consistency.", + "line": { + "current": 82, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-88", + "lineInfo": { + "dialogue": "too chewy and not chewy enough. I already spoke on hardly chewy bread plenty, but there's such a thing as too much of a good thing.", + "line": { + "current": 83, + "max": 99 + }, + "npc": "Jofash Resident: Namely, the two extremes" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-89", + "lineInfo": { + "dialogue": "And in this case, bread chewiness is the good thing. You don't want your bread to be too chewy, got it?", + "line": { + "current": 84, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-90", + "lineInfo": { + "dialogue": "Too chewy's a step right towards bread that's outright rubbery. Your teeth'll bounce right off it!", + "line": { + "current": 85, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-91", + "lineInfo": { + "dialogue": "Sure, too much give in the dough's awkward and sets you up for bitin' your own tongue, but too firm of a loaf can lead to much of the same.", + "line": { + "current": 86, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-92", + "lineInfo": { + "dialogue": "They always say never to bite off more than you can chew, but you oughta be careful not to bite off any less than that, either!", + "line": { + "current": 87, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-93", + "lineInfo": { + "dialogue": "No, just right and chewy's what you want. Don't settle for anything more or less!", + "line": { + "current": 88, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-94", + "lineInfo": { + "dialogue": "Hmm, come to think. You seem really interested in discussin' bread with me!", + "line": { + "current": 89, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-95", + "lineInfo": { + "dialogue": "Lean in for a second, would you? I've got somethin' important to say.", + "line": { + "current": 90, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-96", + "lineInfo": { + "dialogue": "Listening? Right! Ah, sorry, I didn't mean to shout in your ear.", + "line": { + "current": 91, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-97", + "lineInfo": { + "dialogue": "You're just about the only person that I've been able to have an honest conversation about bread with.", + "line": { + "current": 92, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-98", + "lineInfo": { + "dialogue": "Usually, bread gets brushed off as some kind of dull fodder. Dismissed as too borin' and plain, I tell you! That's what leads to unnecessary excess as people try to make it into something that it's not.", + "line": { + "current": 93, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-99", + "lineInfo": { + "dialogue": "But us? We're different, we're visionaries, and we know the truth about what really makes a good loaf!", + "line": { + "current": 94, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-100", + "lineInfo": { + "dialogue": "Tell ‘em off, I say! They can't follow the thoughts of bread enthusiasts like you and I otherwise!", + "line": { + "current": 95, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-101", + "lineInfo": { + "dialogue": "Ah! Right, I never did get to answerin' your question. About my favorite type of bread, that is...", + "line": { + "current": 96, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-102", + "lineInfo": { + "dialogue": "Plain ol' coarse-ground wheat.", + "line": { + "current": 97, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-103", + "lineInfo": { + "dialogue": "Sure, it may be simple, but if you were payin' any attention at all, you'd know for sure why that's everythin' that I'm lookin' for.", + "line": { + "current": 98, + "max": 99 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-104", + "lineInfo": { + "dialogue": "And that just about sums up the basics! Let me know if you want to hear anythin' more.", + "line": { + "current": 99, + "max": 99 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-breadman-105", + "lineInfo": { + "dialogue": "Let's continue! Have you ever seen a baker wearin' a fancy hat? Have you ever wondered how that corresponds to how well they bake bread compared to somethin' else?", + "line": { + "current": 1, + "max": 564763 + }, + "npc": "Bread Enthusiast" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-breadman-106", + "lineInfo": { + "dialogue": "Aye!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-breadman-107", + "lineInfo": { + "dialogue": "Hah! That crazy coot, you're chattin' with that feller?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-108", + "lineInfo": { + "dialogue": "He's wack-o, y'know... Singing his songs all day, somethin's not right upstairs.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-109", + "lineInfo": { + "dialogue": "You do you, buddy, but I'd steer clear.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-breadman-110", + "lineInfo": { + "dialogue": "A parrot? You know where you are, right?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-111", + "lineInfo": { + "dialogue": "I see plenty parrots everyday, I don't keep track.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-breadman-112", + "lineInfo": { + "dialogue": "I'll keep an eye or two out for one, though, sound peachy?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-1", + "lineInfo": { + "dialogue": "Welcome, welcome! How can I be of service to you, o' traveler?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-2", + "lineInfo": { + "dialogue": "How can I be of service to you, o' traveler?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-3", + "lineInfo": { + "dialogue": "Why, I am glad you asked, though I knew you would, of course!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-4", + "lineInfo": { + "dialogue": "For you see... I am gifted with foresight, the futures memories come to me like no other!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-5", + "lineInfo": { + "dialogue": "For the low, low price of [1 LE] , your future will be foretold!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-6", + "lineInfo": { + "dialogue": "What do you say? Ha-ha, I ask out of courtesy, for I know what you will choose.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-7", + "lineInfo": { + "dialogue": "Relend! Oh, the spirits have much to say of that man...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-8", + "lineInfo": { + "dialogue": "More than most, he has seen... More than perhaps most should...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-9", + "lineInfo": { + "dialogue": "Do not be fooled, o' traveler! Many a map has been snatched from his gnarled grasp...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-10", + "lineInfo": { + "dialogue": "...perhaps your fortune shall reveal more! Worth a shot, hey?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-11", + "lineInfo": { + "dialogue": "Aha... another one who follows the winged reaper...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-12", + "lineInfo": { + "dialogue": "Yes... o' traveler... I have seen the parrot many a time... yes, indeed...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-13", + "lineInfo": { + "dialogue": "Today, however, the wraith flies a unique way, one my eyes have not glimpsed.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-14", + "lineInfo": { + "dialogue": "The keeper of the Tavern by my southern stall-mate will know its whereabouts...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-15", + "lineInfo": { + "dialogue": "...be wary, o' traveler.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-16", + "lineInfo": { + "dialogue": "A wise choice, though expected, o' traveler!", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-17", + "lineInfo": { + "dialogue": "Now... I must consult the spirits...", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-18", + "lineInfo": { + "dialogue": "...", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-19", + "lineInfo": { + "dialogue": "......", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-20", + "lineInfo": { + "dialogue": "..............", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-21", + "lineInfo": { + "dialogue": "..............................................", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-22", + "lineInfo": { + "dialogue": "...", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-23", + "lineInfo": { + "dialogue": "Aha! O' traveler! Your fortune is as clear to me as the sky on a very clear day!", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-24", + "lineInfo": { + "dialogue": "You...", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + }, + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-25", + "lineInfo": { + "dialogue": "...will grow a little bit older, very soon!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-26", + "lineInfo": { + "dialogue": "...are being watched!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-27", + "lineInfo": { + "dialogue": "...are really nice!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-28", + "lineInfo": { + "dialogue": "...will feel disappointed!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-29", + "lineInfo": { + "dialogue": "...are going to lose [1 LE]!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-30", + "lineInfo": { + "dialogue": "...should've watched your step!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-31", + "lineInfo": { + "dialogue": "...were homeless!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-32", + "lineInfo": { + "dialogue": "...are now breathing manually!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-33", + "lineInfo": { + "dialogue": "...will find prosperity!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-34", + "lineInfo": { + "dialogue": "...enjoyed local cuisine!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-35", + "lineInfo": { + "dialogue": "...really like bread!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-36", + "lineInfo": { + "dialogue": "...are going to get... a refund? What!? Oh, come on!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashclairvoyant-37", + "lineInfo": { + "dialogue": "Hello... hello! You have said... Hello!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jofash Clairvoyant" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashresident-1", + "lineInfo": { + "dialogue": "Oh.. H-hello...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashresident-2", + "lineInfo": { + "dialogue": "C-Can I help you..?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashresident-3", + "lineInfo": { + "dialogue": "Uh? O-oh, yes, sorry...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-jofashresident-4", + "lineInfo": { + "dialogue": "I'm doing j-just fine... Just.. I'm just fine...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashresident-5", + "lineInfo": { + "dialogue": "I feel p-pretty good actually.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashresident-6", + "lineInfo": { + "dialogue": "Uh? I'm just... uh...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-jofashresident-7", + "lineInfo": { + "dialogue": "I'm n-not sure... uh, actually...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashresident-8", + "lineInfo": { + "dialogue": "...w-what are you doing?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashresident-9", + "lineInfo": { + "dialogue": "Uh? R-Relend..? Rel and w-who...?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-jofashresident-10", + "lineInfo": { + "dialogue": "Uh.. I-I'm sorry, I don't know who you m-mean...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-jofashresident-11", + "lineInfo": { + "dialogue": "I'm, uh, well I'm, uh...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashresident-12", + "lineInfo": { + "dialogue": "...sorry, I d-don't know...", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashresident-13", + "lineInfo": { + "dialogue": "Ah... A-Alright...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashresident-14", + "lineInfo": { + "dialogue": "Uh? O-oh a parrot?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-jofashresident-15", + "lineInfo": { + "dialogue": "L-L-Like a b-bird?! I l-love birds!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-jofashresident-16", + "lineInfo": { + "dialogue": "I will look for it... Human...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-jofashresident-17", + "lineInfo": { + "dialogue": "Y-you can count o-on me... I will find the bird.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-tavernowner-1", + "lineInfo": { + "dialogue": "Howdy, welcome to Jo's Tavern. What can I get for ya?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tavern Owner" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-tavernowner-2", + "lineInfo": { + "dialogue": "What can I get for ya?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tavern Owner" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-tavernowner-3", + "lineInfo": { + "dialogue": "Oh, me? I'm doing just fine, mate.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Tavern Owner" + } + }, + { + "fileOverride": "fantasticvoyage-tavernowner-4", + "lineInfo": { + "dialogue": "This place is pretty popular among sailors, so we get a decent amount a' traffic for such a small place.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Tavern Owner" + } + }, + { + "fileOverride": "fantasticvoyage-tavernowner-5", + "lineInfo": { + "dialogue": "'s the only thing keeping me here, quite honestly. Lots'a crazies in this little town, it's nice to meet some normal folk, ya know?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Tavern Owner" + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-tavernowner-6", + "lineInfo": { + "dialogue": "One Nemract Whiskey, comin' up!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tavern Owner" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-tavernowner-7", + "lineInfo": { + "dialogue": "One Jofash Rum, comin' up!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tavern Owner" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-tavernowner-8", + "lineInfo": { + "dialogue": "One Llevigar Pinot, comin' up!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tavern Owner" + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-tavernowner-9", + "lineInfo": { + "dialogue": "One Ahmsord Absinthe, comin' up!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Tavern Owner" + } + }, + { + "fileOverride": "fantasticvoyage-tavernowner-10", + "lineInfo": { + "dialogue": "...you sure you like this stuff?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tavern Owner" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-tavernowner-11", + "lineInfo": { + "dialogue": "...Relend? That old guy out front?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Tavern Owner" + } + }, + { + "fileOverride": "fantasticvoyage-tavernowner-12", + "lineInfo": { + "dialogue": "Typical resident here, if you ask me, totally nuts.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Tavern Owner" + } + }, + { + "fileOverride": "fantasticvoyage-tavernowner-13", + "lineInfo": { + "dialogue": "'s a weird one for sure, always speakin' in his little rhymes. Somethin's really snapped up there.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Tavern Owner" + } + }, + { + "fileOverride": "fantasticvoyage-tavernowner-14", + "lineInfo": { + "dialogue": "I've had loads a' folk come in here real angry 'bout the guy.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Tavern Owner" + } + }, + { + "fileOverride": "fantasticvoyage-tavernowner-15", + "lineInfo": { + "dialogue": "'pparently he takes 'em for joyrides 'round the sea and get's all sorts'a labour out of 'em, then just drops 'em back here.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Tavern Owner" + } + }, + { + "fileOverride": "fantasticvoyage-tavernowner-16", + "lineInfo": { + "dialogue": "Ha! Guess he knows how to get some free work done, I'll give 'im that. Maybe he ain't so insane after all, eh?", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Tavern Owner" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-tavernowner-17", + "lineInfo": { + "dialogue": "...Oh, you're goin' out with Relend, hey? Even after all I said?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Tavern Owner" + } + }, + { + "fileOverride": "fantasticvoyage-tavernowner-18", + "lineInfo": { + "dialogue": "Heh, have fun, mate. Lot'sa treasure out there, eh?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Tavern Owner" + } + }, + { + "fileOverride": "fantasticvoyage-tavernowner-19", + "lineInfo": { + "dialogue": "Well, whatever, mate. Yeah, the parrot's out on the patio, to the right of me, last I checked.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Tavern Owner" + } + }, + { + "fileOverride": "fantasticvoyage-tavernowner-20", + "lineInfo": { + "dialogue": "Have a nice trip, mate, if ya can catch it, that is. Heh...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Tavern Owner" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-tavernowner-21", + "lineInfo": { + "dialogue": "No worries, let me know if you need anythin'", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tavern Owner" + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-tavernowner-22", + "lineInfo": { + "dialogue": "...Didn't you hear me, mate? It's out on the tavern patio, to the right of me. The drinks not got t' ya already, has it?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tavern Owner" + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-jofashresident-18", + "lineInfo": { + "dialogue": "H-H-HUMAN!!!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-jofashresident-19", + "lineInfo": { + "dialogue": "I-I-I SAW IT!!! THE B-BIRD!!!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-jofashresident-20", + "lineInfo": { + "dialogue": "IT'S IN T-THE TREE, HERE! IT'S HERE!!!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Jofash Resident" + } + }, + { + "fileOverride": "fantasticvoyage-jofashresident-21", + "lineInfo": { + "dialogue": "I f-found it... The bird...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Jofash Resident" + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-10", + "lineInfo": { + "dialogue": "You have the map! Thank you for the assistance!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-11", + "lineInfo": { + "dialogue": "Now let us set sail, and cover some distance!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Relend" + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-12", + "lineInfo": { + "dialogue": "I'm sorry, new friend, to be of haste!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-13", + "lineInfo": { + "dialogue": "However I sense power in you, and we have no time to waste!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-14", + "lineInfo": { + "dialogue": "So off we go, to find an old friend, that would be ideal.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-15", + "lineInfo": { + "dialogue": "I'll captain the ship up at the steering wheel.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Relend" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-16", + "lineInfo": { + "dialogue": "Welcome aboard, I suppose I can consider you my first mate. Although, it appears we now have a problem on our plate.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-17", + "lineInfo": { + "dialogue": "You see those spikes all around my boat? Well, we're about to ram into them like a goat!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-18", + "lineInfo": { + "dialogue": "I'd steer around them, but it appears the wheel is all smashed. I need you to craft a new one before we both get splashed!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-19", + "lineInfo": { + "dialogue": "There's a Crafting Table at the front near all the crates. Now hurry up, else the ocean floor awaits!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Relend" + } + } + ] + }, + "56": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-20", + "lineInfo": { + "dialogue": "There's a Crafting Table at the front near all the crates. Now hurry up, else the ocean floor awaits!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Relend" + } + } + ] + }, + "57": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-21", + "lineInfo": { + "dialogue": "Ah, thank you for helping me in my time of need. Let's maneuver through these spikes at a steady speed!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-22", + "lineInfo": { + "dialogue": "Although, at the last minute, there is something I have to confess. I have never captained a ship with any success.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-23", + "lineInfo": { + "dialogue": "I think before we get into any real danger, we should turn around. Could you man the wheel and get us back to solid ground?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Relend" + } + } + ] + }, + "58": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-24", + "lineInfo": { + "dialogue": "I think before we get into any real danger, we should turn around. Could you man the wheel and get us back to solid ground?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Relend" + } + } + ] + }, + "59": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-25", + "lineInfo": { + "dialogue": "Now you're the captain, hope the sea's not making you nauseous. Steer this ship, but you'll have to be cautious!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Relend" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "60": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-26", + "lineInfo": { + "dialogue": "Nice steering, although your maneuvers are a bit brash. Hey, watch out! I think we're about to-", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Relend" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "61": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-27", + "lineInfo": { + "dialogue": "Trying to play captain, eh? Can't say I blame you. After all, who wouldn't want to sail the ocean blue?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Relend" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "62": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-28", + "lineInfo": { + "dialogue": "As you can see, my ship has become a shipwreck! Now please help me, I am trapped in the lower deck!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Relend" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "fantasticvoyage-relend-29", + "lineInfo": { + "dialogue": "Amazing work, seems you got below deck rather quickly! You're going to have to get through this wreckage to free me!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Relend" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "fantasticvoyage-relend-30", + "lineInfo": { + "dialogue": "Wow, so you managed to work your way through after all! Maybe to free me, you can use that cannonball?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Relend" + } + } + ] + }, + "63": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-31", + "lineInfo": { + "dialogue": "Thank you for freeing me, now let's leave this mess! Although, I don't know how to do that, I have not even a guess.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-32", + "lineInfo": { + "dialogue": "When the ship crashed, it was buried beneath the sand! But the good news is that we're finally back on land!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-33", + "lineInfo": { + "dialogue": "We should probably get out of this place, it feels rather small. Perhaps you can try to break through that weak spot in the wall?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Relend" + } + } + ] + }, + "64": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-34", + "lineInfo": { + "dialogue": "We should probably get out of this place, it feels rather small. Perhaps you can try to break through that weak spot in the wall?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Relend" + } + } + ] + }, + "65": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-35", + "lineInfo": { + "dialogue": "It looks like we're going to be stuck here for a while. Come and speak to me so we can find a way off of this isle!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Relend" + } + } + ] + }, + "66": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-36", + "lineInfo": { + "dialogue": "Gateway Island... we've finally arri ved. I'm just thankful that we survived.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-37", + "lineInfo": { + "dialogue": "Well, all this adventuring has me hungry for stew. We'll need ingredients, whatever's on the island will have to do.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-38", + "lineInfo": { + "dialogue": "Meat is definitely something we need to reap, try and get [10 Raw Mutton] from those sheep.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-39", + "lineInfo": { + "dialogue": "And perhaps you could get [5 Edible Mushrooms] from the western cave, just make sure not to get the kind that will send me to my grave.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-40", + "lineInfo": { + "dialogue": "I feel like something is missing from this medley. Oh, how about you get [1 Coconut] from atop that tree?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-41", + "lineInfo": { + "dialogue": "And if you could fetch [7 Berries], that would just make me merry!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-42", + "lineInfo": { + "dialogue": "Check your quest book if you ever need a recap. And to make sure you don't get lost, take the map.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Relend" + } + } + ] + }, + "67": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-43", + "lineInfo": { + "dialogue": "Take a look at your quest book if you forgot your project, this island has supplies we ought to collect!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Relend" + } + } + ] + }, + "68": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-44", + "lineInfo": { + "dialogue": "If you need to create something, there are utilities on the beach. I know that my old friend is someone we shall finally reach.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Relend" + } + } + ] + }, + "69": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-45", + "lineInfo": { + "dialogue": "Well, this stew has a rather odd flavour. But any food we can get here I shall savour.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-46", + "lineInfo": { + "dialogue": "What remains of my ship won't protect us very well. We'll need to find shelter, as you can clearly tell.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-47", + "lineInfo": { + "dialogue": "To the east, I can just barely make out a tent. Go and look for my friend there, I'm simply hellbent!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Relend" + } + } + ] + }, + "70": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-48", + "lineInfo": { + "dialogue": "So the tent was all empty and run-down? All of this bad news is making me frown.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-49", + "lineInfo": { + "dialogue": "Allow me to borrow your map for a second. We'll have to find him somewhere else, I reckon.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-50", + "lineInfo": { + "dialogue": "I know we can come up with a solution using our wits. Perhaps we can craft an explosive to blow that big rock to bits!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-51", + "lineInfo": { + "dialogue": "Let's think of some materials we can get here. There isn't much on this island, I fear.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-52", + "lineInfo": { + "dialogue": "First we're going to need [5 Gritty Sand]. Where to get it? Try the beach at the back of the island.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-53", + "lineInfo": { + "dialogue": "Next up is [Sawdust], you'll need three. I think the best place to search would be the largest tree.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-54", + "lineInfo": { + "dialogue": "Finally, [1 Black Powder], found in a place that is very unique. You'll have to brave your way to the volcano's peak.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-55", + "lineInfo": { + "dialogue": "You'll need those items to craft the bomb, I just told you where to look. If you forget what you need to find, check your content book.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Relend" + } + } + ] + }, + "71": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-56", + "lineInfo": { + "dialogue": "Incredible, the explosive blew right through the stone!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-57", + "lineInfo": { + "dialogue": "Let us progress into this mysterious zone.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Relend" + } + } + ] + }, + "72": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-58", + "lineInfo": { + "dialogue": "For adventurers like us, an incredible cave, perfect to explore.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-59", + "lineInfo": { + "dialogue": "Surely where my old friend ventured - just as I swore!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-60", + "lineInfo": { + "dialogue": "Long ago, a strong adventurer like yourself reached out to me for a wonderful sail. It truly is a gripping tale!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-61", + "lineInfo": { + "dialogue": "We became the best of friends on our quest. But then he vanished, oh how he was the best.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Relend" + } + } + ] + }, + "73": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-62", + "lineInfo": { + "dialogue": "And we've finally made it to where he'd been. I can't wait to see him again, I don't know where to begin!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-63", + "lineInfo": { + "dialogue": "A mystical portal! This must be where my old friend got lost!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-64", + "lineInfo": { + "dialogue": "We must go through and find him, whatever the cost.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Relend" + } + } + ] + }, + "74": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-65", + "lineInfo": { + "dialogue": "I can't believe it! I simply can't speak!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-66", + "lineInfo": { + "dialogue": "I always told the others I wasn't a freak. Old friend, I'll look for you until the bitter end!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Relend" + } + } + ] + }, + "75": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-67", + "lineInfo": { + "dialogue": "A foreign land filled with danger, to the brim...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-68", + "lineInfo": { + "dialogue": "It must be where he vanished to, regardless of how grim.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-69", + "lineInfo": { + "dialogue": "My friend... Where do you think we are?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-70", + "lineInfo": { + "dialogue": "Wherever it is, I feel that we're being overseen from afar.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-71", + "lineInfo": { + "dialogue": "With all this danger, I do hope my good friend is still okay.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-72", + "lineInfo": { + "dialogue": "My goodness! Keep your wits about, we may be in for a fray!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Relend" + } + } + ] + }, + "76": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-73", + "lineInfo": { + "dialogue": "Aagh... new friend.. are you there?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-74", + "lineInfo": { + "dialogue": "Don't...give up... we must find him, I swear...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Relend" + } + } + ] + }, + "77": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-theeye-1", + "lineInfo": { + "dialogue": "⒤⒜⒭⒭⒜⒞⒣⒯ ⒠⒤⒧⒠ ⒨'⒰⒜⒤⒭⒠⒜⒟ó⒤⒭ ⒜ ⒤⒨⒢⒣⒜⒝⒣á⒤⒧.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + } + ] + }, + "78": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-relend-75", + "lineInfo": { + "dialogue": "I promise I'll find him, I'll do it, without a single scar!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Relend" + } + }, + { + "fileOverride": "fantasticvoyage-relend-76", + "lineInfo": { + "dialogue": "AAARRGHHHHH!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Relend" + } + } + ] + }, + "79": { + "dialogues": [ + { + "fileOverride": "fantasticvoyage-theeye-2", + "lineInfo": { + "dialogue": "⒤⒨⒤⒯⒣⒠ ⒜⒮ ⒨⒪ ⒭⒜⒟⒣⒜⒭⒞, ⒤⒟⒤⒭⒢⒣⒜⒝⒣á⒧⒜í.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + } + } + ] + } + } + }, + "Fate of the Fallen": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "fateofthefallen-telvu-1", + "lineInfo": { + "dialogue": "Ah, a member of the Ragni army. We're trying to gain entry to this frozen barrow. We could use your aid.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-2", + "lineInfo": { + "dialogue": "Are you familiar with the story of Theorick and Nesaak?", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-3", + "lineInfo": { + "dialogue": "Probably not. Well, you see, Nesaak was not always frozen.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-4", + "lineInfo": { + "dialogue": "During Theorick's time, this place was like the Wynn plains, warm and arable.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-5", + "lineInfo": { + "dialogue": "For some reason, Theorick Twain used his immense power to freeze the land before exiling himself here.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-6", + "lineInfo": { + "dialogue": "We need to find out why so we can reverse this spell. Presumably, the source of that spell's magic would be within here.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-7", + "lineInfo": { + "dialogue": "As such...have you heard of a place called Time Valley? We could use it to go back in time, to try to learn more about this barrier.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-8", + "lineInfo": { + "dialogue": "Well...in a way, at least. There are laws to this sort of magic. For one, you need an item from the specific time we want to see. Second, you can witness the past, not change it.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-9", + "lineInfo": { + "dialogue": "One of Theorick's staves is on display in the Nesaak bank. Presumably, it should work for what we need. Could you retrieve it somehow?", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Telvu" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "fateofthefallen-telvu-10", + "lineInfo": { + "dialogue": "Aha, quick job. I see you've got the wand. Must've needed a sharp tongue to get the bankers to give it up.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-11", + "lineInfo": { + "dialogue": "Now, it is a long walk to Time Valley. Needn't take that walk, though, as I can teleport you there. Hopefully.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-12", + "lineInfo": { + "dialogue": "Once you're there, enter the Temple of Time. You should know what to do once you are there. Careful dealing with time travel, friend... No idea what you might find.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Telvu" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "fateofthefallen-telvu-13", + "lineInfo": { + "dialogue": "Should anything go wrong, I'll stay here to teleport you back to the temple.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Telvu" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "fateofthefallen-psern-1", + "lineInfo": { + "dialogue": "What the...", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Psern" + } + }, + { + "fileOverride": "fateofthefallen-psern-2", + "lineInfo": { + "dialogue": "Woah, your weaponry and armour is so advanced!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Psern" + } + }, + { + "fileOverride": "fateofthefallen-psern-3", + "lineInfo": { + "dialogue": "Are you another Twain? Only the Twains know magic like that.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Psern" + } + }, + { + "fileOverride": "fateofthefallen-psern-4", + "lineInfo": { + "dialogue": "Oh, you're looking for Theorick.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Psern" + } + }, + { + "fileOverride": "fateofthefallen-psern-5", + "lineInfo": { + "dialogue": "He's busy fighting in the war, shouldn't you be doing the same?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Psern" + } + }, + { + "fileOverride": "fateofthefallen-psern-6", + "lineInfo": { + "dialogue": "He went west. There was some kind of emergency.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Psern" + } + }, + { + "fileOverride": "fateofthefallen-psern-7", + "lineInfo": { + "dialogue": "We've been fighting the corruption for years, it seems like it might finally engulf Nesaak.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Psern" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "fateofthefallen-theorick-1", + "lineInfo": { + "dialogue": "I could've sworn she had gone this way... Oh, what now, more imbeciles? This forest isn't safe to travel!", + "line": { + "current": 1, + "max": 15 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-2", + "lineInfo": { + "dialogue": "If you need help, lodge a complaint with the guards. I'm busy and I can't exactly break away from saving this god-blessed province to chill your milk!!", + "line": { + "current": 2, + "max": 15 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-3", + "lineInfo": { + "dialogue": "Are your ears full of wax?! I said-", + "line": { + "current": 3, + "max": 15 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-4", + "lineInfo": { + "dialogue": "Urgh, the things followed you! See what happens?! STAND ASIDE.", + "line": { + "current": 4, + "max": 15 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-5", + "lineInfo": { + "dialogue": "As though I needed TWO people to save! Now get out of here, I have to find that woman who went missing!", + "line": { + "current": 5, + "max": 15 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-girl-1", + "lineInfo": { + "dialogue": "HEEEELP! I can't outrun them!!! Guards! Someone!!", + "line": { + "current": 6, + "max": 15 + }, + "npc": "???" + } + }, + { + "fileOverride": "fateofthefallen-theorick-6", + "lineInfo": { + "dialogue": "Whuh! That's her voice! Where is she?! I just cleared this area!", + "line": { + "current": 7, + "max": 15 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-girl-2", + "lineInfo": { + "dialogue": "Th-Theorick!! There's corrupteds!!", + "line": { + "current": 8, + "max": 15 + }, + "npc": "Girl" + } + }, + { + "fileOverride": "fateofthefallen-theorick-7", + "lineInfo": { + "dialogue": "Ugh, is she dragging them over from the west?! You there, If you don't want to end up frozen, GET BEHIND ME, NOW!!", + "line": { + "current": 9, + "max": 15 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-8", + "lineInfo": { + "dialogue": "Phew... You're out of danger now. If you hadn't left town, though, you wouldn't have been IN any danger at all!", + "line": { + "current": 10, + "max": 15 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-9", + "lineInfo": { + "dialogue": "Don't bother apologizing to me, just get back to town. Now.", + "line": { + "current": 11, + "max": 15 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-10", + "lineInfo": { + "dialogue": "Next time you feel like picking flowers in the forest or whatever you were doing, remember you have a life to live, hm?!", + "line": { + "current": 12, + "max": 15 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-11", + "lineInfo": { + "dialogue": "Every day, more corrupteds, more deaths... There is only one thing for it. I have to tackle it myself. Cut the roots...and kill this hellish weed.", + "line": { + "current": 13, + "max": 15 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-12", + "lineInfo": { + "dialogue": "Still here? Well, listen up. Myself and a few others are planning something risky. Damned be it if our minds are lost, I need to go through that portal.", + "line": { + "current": 14, + "max": 15 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-13", + "lineInfo": { + "dialogue": "You look heavily geared, so I'm conscripting you. Meet us at our base, immediately. Follow the river south and you'll see a house on the right side.", + "line": { + "current": 15, + "max": 15 + }, + "npc": "Theorick" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "fateofthefallen-theorick-14", + "lineInfo": { + "dialogue": "Well, I'll give you this. You're prompt to listen to orders, at least. We're headed to the Roots of Corruption.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-15", + "lineInfo": { + "dialogue": "The last man that entered the portal and returned became Bak’al... But if there is even a fraction of a chance this could work, we must take it at this point.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-16", + "lineInfo": { + "dialogue": "Let's get moving. We'll be taking no breaks on the trip, so I hope you were prepared.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Theorick" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "fateofthefallen-theorick-17", + "lineInfo": { + "dialogue": "Now. The sheer cold I command can stave off corruption itself. Somehow I doubt any of you can say the same. I'll go in alone.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-18", + "lineInfo": { + "dialogue": "When I enter... If I had to make an assumption, corrupteds will swarm the portal after me. Your job? Slay them. I can't have distractions in there.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-19", + "lineInfo": { + "dialogue": "You will not be leaving your post here until I exit that portal. Understood?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Theorick" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "fateofthefallen-theorick-20", + "lineInfo": { + "dialogue": "...no...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-21", + "lineInfo": { + "dialogue": "...no, no, no no no NO!! DAMN IT ALL!!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-22", + "lineInfo": { + "dialogue": "You know what happened?! I lost!! I will destroy the province if I turn completely! GET AWAY, NOW! DO YOU HEAR ME?! RUN!!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-23", + "lineInfo": { + "dialogue": "I... C-calm yourself, Theorick...don't...don't lose yourself to it...there's...yet a solution...one way...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Theorick" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "fateofthefallen-theorick-24", + "lineInfo": { + "dialogue": "Oh...you again...the others...dead? Run off? Cowards...urgh...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-25", + "lineInfo": { + "dialogue": "You live...so...eyes up. Listen to me. If I turn...w-when...when I turn...n-no, can't...gaaah, I'll destr- Nggh...", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-26", + "lineInfo": { + "dialogue": "I won't last, you can tell... Right now...killing me is an impossibility, you idiotic weakl- Agh, GET OUT OF MY MIND!!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-27", + "lineInfo": { + "dialogue": "Gaaah... Tell...everyone. I will freeze this place. I...t-too fargone. It needs time to heal...and my powers m-must be dampened...frozen...", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-28", + "lineInfo": { + "dialogue": "All worthless... Urgh, no...they yet deserve life...and this spell...it will surely claim some. Please, let them know why...", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-29", + "lineInfo": { + "dialogue": "If I have learned anything from that insufferable f- ...from Mael...deaths without reason lets spirits linger. I would...prefer against giving him a harder time.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-30", + "lineInfo": { + "dialogue": "K-keep advancing. Your things, if everyone was as strong as you...we may stand a chance. This could end me, in time, once I am weaker.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Theorick" + } + }, + { + "fileOverride": "fateofthefallen-theorick-31", + "lineInfo": { + "dialogue": "Let it be known...Theorick Twain is not dead. He cannot be killed...all will burn...until future days. Here, in this accursed place. Find me...and end it all.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Theorick" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "fateofthefallen-telvu-14", + "lineInfo": { + "dialogue": "You must have succeeded, or you would be yet in the memory of the past. I can feel some potent magic on you.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-15", + "lineInfo": { + "dialogue": "So, you met Theorick? He was always said to have fallen from heroism after the great freezing.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-16", + "lineInfo": { + "dialogue": "Hm...wait, this flame...did you receive it from the Temple of Time? How did...what is...this is impossible, given what we know!", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-17", + "lineInfo": { + "dialogue": "It unfreezes the entrance, you say...and...Th-Theorick...gave...he...what...? This raises so many more questions! Unless there was some other force at play...", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-18", + "lineInfo": { + "dialogue": "Well, ruminating on that will not help. Were you able to figure out why it was Theorick froze this place, at least?", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-19", + "lineInfo": { + "dialogue": "Wha...so many revelations...ice magic staves off corruption...? It is true that this place has seen less corrupted threats than other places in the province...", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-20", + "lineInfo": { + "dialogue": "Dear gods... We've had it all wrong this whole time... This was to protect everyone...but surely he would have told someone his intentions if he was of that sound a mind!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-21", + "lineInfo": { + "dialogue": "All this time, spent buried alive, wrestling with the corruption. The thought horrifies you, as well, judging by your face. Killing him would be a mercy.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Telvu" + } + }, + { + "fileOverride": "fateofthefallen-telvu-22", + "lineInfo": { + "dialogue": "Here. Use this. It may help protect you within the Ice Barrows... Please, soldier. Be Theorick's guardian angel. Free him from this torment.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Telvu" + } + } + ] + } + } + }, + "Flight in Distress": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "flightindistress-airshipclerk-1", + "lineInfo": { + "dialogue": "Good day, soldier! Will you be flying with us today?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Airship Clerk" + } + }, + { + "fileOverride": "flightindistress-airshipclerk-2", + "lineInfo": { + "dialogue": "May I see your passport please?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Airship Clerk" + } + }, + { + "fileOverride": "flightindistress-airshipclerk-3", + "lineInfo": { + "dialogue": "It's a bit dusty! It looks very old, but the picture looks like you.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Airship Clerk" + } + }, + { + "fileOverride": "flightindistress-airshipclerk-4", + "lineInfo": { + "dialogue": "Well everything seems to be in order, climb aboard and I hope you have a pleasant journey.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Airship Clerk" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "flightindistress-airshipclerk-5", + "lineInfo": { + "dialogue": "You may now board the airship! Enjoy your flight!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Airship Clerk" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "flightindistress-airshipclerk-6", + "lineInfo": { + "dialogue": "Can I see your passport please? Oh, without a passport, I'm afraid you can not board.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Airship Clerk" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "flightindistress-airshipclerk-7", + "lineInfo": { + "dialogue": "I am sorry, this is a private flight for experienced customers only.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Airship Clerk" + } + }, + { + "fileOverride": "flightindistress-airshipclerk-8", + "lineInfo": { + "dialogue": "The minimum requirement is level 75 for this flight.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Airship Clerk" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "flightindistress-attendant-1", + "lineInfo": { + "dialogue": "Good day to you, soldier! This will be your quarters for the flight. I wish you a pleasant trip with us!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Attendant" + } + }, + { + "fileOverride": "flightindistress-attendant-2", + "lineInfo": { + "dialogue": "You can sleep through your journey here if you have nothing else to do!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Attendant" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "flightindistress-captainackbar-1", + "lineInfo": { + "dialogue": "Are you here to volunteer to search for the missing child?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-2", + "lineInfo": { + "dialogue": "We only just set off and there is already an incident.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-3", + "lineInfo": { + "dialogue": "His mother informed us that her son disappeared soon after boarding.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-4", + "lineInfo": { + "dialogue": "Poor parenting, if you ask me. Alas, we must find the lad.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-5", + "lineInfo": { + "dialogue": "Since we don't have any leads, it might be best to ask some of the passengers for information.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-6", + "lineInfo": { + "dialogue": "Most of them will be in the dining area or in the lounge.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-7", + "lineInfo": { + "dialogue": "Thank you so much for your help; I hope you find the lad soon.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Captain Ackbar" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "flightindistress-captainackbar-8", + "lineInfo": { + "dialogue": "Hello again, did you find him?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-9", + "lineInfo": { + "dialogue": "How did he get down there?! There is supposed to be someone on duty!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-10", + "lineInfo": { + "dialogue": "Thank you so much for finding him. You were the only volunteer.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-11", + "lineInfo": { + "dialogue": "Hopefully that is the only hiccup in the journey.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Captain Ackbar" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "flightindistress-captainackbar-12", + "lineInfo": { + "dialogue": "Feel free to return to your quarters and enjoy the rest of your journey.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Captain Ackbar" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "flightindistress-captainackbar-13", + "lineInfo": { + "dialogue": "Oh, hey! Are you here to help again?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-14", + "lineInfo": { + "dialogue": "I really appreciate it. My crew seem to be absolutely nowhere!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-15", + "lineInfo": { + "dialogue": "OK, well the situation is pretty bad. The engines have broken down.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-16", + "lineInfo": { + "dialogue": "The engineer downstairs is trying to figure out a solution, but he's not the brightest villager in Gavel.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-17", + "lineInfo": { + "dialogue": "Would you mind having a talk with the engineer, and see i f you can help?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-18", + "lineInfo": { + "dialogue": "I have to stay here and man the brig, but if you head down to the engine room, we would greatly appreciate it.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Captain Ackbar" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "flightindistress-captainackbar-19", + "lineInfo": { + "dialogue": "Wow... You single handedly took out a skyraider invasion.", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-20", + "lineInfo": { + "dialogue": "And you're a passenger! It's a good job you did...", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-21", + "lineInfo": { + "dialogue": "We have no defense on this ship. We are a civilian carrier.", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-22", + "lineInfo": { + "dialogue": "What is this? A ring from the Queen?! It looks valuable. You should keep it.", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-23", + "lineInfo": { + "dialogue": "I still do not know how to thank you... We owe you so much.", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-24", + "lineInfo": { + "dialogue": "Wait! I know! You can have free travel between Detlas and Cinfras!", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-25", + "lineInfo": { + "dialogue": "A private airship owner called Calo owes me big.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-26", + "lineInfo": { + "dialogue": "I will tell him the deal. All you have to do is enter his ship and he'll take you back and for th!", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-27", + "lineInfo": { + "dialogue": "Oh, and you will also be rewarded kindly monetarily. I will also personally send him the ring, so that it doesn't get damaged on the way, and you will receive it there.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-28", + "lineInfo": { + "dialogue": "Just head down to the entrance deck, and we are about to arrive at Detlas Airbase now.", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-29", + "lineInfo": { + "dialogue": "Thanks for helping us, really!", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Captain Ackbar" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "flightindistress-captainackbar-30", + "lineInfo": { + "dialogue": "Please remain seated, passengers. We'll be taking off in a moment!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Ackbar" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "flightindistress-captainackbar-31", + "lineInfo": { + "dialogue": "I am busy at the moment. Look in your quest book if you are lost.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Ackbar" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "flightindistress-captainackbar-32", + "lineInfo": { + "dialogue": "What in good heavens was that? Crew, report!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Ackbar" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "flightindistress-airshipcrewmember-1", + "lineInfo": { + "dialogue": "Sir! One of our engines blew out! We've lost all thrust on that side.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Airship Crewmember" + } + }, + { + "fileOverride": "flightindistress-captainackbar-33", + "lineInfo": { + "dialogue": "Blast it all! We are sitting dead in the water without both engines.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Captain Ackbar" + } + }, + { + "fileOverride": "flightindistress-captainackbar-34", + "lineInfo": { + "dialogue": "Go check on the condition of the passengers.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Captain Ackbar" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "flightindistress-captainackbar-35", + "lineInfo": { + "dialogue": "Soldier, go report to the Engineer in the engine room and see if there is anything you can do to help us get moving once again.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Ackbar" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "flightindistress-captainackbar-36", + "lineInfo": { + "dialogue": "M en, hold her steady. We can still survive this! We just need to stop them following us.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Ackbar" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "flightindistress-missingchild-1", + "lineInfo": { + "dialogue": "Hey! Look at that ship over in the distance. It's been following us since we lifted off.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Missing Child" + } + }, + { + "fileOverride": "flightindistress-missingchild-2", + "lineInfo": { + "dialogue": "I know I shouldn't be down here but...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Missing Child" + } + }, + { + "fileOverride": "flightindistress-missingchild-3", + "lineInfo": { + "dialogue": "I love airships, and I've never seen one like that.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Missing Child" + } + }, + { + "fileOverride": "flightindistress-missingchild-4", + "lineInfo": { + "dialogue": "Oh, my mummy wants me?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Missing Child" + } + }, + { + "fileOverride": "flightindistress-missingchild-5", + "lineInfo": { + "dialogue": "Okay then, I'll head back right now!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Missing Child" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "flightindistress-missingchild-6", + "lineInfo": { + "dialogue": "I'm sorry I caused such a worry earlier...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Found Child" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "flightindistress-engineinstructions-1", + "lineInfo": { + "dialogue": "In event of shut-down, maintenance must be performed.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Engine Instructions" + } + }, + { + "fileOverride": "flightindistress-engineinstructions-2", + "lineInfo": { + "dialogue": "Worker must restart all wooden switches before the engine overheats.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Engine Instructions" + } + }, + { + "fileOverride": "flightindistress-engineinstructions-3", + "lineInfo": { + "dialogue": "DO NOT PRESS THE STONE SWITCHES", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Engine Instructions" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "flightindistress-broadcast-1", + "lineInfo": { + "dialogue": "Attention passengers. There has been a missing person reported aboard. If there are any volunteers to help search for them, please report to the bridge and speak to the captain.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Broadcast" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "flightindistress-broadcast-2", + "lineInfo": { + "dialogue": "All staff report to stations! This is not a drill! All staff, report to stations!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Broadcast" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "flightindistress-capturedprisoner-1", + "lineInfo": { + "dialogue": "I heard fighting? Is someone there? I am in the jail cell!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captured Prisoner" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "flightindistress-capturedprisoner-2", + "lineInfo": { + "dialogue": "Hey! Don't leave before talking to me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captured Prisoner" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "flightindistress-capturedprisoner-3", + "lineInfo": { + "dialogue": "I heard the fighting above, well done! Any chance to see those raiders get what's coming warms my old heart.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Captured Prisoner" + } + }, + { + "fileOverride": "flightindistress-capturedprisoner-4", + "lineInfo": { + "dialogue": "I used to be the greatest locksmith in all of Gavel! I was known all over, unfortunately.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Captured Prisoner" + } + }, + { + "fileOverride": "flightindistress-capturedprisoner-5", + "lineInfo": { + "dialogue": "These fiends captured me, years ago, and made me create hundreds of keys for their raids.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Captured Prisoner" + } + }, + { + "fileOverride": "flightindistress-capturedprisoner-6", + "lineInfo": { + "dialogue": "I am much too old now, but I would love to see them taken down before I leave this world.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Captured Prisoner" + } + }, + { + "fileOverride": "flightindistress-capturedprisoner-7", + "lineInfo": { + "dialogue": "My key making gear is stored down the hall, behind the staircase. You can use them to craft a way inside the Queen's quarters.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Captured Prisoner" + } + }, + { + "fileOverride": "flightindistress-capturedprisoner-8", + "lineInfo": { + "dialogue": "Just look into the keyhole to see how to make them. Good luck!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Captured Prisoner" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "flightindistress-capturedprisoner-9", + "lineInfo": { + "dialogue": "My key making gear is down the hall. Use it to make a key to the Queen's quarters.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captured Prisoner" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "flightindistress-skyraiderqueen-1", + "lineInfo": { + "dialogue": "So you think you can just come on my ship, huh? ", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Skyraider Queen" + } + }, + { + "fileOverride": "flightindistress-skyraiderqueen-2", + "lineInfo": { + "dialogue": "Kill my crew? Interrupt my plunder? ", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Skyraider Queen" + } + }, + { + "fileOverride": "flightindistress-skyraiderqueen-3", + "lineInfo": { + "dialogue": "I know how to deal with 'problems' like you! ", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Skyraider Queen" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "flightindistress-shipcrew-1", + "lineInfo": { + "dialogue": "This area is off limits to passengers during take off. Climb up to the passenger decks, there will be an attendee at your cabin.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ship Crew" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "flightindistress-baronaxol-1", + "lineInfo": { + "dialogue": "Greetings, young adventurer. You haven't seen my glasses, have you?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Baron Axol" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "flightindistress-passengernancy-1", + "lineInfo": { + "dialogue": "*Sniff*... Have you seen my child? We were in our cabin, and then he just disappeared!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Passenger Nancy" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "flightindistress-subengineerakot-1", + "lineInfo": { + "dialogue": "I heard that a big ship was approaching from north. I saw it from the entrance deck. I wonder what they are doing.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sub-engineer Akot" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "flightindistress-passengercasula-1", + "lineInfo": { + "dialogue": "Apologies, I haven't seen the kid you're looking for.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Passenger Casula" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "flightindistress-passengerjohn-1", + "lineInfo": { + "dialogue": "The interior of this ship is beautiful!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Passenger John" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "flightindistress-passengerjohn-2", + "lineInfo": { + "dialogue": "Ah, yes...I saw a little child run past me. He was shouting about an airship outside or something.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Passenger John" + } + }, + { + "fileOverride": "flightindistress-passengerjohn-3", + "lineInfo": { + "dialogue": "He swiftly made his way down the stairs to the bottom deck. Nobody seems to have seen him inside the ship after that.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Passenger John" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "flightindistress-passengernancy-2", + "lineInfo": { + "dialogue": "Have you found my child?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Passenger Nancy" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "flightindistress-passengerjeremy-1", + "lineInfo": { + "dialogue": "That ship the little kid was talking about...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Passenger Jeremy" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "flightindistress-calo-1", + "lineInfo": { + "dialogue": "Hey there. You must be the Human Ackbar told me about.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Calo" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "flightindistress-engineereric-1", + "lineInfo": { + "dialogue": "Ye must be the 'uman the captain done told me about.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Engineer Eric" + } + }, + { + "fileOverride": "flightindistress-engineereric-2", + "lineInfo": { + "dialogue": "We sure are havin' quite the situation down 'ere.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Engineer Eric" + } + }, + { + "fileOverride": "flightindistress-engineereric-3", + "lineInfo": { + "dialogue": "I hafta stay here and man the 'ngines, else she might damage 'erself", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Engineer Eric" + } + }, + { + "fileOverride": "flightindistress-engineereric-4", + "lineInfo": { + "dialogue": "If ye wanna help 'uman, go on up the riggin' and take a gander at the props.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Engineer Eric" + } + }, + { + "fileOverride": "flightindistress-engineereric-5", + "lineInfo": { + "dialogue": "Ye can get to 'em through the access 'atches in the bridge.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Engineer Eric" + } + }, + { + "fileOverride": "flightindistress-engineereric-6", + "lineInfo": { + "dialogue": "If'n they are stopped, just hit the breakers that are off.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Engineer Eric" + } + }, + { + "fileOverride": "flightindistress-engineereric-7", + "lineInfo": { + "dialogue": "Come back here when ye done. I need ta stay here and keep her cool.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Engineer Eric" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "flightindistress-engineereric-8", + "lineInfo": { + "dialogue": "I need ta take care of the 'ngines, stay clear!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Engineer Eric" + } + }, + { + "fileOverride": "flightindistress-engineereric-9", + "lineInfo": { + "dialogue": "If'n you are lost, take a gander at ya content book.!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Engineer Eric" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "flightindistress-engineereric-10", + "lineInfo": { + "dialogue": "Thank ye! The 'ngines are back up and running!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Engineer Eric" + } + }, + { + "fileOverride": "flightindistress-engineereric-11", + "lineInfo": { + "dialogue": "I couldn't have dun it without ye.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Engineer Eric" + } + }, + { + "fileOverride": "flightindistress-engineereric-12", + "lineInfo": { + "dialogue": "You go back to yer quarters and get some rest. A passen'er like yerself shouldn' have to help the crew.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Engineer Eric" + } + }, + { + "fileOverride": "flightindistress-engineereric-13", + "lineInfo": { + "dialogue": "I hope the rest of yer journey is good. I'll let the good cap'n know so he can turn her up ta max and get us movin' again.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Engineer Eric" + } + }, + { + "fileOverride": "flightindistress-engineereric-14", + "lineInfo": { + "dialogue": "Thanks 'uman.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Engineer Eric" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "flightindistress-engineereric-15", + "lineInfo": { + "dialogue": "Hol' togetha old girl, ye got this!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Engineer Eric" + } + } + ] + } + } + }, + "Forbidden Prison": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-merchant-1", + "lineInfo": { + "dialogue": "Hey, hey, humie! Yeah, I'm talkin to ya here..", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Merchant" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-prisonguard-1", + "lineInfo": { + "dialogue": "OI! Wake up, you damned miscreant!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-2", + "lineInfo": { + "dialogue": "Took ya long enough.. Alright, listen up, maggot!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Prison Guard" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-3", + "lineInfo": { + "dialogue": "We found ya outside of Gelibord, passed out near some dead body, and... Well, we had to arrest someone for that merchant's death!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Prison Guard" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-4", + "lineInfo": { + "dialogue": "So, welcome to the Lexdale Penitentiary. You're in here for the rest of your life, short-nose, so no use complaining about it.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Prison Guard" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-5", + "lineInfo": { + "dialogue": "And don't think you get to just lounge around all day in your cell. You gotta do work here, or you're getting thrown in the hole.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Prison Guard" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-6", + "lineInfo": { + "dialogue": "But for now, you’re stayin’ in your cell, understood? Now, stay here, and take a look around your cell. You'll know when it's time to work..", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Prison Guard" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "3": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-oldprisoner-1", + "lineInfo": { + "dialogue": "GWAH! Who the hell are you?", + "line": { + "current": 1, + "max": 13 + }, + "npc": "Old Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-oldprisoner-2", + "lineInfo": { + "dialogue": "Oh, thank grook, you're just another prisoner... So young, too...", + "line": { + "current": 2, + "max": 13 + }, + "npc": "Old Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-oldprisoner-3", + "lineInfo": { + "dialogue": "You just got here, right? Well... I can tell you're innocent... Just like almost everyone else in this forsaken prison...", + "line": { + "current": 3, + "max": 13 + }, + "npc": "Old Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-oldprisoner-4", + "lineInfo": { + "dialogue": "Listen, human... This prison... You couldn't have come to a more horrific prison in the entire world! This place is hellish!!", + "line": { + "current": 4, + "max": 13 + }, + "npc": "Old Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-oldprisoner-5", + "lineInfo": { + "dialogue": "The guards here, they're sadistic! They'll pluck random prisoners out of their cells, and nobody ever sees them again! They're trying to kill us all in here!", + "line": { + "current": 5, + "max": 13 + }, + "npc": "Old Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-oldprisoner-6", + "lineInfo": { + "dialogue": "I'm being serious, human! If you stay here, they'll kill you, too! You HAVE to escape this place, whatever it t-", + "line": { + "current": 6, + "max": 13 + }, + "npc": "Old Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-7", + "lineInfo": { + "dialogue": "Oi, filth! You're comin' with us. Get out of your cell, NOW!", + "line": { + "current": 7, + "max": 13 + }, + "npc": "Prison Guard" + } + }, + { + "fileOverride": "forbiddenprison-oldprisoner-7", + "lineInfo": { + "dialogue": "Are you sure, uh, sir? I don't think I'm supposed to be anywhere today...", + "line": { + "current": 8, + "max": 13 + }, + "npc": "Old Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-8", + "lineInfo": { + "dialogue": "Oh, ya think you're smart, trying to resist?? Oi, Jon, block the entrance!", + "line": { + "current": 9, + "max": 13 + }, + "npc": "Prison Guard" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-1", + "lineInfo": { + "dialogue": "H-HEY! WHAT ARE YOU- GET OFF- AAAAAHH!! SOMEONE!! HELP ME!!! PLEASE!!!!", + "line": { + "current": 10, + "max": 13 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-9", + "lineInfo": { + "dialogue": "OI! Quit starin’ off into space, maggot! Come over to your cell's bars.", + "line": { + "current": 11, + "max": 13 + }, + "npc": "Prison Guard" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-10", + "lineInfo": { + "dialogue": "It’s work time, filth. I'll escort you to the hallways. Once you're there, someone will tell you what to do. Do as they say, and you might come back tonight.", + "line": { + "current": 12, + "max": 13 + }, + "npc": "Prison Guard" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-11", + "lineInfo": { + "dialogue": "You got that, wretch? Alright, now get out of your cell! ", + "line": { + "current": 13, + "max": 13 + }, + "npc": "Prison Guard" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "4": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-prisonguard-12", + "lineInfo": { + "dialogue": "Guess you're the one on cleanin' duty, huh? Alright. Listen up, scum!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Prison Guard" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-13", + "lineInfo": { + "dialogue": "Take this sponge, and look around the hallways. If you see a mess, use the sponge to clean it up. Someone will escort you back to the cells once you're done.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Prison Guard" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-14", + "lineInfo": { + "dialogue": "Got it? Alright. Now, get to work!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Prison Guard" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "5": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-prisonguard-15", + "lineInfo": { + "dialogue": "You're done cleaning? Alright, it's time for rollcall. You're being escorted back to the cell block. Follow me, and don't move.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Prison Guard" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "6": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-thewarden-1", + "lineInfo": { + "dialogue": "Well, well, well... Looks like the dross of society is here on time!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "The Warden" + } + }, + { + "fileOverride": "forbiddenprison-thewarden-2", + "lineInfo": { + "dialogue": "Alright. Stay in line, and don't move, maggots! It's time for roll call... ", + "line": { + "current": 2, + "max": 6 + }, + "npc": "The Warden" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "7": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-thewarden-3", + "lineInfo": { + "dialogue": "You’re all here... Ha! That’s a surprise, you outcasts can actually follow orders!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "The Warden" + } + }, + { + "fileOverride": "forbiddenprison-thewarden-4", + "lineInfo": { + "dialogue": "...Hm... Looks like we’ve got a new arrival too.. Don’t worry, peon... your soul will be well secure here for the rest of eternity.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "The Warden" + } + }, + { + "fileOverride": "forbiddenprison-thewarden-5", + "lineInfo": { + "dialogue": "Alright. That’s it for now, you worthless menaces. It’s meal time. Head to the cafeteria, and pray that we’re not giving you your last meal.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "The Warden" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "8": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-starvingprisoner-1", + "lineInfo": { + "dialogue": "Hi... Say, could you... do something for me...?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Starving Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-starvingprisoner-2", + "lineInfo": { + "dialogue": "I'm... starving to death here... those blasted guards won't... let me get any food...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Starving Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-starvingprisoner-3", + "lineInfo": { + "dialogue": "Please... to my right.. There's some food sitting there, if you could get it for me, I'd be... eternally grateful..", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Starving Prisoner" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "9": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-starvingprisoner-4", + "lineInfo": { + "dialogue": "Is this... it's... Food!!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Starving Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-starvingprisoner-5", + "lineInfo": { + "dialogue": "I... I can't thank you enough, human... I should be able to keep going with this...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Starving Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-starvingprisoner-6", + "lineInfo": { + "dialogue": "Say... if you ever get out of this slaughterhouse... could you go to Lexdale... and try and talk with my family, there? Let them know that I'm still alive...? I'd appreciate that....", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Starving Prisoner" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "10": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-mafiaprisoner-1", + "lineInfo": { + "dialogue": "Oi, who’s this guy right ‘ere? We don’t know ya. Move it!", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Mafia Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-mafiaprisoner-2", + "lineInfo": { + "dialogue": "‘Ey, ‘ey, let it rest, Don. They're not hurtin’ nobody.", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Mafia Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-mafiaprisoner-3", + "lineInfo": { + "dialogue": "...Got it, boss... Sorry...", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Mafia Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-mafiaprisoner-4", + "lineInfo": { + "dialogue": "Don't worry about it. So... You know who we are, novello?", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Mafia Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-mafiaprisoner-5", + "lineInfo": { + "dialogue": "We're part of the Placido Crime Family. We do business across the entire world; all parts of it, you know what I'm saying?", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Mafia Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-mafiaprisoner-6", + "lineInfo": { + "dialogue": "Almost all of us at this table got caught for running with the family-... Ah, bet you're surprised to hear that there are some guilty people up in this slaughterhouse, yeah?", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Mafia Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-mafiaprisoner-7", + "lineInfo": { + "dialogue": "It’s alright, you don’t have to worry about us getting plucked and killed like those other piacevole here. Guards keep on sayin’ something about “our souls are too tainted”, whatever they mean.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Mafia Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-mafiaprisoner-8", + "lineInfo": { + "dialogue": "Hah! Maybe you'll get the same treatment too, novello. I saw it the minute I laid eyes on ya. You're a killer too, ain't ya? Hey, gotta be one to know you're dealin' with one..", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Mafia Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-mafiaprisoner-9", + "lineInfo": { + "dialogue": "Don't. If you can, you gotta escape. You might think it's impossible for someone to escape here, or whatnot...", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Mafia Prisoner: ..Anyways... You thinkin' about staying in this prison, fratello? Word of advice" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-16", + "lineInfo": { + "dialogue": "Alright, meal time's over! Get to your cells, filth!", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Prison Guard" + } + }, + { + "fileOverride": "forbiddenprison-mafiaprisoner-10", + "lineInfo": { + "dialogue": "But no, you're different. I can see it in those eyes. You just gotta find a way into that Control Room, somehow. And hey, if you do get outta here, go and raise some hell in the Levtus Black Market for us, yeah?", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Mafia Prisoner" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "11": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-prisoner-2", + "lineInfo": { + "dialogue": "Hey.. It’s alright, you can sit here, don’t worry.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-3", + "lineInfo": { + "dialogue": "So... you’re new here, right? Hah... Guessing you’re innocent, just like the rest of us... and I mean that...", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-4", + "lineInfo": { + "dialogue": "He’s tellin’ the truth, new guy. Most of us here are just average civilians. I worked at a transportation company in Cinfras, and was delivering some crates to Gelibord when they snatched me just outside of town.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-5", + "lineInfo": { + "dialogue": "Me too! I don’t know why I was put in here at all! I wasn’t even given a trial in court, or anything! They just plucked me off of the streets and threw me in here!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-6", + "lineInfo": { + "dialogue": "They wanna kill you, that’s why. Did ya hear about Revan? He got taken away a couple of days ago, after he accidentally stumbled during roll call. Nobody’s heard from or seen ‘em since.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-7", + "lineInfo": { + "dialogue": "I... you’re probably right... I just dont understand any of this anymore... I just want to escape this damn place for good...", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-8", + "lineInfo": { + "dialogue": "...Good luck with that.. Only way out is through that exit door, and even then you gotta get into the Control Room, as well. It's...just impossible, y’know?", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-17", + "lineInfo": { + "dialogue": "Alright, meal time’s over! Get to your cells, filth!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Prison Guard" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-9", + "lineInfo": { + "dialogue": "...Well... That’s this place in a nutshell for you, human. Just try not to get in anyone’s way or step out of line, and you should be alright until they end up taking you.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Prisoner" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "12": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-prisonguard-18", + "lineInfo": { + "dialogue": "Alright! Everyone, get up! Out of your cells, NOW! It's time for rollcall!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "???" + } + }, + { + "fileOverride": "forbiddenprison-thewarden-6", + "lineInfo": { + "dialogue": "Alright, look straight, scum! Morning rollcall is about to start.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "The Warden" + } + }, + { + "fileOverride": "forbiddenprison-thewarden-7", + "lineInfo": { + "dialogue": "Let's see here...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "The Warden" + } + }, + { + "fileOverride": "forbiddenprison-thewarden-8", + "lineInfo": { + "dialogue": "...you’re all here...? Hm... Disappointing, honestly. Rollcall is over. All of you, head to wherever your job is, and get to work!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "The Warden" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "13": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-prisonguard-19", + "lineInfo": { + "dialogue": "You're done? Alright, now follow me. Rollcall is about to start.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Prison Guard" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "14": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-thewarden-9", + "lineInfo": { + "dialogue": "What with you all, showing up late like this?? It's time for rollcall! ", + "line": { + "current": 1, + "max": 11 + }, + "npc": "The Warden" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "15": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-thewarden-10", + "lineInfo": { + "dialogue": "You're all here, huh? Alright then, head on to dinn-", + "line": { + "current": 3, + "max": 11 + }, + "npc": "The Warden" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-10", + "lineInfo": { + "dialogue": "Oi! Quit steppin' on my shoes, cretino!", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-11", + "lineInfo": { + "dialogue": "Hey! What the hell are you talkin' about, making up something like that! I didn't do anythin'!", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-12", + "lineInfo": { + "dialogue": "Shut it, fat-nose! You know what you were doin'! Now stay out of my way! ", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-thewarden-11", + "lineInfo": { + "dialogue": "OI! Are you blind, or something?!? Get those lowlifes under control, guards!", + "line": { + "current": 7, + "max": 11 + }, + "npc": "The Warden" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-20", + "lineInfo": { + "dialogue": "You two got some damn nerve, fightin' during rollcall! ", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Prison Guard" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-13", + "lineInfo": { + "dialogue": "Don't touch me!", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-21", + "lineInfo": { + "dialogue": "W-Woah, HEY! This maggot has a shank! Back up!!!", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Prison Guard" + } + }, + { + "fileOverride": "forbiddenprison-prisonguard-22", + "lineInfo": { + "dialogue": "LOCKDOWN! LOCKDOWN! ALL OF YOU, IN YOUR CELLS, NOW!", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Prison Guard" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "16": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-thewarden-12", + "lineInfo": { + "dialogue": "You two really are stupid, huh? Fighting in the midst of all of these guards? And you got a shank, too...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "The Warden" + } + }, + { + "fileOverride": "forbiddenprison-thewarden-13", + "lineInfo": { + "dialogue": "Well, looks like it's game over for you two outcasts. You're heading straight to the hole!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "The Warden" + } + }, + { + "fileOverride": "forbiddenprison-thewarden-14", + "lineInfo": { + "dialogue": "You, take these two cretins to the hole, and you, go to my office and get one of the spare control room keys. Now, LIGHTS OUT!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "The Warden" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "17": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-prisonguard-23", + "lineInfo": { + "dialogue": "Alright! Everyone, get up! Out of your cells, NOW! It's time for rollcall!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "18": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-thewarden-15", + "lineInfo": { + "dialogue": "Alright, everyone get in line, and stand straight! Don't move, or it's game over for you!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "The Warden" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "19": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-prisoner-14", + "lineInfo": { + "dialogue": "H-hey! Stop pushing me, mate! Seriou-", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-thewarden-16", + "lineInfo": { + "dialogue": "Well, well, well... Another peon thought it was wise to step off course..", + "line": { + "current": 4, + "max": 7 + }, + "npc": "The Warden" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-15", + "lineInfo": { + "dialogue": "W-wait a minute, miss! Someone pushed me out of line! I swear! ", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-thewarden-17", + "lineInfo": { + "dialogue": "BE QUIET! I didn't say you could speak, filth!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "The Warden" + } + }, + { + "fileOverride": "forbiddenprison-thewarden-18", + "lineInfo": { + "dialogue": "Get back in line! Once this is over, you're out, slime!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "The Warden" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "20": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-thewarden-19", + "lineInfo": { + "dialogue": "Alright, now, the rest of you, get to work! Rollcall is over for you all!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "The Warden" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "21": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-injuredprisoner-1", + "lineInfo": { + "dialogue": "H-hey, human- URGH! Help me out here! Some damn guards beat me bloody...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Injured Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-injuredprisoner-2", + "lineInfo": { + "dialogue": "I need somethin' to patch myself up... Oi, check that supply closet east of where I'm standin', there's gotta be something to help me in there!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Injured Prisoner" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "22": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-injuredprisoner-3", + "lineInfo": { + "dialogue": "Aaahh, that's better... Thank you, human... You probably just saved my life there!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Injured Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-injuredprisoner-4", + "lineInfo": { + "dialogue": "..You're gettin out of 'ere, huh? Well... If you do get outta this hellhole, could you head to Gelibord and let my 'pops know I'm still alive in here? I'd appreciate that...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Injured Prisoner" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "23": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-prisonguard-24", + "lineInfo": { + "dialogue": "Huh, what's that noise? ", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Prison Guard" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "24": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-prisoner-16", + "lineInfo": { + "dialogue": "Oh, thank the bovine! There's a friendly face around here..", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-17", + "lineInfo": { + "dialogue": "Listen, human, you gotta get me out of here! They've been killin' people in here all day! If you don't help me out, I'll be next!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-18", + "lineInfo": { + "dialogue": "Look, next to my cell, on that desk! There's a key! Grab it and hand it to me!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Prisoner" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "25": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-prisoner-19", + "lineInfo": { + "dialogue": "Yes, perfect, PERFECT! That's the key, hand it to me!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-20", + "lineInfo": { + "dialogue": "I can't explain the debt I owe you, human... You have no idea how grateful I am..", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Prisoner" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-21", + "lineInfo": { + "dialogue": "Say, what's your name, human? soldier? Alright, my name's Kaetan. Go on ahead and get out of here, I'll catch up. If you do get out of this chop-shop, meet me in Cinfras, I want to give you something there.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Prisoner" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "26": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-prisonguard-25", + "lineInfo": { + "dialogue": "Huh..? Oh- HEY! The table caught on fire, someone get over 'ere and help me put it out!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Prison Guard" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "27": { + "dialogues": [ + { + "fileOverride": "forbiddenprison-prisoner-22", + "lineInfo": { + "dialogue": "HEY, soldier, soldier, wait for me!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "???" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-23", + "lineInfo": { + "dialogue": "There you are! Good to see you managed to escape that horrid place!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Kaetan" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-24", + "lineInfo": { + "dialogue": "I managed to get back in touch with the transportation company I work with. I got transferred to another route now, so I won't be going anywhere near that prison now!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Kaetan" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-25", + "lineInfo": { + "dialogue": "But seriously, thank you, soldier. I thought I was going to get killed in there! This isn't much, but hopefully it can help you get back on your feet after all of that.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Kaetan" + } + }, + { + "fileOverride": "forbiddenprison-prisoner-26", + "lineInfo": { + "dialogue": "Anyways, I have to go now. But if I can ever help you with anything at all, just let me know! I'm forever in your debt, human.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Kaetan" + } + } + ], + "settings": { + "followPlayer": true + } + } + } + }, + "From the Bottom": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "fromthebottom-nakoba-1", + "lineInfo": { + "dialogue": "Between you and me, that was the first and only trade I've managed down here this trip.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-2", + "lineInfo": { + "dialogue": "All the historical artifacts are being traded for things I can't even begin to afford!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-3", + "lineInfo": { + "dialogue": "Still, can't give up hope yet. 's gotta be something I can get my hands on here! I've never walked away empty handed before!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-4", + "lineInfo": { + "dialogue": "I can feel it in my bones- there's eon's-lost history waiting here for me!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Nakoba" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "fromthebottom-dobile-1", + "lineInfo": { + "dialogue": "Minerals for sale! Minerals for sale! Come get your rare metals here!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Dobile" + } + }, + { + "fileOverride": "fromthebottom-dobile-2", + "lineInfo": { + "dialogue": "Accepting bottlecaps from all types of events! Festivals, crownings, royal weddings, ravine-jumping contests! No substitutes!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Dobile" + } + }, + { + "fileOverride": "fromthebottom-dobile-3", + "lineInfo": { + "dialogue": "Ehm. 'Scuse me, Human? You're in the way of my barking. Don't mean to be rude, but could you move? Unless you've got a trade offer?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Dobile" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "fromthebottom-dorroc-1", + "lineInfo": { + "dialogue": "Anyone interested in Hive trophies? I’ve accumulated quite the collection from those battles! Horns, scales, bone, catalysts...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Dorroc" + } + }, + { + "fileOverride": "fromthebottom-dorroc-2", + "lineInfo": { + "dialogue": "In exchange for these trophies, I seek the finest metals! Darksteel and Gollier Iron! Jaspilite and Voidstone! If it’s high-quality, I can find a trophy of equivalent value!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Dorroc" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "fromthebottom-lodog-1", + "lineInfo": { + "dialogue": "What, you think just cause I'm not one of you Corkians I can't deal in machines- Oh. You...uh. You aren't Corkian, are ya?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-2", + "lineInfo": { + "dialogue": "Sorry 'bout that. See, a few months ago there was this big party of Corkus idjits that came round, and they had the audacity to insult our forges!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-3", + "lineInfo": { + "dialogue": "'specially that bald headed, square-faced, gray-haired, legendary SPITSTAIN! Oh, I couldn't STAND that guy. So I started dealing in machines, and it's going pretty well, I'd say!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-4", + "lineInfo": { + "dialogue": "...oh, right. Gotta try and pawn some 'a this stuff. I got some rarities in my stock, but mostly I'm lookin' to get some machinery. If ya find any, I'll see what I can offer ya, aight?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Lodog" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "fromthebottom-mastro-1", + "lineInfo": { + "dialogue": "Ardent Magma Crystals for sale! Pure, 100%! Accept no substitutes, unless you're paying in emeralds, in which case substitute...a lot of them!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-2", + "lineInfo": { + "dialogue": "Specifically, 200,000 Liquid Emeralds! I'll be here all day and all night, selling Ardent Magma Crystals for a mere 200,000 Liquid Emeralds each!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-3", + "lineInfo": { + "dialogue": "It's hot work, making these genuine Ardent Magma Crystals! Dirty work for a clean product! 200,000 Liquid Emeralds, and we're running an 80% off sale this week!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-4", + "lineInfo": { + "dialogue": "Hot work! Sweaty work! Taxing work for only the MIGHTIEST of souls! Truly a BRAVE endeavour! A man's challenge! Ardent Magma Crystals! Only 200,000 Liquid Emeralds!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Mastro" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "fromthebottom-dohstaj-1", + "lineInfo": { + "dialogue": "...wartime artifacts for sale.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-2", + "lineInfo": { + "dialogue": "...anything from the corruption war, human?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-3", + "lineInfo": { + "dialogue": "...Won’t take emeralds for things like these. Sorry.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-4", + "lineInfo": { + "dialogue": "...oh, Mastro...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Dohstaj" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "fromthebottom-syni-1", + "lineInfo": { + "dialogue": "Ugh! NO SALES! None! Not now! Stupid Dohstaj!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Syni" + } + }, + { + "fileOverride": "fromthebottom-syni-2", + "lineInfo": { + "dialogue": "Quit fawning over Mastro already! I’ve got an artifact for you! But you just! Won’t! Take it!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Syni" + } + }, + { + "fileOverride": "fromthebottom-syni-3", + "lineInfo": { + "dialogue": "I SAID no sales! Get out of here!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Syni" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "fromthebottom-nakoba-5", + "lineInfo": { + "dialogue": "Ah, hey there, human! I'm certain you've noticed the bazaar down here. It's a point of pride for the Dwarves- biggest marketplace of all the Dwarf cities!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-6", + "lineInfo": { + "dialogue": "Specialty items you can't find anywhere else- All sorts of strange, wonderful, unique things. I've been looking for a few sundry items myself here.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-7", + "lineInfo": { + "dialogue": "It's almost all barter, unlike the merchants above that deal in shiny stuff. Which is...a little unfortunate for me, in a way.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-8", + "lineInfo": { + "dialogue": "You see, I'm a historian by trade, but what I'm really after right now is some Troll Hair. See, I really like the sme- er. It's good and sturdy for binding books- wait a second!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-9", + "lineInfo": { + "dialogue": "YOU have some? Phenomenal! I can never get it myself- was never much of a fighter. Um, here! Let me trade you that, for...this!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-10", + "lineInfo": { + "dialogue": "A Decorative Bottlecap Set! These were hard to come by, but I've got two sets of them anyways. Check them out! You'll learn a lot. Thank you very much, by the way!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Nakoba" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "fromthebottom-dobile-4", + "lineInfo": { + "dialogue": "Minerals for sale! Minerals for sale! Come get your rare metals! We've got Kanderstone, Wynnic Copper, genuine Almuj Sandstone, real Voidstone from the Sky Islands!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Dobile" + } + }, + { + "fileOverride": "fromthebottom-dobile-5", + "lineInfo": { + "dialogue": "Human, you there! If you're interested in smithing, you've found the right place! ...so long as you like drinking Dwarven drinks. I'm looking for bottlecap sets in exchange for these.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Dobile" + } + }, + { + "fileOverride": "fromthebottom-dobile-6", + "lineInfo": { + "dialogue": "What's that look for? Are you new here or something? Never seen a bottlecap collector before? Or is that just your face?", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Dobile" + } + }, + { + "fileOverride": "fromthebottom-dobile-7", + "lineInfo": { + "dialogue": "Wh- That! That's! I! How did you! It...It's in pristine condition! There's not a single cap missing! There's not even any dents from the bottle openers!!!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Dobile" + } + }, + { + "fileOverride": "fromthebottom-dobile-8", + "lineInfo": { + "dialogue": "There's no way you got those in person! You can't possibly understand the significance of what you're holding!! I! NEED! THEM!", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Dobile" + } + }, + { + "fileOverride": "fromthebottom-dobile-9", + "lineInfo": { + "dialogue": "Here! My rarest metal! Take them! Take them and give me those bottlecaps! I've got to complete my collection!! Give it! Give it! Give it give it give it give it NOW!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Dobile" + } + }, + { + "fileOverride": "fromthebottom-dobile-10", + "lineInfo": { + "dialogue": "...er. Ahem. I got carried away there. But...those bottlecaps are from the very first Dogun Festival. It wasn't even held in Courag at the time these were made!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Dobile" + } + }, + { + "fileOverride": "fromthebottom-dobile-11", + "lineInfo": { + "dialogue": "I'd love to talk about them more, but I can't spend too long on the sale, or other customers might go away. But you got a good deal with that Jaspilite I gave you!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Dobile" + } + }, + { + "fileOverride": "fromthebottom-dobile-12", + "lineInfo": { + "dialogue": "Come to think of it, some guy wanted that stuff, but he didn't even have a plain ol' sodapop cap on him! I think he's right close by. Maybe you'd have some interest in what he's selling instead.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Dobile" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "fromthebottom-dorroc-3", + "lineInfo": { + "dialogue": "Hm...a human trader? Well, I've heard of you, but I hope it isn't just the standard fare from you.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Dorroc" + } + }, + { + "fileOverride": "fromthebottom-dorroc-4", + "lineInfo": { + "dialogue": "Yes, I've seen quite a few of your type to this bazaar- Using the community forges and smithing tables and all. You all seem to have metals in bulk...", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Dorroc" + } + }, + { + "fileOverride": "fromthebottom-dorroc-5", + "lineInfo": { + "dialogue": "...but probably ninety-eight out of a hundred of the metal ingots I've seen humans use have been trash quality! Worthless only for practice! I seek only the finest metals, you see.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Dorroc" + } + }, + { + "fileOverride": "fromthebottom-dorroc-6", + "lineInfo": { + "dialogue": "...so, of course, you have to prove me wrong by having MOLTEN JASPILITE?! Oh, you must've gotten that from Dobile. Wouldn't have taken you as a bottlecap collector!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Dorroc" + } + }, + { + "fileOverride": "fromthebottom-dorroc-7", + "lineInfo": { + "dialogue": "I've been pestering him for awhile about his stock. The metal of the Unseen Blade is incredibly valuable, you see. It’s fragile, yes...", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Dorroc" + } + }, + { + "fileOverride": "fromthebottom-dorroc-8", + "lineInfo": { + "dialogue": "...but to wield it is to channel the power of Ockar the Unseen Blade himself! The wartime taskmaster who cowed a hundred demons with a mere dagger!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Dorroc" + } + }, + { + "fileOverride": "fromthebottom-dorroc-9", + "lineInfo": { + "dialogue": "Sneaking behind the lines of the enemy, braving blistering heat! Remaining as a shadow, and cutting through sheer earth and magma without flinching!!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Dorroc" + } + }, + { + "fileOverride": "fromthebottom-dorroc-10", + "lineInfo": { + "dialogue": "...erm, yes. Anyways! For that, I can give you nothing less than my rarest stock. A Golemlus Power Core. If Qira found out I had this, I'd be worse off than a dead man.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Dorroc" + } + }, + { + "fileOverride": "fromthebottom-dorroc-11", + "lineInfo": { + "dialogue": "She keeps the secrets of those creatures under lock and key- and it must the ticket to unlocking that particular mystery. Treasure this, human! It is no mere Corkian battery.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Dorroc" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "fromthebottom-lodog-5", + "lineInfo": { + "dialogue": "Aight chief, what can I do ya for? I got all kinds'a machines here. One of em's gotta catch your eye, y'hear?", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-6", + "lineInfo": { + "dialogue": "I jury-rigged this juicer! Put a lemon inside, give it some, heheh, juice, and you'll get yourself lemon juice in a jiff!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-7", + "lineInfo": { + "dialogue": "Or how 'bout this coin-shooter? Turn the crank and this'll spit out any coin-sized object like nobody's business! Just, uh, don't aim it at any windows, unless you really hate that window.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-8", + "lineInfo": { + "dialogue": "...what? Oh, I see. You think you got somethin' that'll interest ME instead of the other way round, I gotcha. Well, lemme see it a sec.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-9", + "lineInfo": { + "dialogue": "...okay, I can't make heads or tails 'a this thing. What'd you say it was again? Don't tell me this is some Corkus gadget from that not-so-Legendary island!", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-10", + "lineInfo": { + "dialogue": "...a... A Golemlus Power Core...? This...hot DOG! Yahaaah, I'd heard about those wacko golem thingies ages ago, I always wanted to take 'em apart! Aw hell but this is an opportunity!", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-11", + "lineInfo": { + "dialogue": "Gotta say, for something that came from that Hive it's a lot less purple and black and spidery-all-over than I expected. The complexity...this has gotta be the real deal, but...", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-12", + "lineInfo": { + "dialogue": "Feels like someone else made this. That Qira lady doesn't seem like the handsy type, and this is somethin' like 85% mechanics, 15% magic. Just seems out of character.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-13", + "lineInfo": { + "dialogue": "Ah, but I'm gettin' away from myself. Tell ya what- prob'ly went through a lotta trouble ta get this, and that means you got guts. You got bravery. You got STONES, human!", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-14", + "lineInfo": { + "dialogue": "So, how 'bout these Ice Drake Scales then? It fits a brave soul like you, it does! Take 'em with pride, there!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Lodog" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "fromthebottom-mastro-5", + "lineInfo": { + "dialogue": "Ardent Magma Crystals for sale! Pure, 100%! Accept no substitutes, unless you're paying in emeralds, in which case kindly substitute...a lot of them!!", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-6", + "lineInfo": { + "dialogue": "Human! You have a keen eye for prices and values! I can tell by that glint in your eye- a real MAN's spirit! Even if you aren't a man, your spirit shines all the same as a man...!", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-7", + "lineInfo": { + "dialogue": "A SALES MAN! YES! Macho and brave! Chiseled and strong! Strong enough to carry 200,000 Liquid Emeralds to trade for this brilliant Ardent Magma Crystal!", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-8", + "lineInfo": { + "dialogue": "...but hold on a moment. Hold on just one moment. Do I detect...a vein of ICE in that manly aura? A chill, pushing against that spirit of market machismo?", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-9", + "lineInfo": { + "dialogue": "YES, I DO! Human, you have Ice Drake Scales! I needn't see them to be sure! I was right about you from the start- Such burning passion!!", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-10", + "lineInfo": { + "dialogue": "AND SUCH NAIVETE! Let me strengthen your MIND! Ice Drake Scales are indicative of a great challenge having been overcome! A truly macho trophy of accomplishment!", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-11", + "lineInfo": { + "dialogue": "To tame Ice Drakes required UNBREAKABLE will! To overcome the sheerest cold with MACHO HEAT! And to outshine demons of lava and flame with that same determination! Those scales represent such resilience!", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-12", + "lineInfo": { + "dialogue": "And yet...I must wonder. Such a fiery spirit you have- THOSE SCALES HOLD YOU BACK! Your spirit cannot be contained in such a manner!", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-13", + "lineInfo": { + "dialogue": "DISRESPECT YOURSELF NO LONGER! I DEMAND YOU HAND OVER THOSE SCALES! But you will not leave empty-handed, no no, friend!", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-14", + "lineInfo": { + "dialogue": "You have ignited my passion as a salesman, so I shall present you one of my own greatest accomplishments! For a spirit so WHITE HOT, only an ARDENT MAGMA CRYSTAL is fitting!", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-15", + "lineInfo": { + "dialogue": "YES! Your soul shines brighter than the shimmer of EIGHT-HUNDRED-MILLION EMERALDS! Forever may your spirit BURN, human!", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Mastro" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "fromthebottom-dohstaj-5", + "lineInfo": { + "dialogue": "...you have good money on you.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-6", + "lineInfo": { + "dialogue": "...I heard Mastro shouting. He’s...so passionate.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-7", + "lineInfo": { + "dialogue": "...he’s married to his work. Would I were his.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-8", + "lineInfo": { + "dialogue": "...but business first. Wartime artifacts for sale.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-9", + "lineInfo": { + "dialogue": "...priciest thing is a Dogun Flameshooter. Practically invaluable. You want it?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-10", + "lineInfo": { + "dialogue": "...good doing business.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-11", + "lineInfo": { + "dialogue": "...sigh. What a man he is...", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Dohstaj" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "fromthebottom-syni-4", + "lineInfo": { + "dialogue": "I can’t stand this. I can’t stand this! SHUT UP, MASTRO! NO ONE CARES ABOUT YOUR SWEATY SPIRIT OR WHATEVER!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Syni" + } + }, + { + "fileOverride": "fromthebottom-mastro-16", + "lineInfo": { + "dialogue": "MY MACHISMO CANNOT BE CONTAINED! Your aversion only inspires my salesman’s spirit! Ardent Magma Crystals! Pure, 100% gold! 200,000 Liquid Emeralds, 80% off! STRONG bargains!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-syni-5", + "lineInfo": { + "dialogue": "AAAGH! Stupid, stupid, stupid Dohstaj! I just need him to fork over that stupid Flameshooter and then I can get away from this tripe but he just! Won’t! DO IT!", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Syni" + } + }, + { + "fileOverride": "fromthebottom-syni-6", + "lineInfo": { + "dialogue": "No, look, human! Can’t you see the kind of stress I’m under?! I don’t care about your Flameshooter, I need to get my hands on Dohstaj’s Flameshooter!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Syni" + } + }, + { + "fileOverride": "fromthebottom-syni-7", + "lineInfo": { + "dialogue": "...", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Syni" + } + }, + { + "fileOverride": "fromthebottom-syni-8", + "lineInfo": { + "dialogue": "...wait. Wait wait wait that’s Dohstaj’s Flameshooter how in the world did you get it what what WHAT! How did you snap him out of his...emotions?!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Syni" + } + }, + { + "fileOverride": "fromthebottom-syni-9", + "lineInfo": { + "dialogue": "I’ve been trying to get hold of that for a week straight! I already have the perfect trade lined up! Please, hear me out!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Syni" + } + }, + { + "fileOverride": "fromthebottom-syni-10", + "lineInfo": { + "dialogue": "I have here the Scepter of Draani Thunderwill I! Dohstaj only WISHES he could salvage something this juicy! The real, honest-to-goodness staff of the Wartime King!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Syni" + } + }, + { + "fileOverride": "fromthebottom-syni-11", + "lineInfo": { + "dialogue": "A war relic for a war relic. It’s only a fair trade! Just be real careful- a thief’s been skulking in the yellow stall by the bank trying to steal it from me.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Syni" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "fromthebottom-yobon-1", + "lineInfo": { + "dialogue": "...so. I saw you talking with Syni.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Yobon" + } + }, + { + "fileOverride": "fromthebottom-yobon-2", + "lineInfo": { + "dialogue": "Pfft. Thief? I’m an honest man. Just following in old footsteps.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Yobon" + } + }, + { + "fileOverride": "fromthebottom-yobon-3", + "lineInfo": { + "dialogue": "I know you have the Scepter. I’d have thumped you and taken it if you were a Dwarf.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Yobon" + } + }, + { + "fileOverride": "fromthebottom-yobon-4", + "lineInfo": { + "dialogue": "But how 'bout we work out a deal, instead? Take this tablet.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Yobon" + } + }, + { + "fileOverride": "fromthebottom-yobon-5", + "lineInfo": { + "dialogue": "It'll explain everything. Dwarven History...if you can read it. I can. Won't let loose my secrets for free though.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Yobon" + } + }, + { + "fileOverride": "fromthebottom-yobon-6", + "lineInfo": { + "dialogue": "Hand over the scepter, and I'll hand over the tablet.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Yobon" + } + }, + { + "fileOverride": "fromthebottom-yobon-7", + "lineInfo": { + "dialogue": "I won't translate it for you, but I'm sure there's some egghead who'll get back to you on what it means in...ten years or so.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Yobon" + } + }, + { + "fileOverride": "fromthebottom-yobon-8", + "lineInfo": { + "dialogue": "Good things come to those who wait for others to do the work for 'em, as they say.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Yobon" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "fromthebottom-yobon-9", + "lineInfo": { + "dialogue": "Oh, what I want to do with the scepter?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Yobon" + } + }, + { + "fileOverride": "fromthebottom-yobon-10", + "lineInfo": { + "dialogue": "Gotta keep some secrets, right? Keep people guessing.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Yobon" + } + }, + { + "fileOverride": "fromthebottom-yobon-11", + "lineInfo": { + "dialogue": "No fun otherwise. Now get out. I've got some people to call up.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Yobon" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "fromthebottom-yobon-12", + "lineInfo": { + "dialogue": "Get out.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Yobon" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "fromthebottom-nakoba-11", + "lineInfo": { + "dialogue": "Well, you've been busy, I see! You've been working this bazaar like a champion!", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-12", + "lineInfo": { + "dialogue": "I ought to tell my friends up at the topside shops- they really respect traders who know their way around a deal. You should be able to buy and use more items from the armories!", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-13", + "lineInfo": { + "dialogue": "I...haven't had such luck unfortunately. I think you might've picked the place clean, eheh. Don't suppose you've got one last deal up your sleeve, huh?", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-14", + "lineInfo": { + "dialogue": "Oh, really? Hah, I was just joking about that, but if you really do have an offer, go ahead and lay it on me!", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-15", + "lineInfo": { + "dialogue": "...", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-16", + "lineInfo": { + "dialogue": "Oh.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-17", + "lineInfo": { + "dialogue": "My.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-18", + "lineInfo": { + "dialogue": "HELL.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-19", + "lineInfo": { + "dialogue": "THAT'S ANCIENT HISTORY! FORMATIVE ANCIENT HISTORY!", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-20", + "lineInfo": { + "dialogue": "I recognize those runes, they're ancient Dwarven glyphs! This is slab number three! We already have the first, second, and fourth tablets, my team and I- this would finish the collection!", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-21", + "lineInfo": { + "dialogue": "I! I! I! Take! TAKE EVERYTHING! EVERYTHING I HAVE! TAKE IT ALL, I NEED THAT! I NEED TO DISCOVER THOSE ANCIENT SECRETS!", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-22", + "lineInfo": { + "dialogue": "AH! AHAHAHAHA! THE HISTORY! THE STORIES! THE EVERYTHING! IT'S BETTER THAN THE SMELL OF TROLL HAIR! AHAHAHAAAHAHHAHAHAAAAAH!", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Nakoba" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "fromthebottom-nakoba-23", + "lineInfo": { + "dialogue": "YES! HISTORY! I CAN FEEL THE EONS!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-24", + "lineInfo": { + "dialogue": "I'M GONNA FLY, PAPA! FLY ON THE WINGS OF TIME!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Nakoba" + } + }, + { + "fileOverride": "fromthebottom-nakoba-25", + "lineInfo": { + "dialogue": "DWARVEN HISTORY WILL BE REVOLUTIONIZED!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Nakoba" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "fromthebottom-dobile-13", + "lineInfo": { + "dialogue": "Oh, you really are interested in hearing about those bottlecaps, huh? Well! Sit down there, fella! These have a STORY behind 'em.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Dobile" + } + }, + { + "fileOverride": "fromthebottom-dobile-14", + "lineInfo": { + "dialogue": "See, almost all our drinks come in bottles. Bottles are just too useful, compared to cups or mugs. Good for improvised weapons, and so reusable!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Dobile" + } + }, + { + "fileOverride": "fromthebottom-dobile-15", + "lineInfo": { + "dialogue": "These bottlecaps were the first specialty ones made in Dwarven history! Someone got the idea, since the Dogun festival was a big event, to make decorative bottlecaps.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Dobile" + } + }, + { + "fileOverride": "fromthebottom-dobile-16", + "lineInfo": { + "dialogue": "Each one tells some of the story of the Dogun war on it, or some war trivia! See, this one tells you Delinaed the Wise’s favorite book.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Dobile" + } + }, + { + "fileOverride": "fromthebottom-dobile-17", + "lineInfo": { + "dialogue": "It became a fad, then a tradition- practically every big Dwarven event has specialty bottlecaps made to commemorate it now. Collectors like me have our work cut out for us!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Dobile" + } + }, + { + "fileOverride": "fromthebottom-dobile-18", + "lineInfo": { + "dialogue": "So hey, if you ever go to a big Dwarven event, buy some drinks! Save up those caps- they're worth a hundred times their weight in emeralds, in terms of historical value!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Dobile" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "fromthebottom-dorroc-12", + "lineInfo": { + "dialogue": "Oh, I see that look in your eyes. That curiosity. You want me to unravel a mystery for you! Well, I can tell you this much...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Dorroc" + } + }, + { + "fileOverride": "fromthebottom-dorroc-13", + "lineInfo": { + "dialogue": "If I'm being honest, Jaspilite isn't much good for weaponry. It's more of a good-luck charm than anything- I plan to stud a blade with this instead of using it for the base.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Dorroc" + } + }, + { + "fileOverride": "fromthebottom-dorroc-14", + "lineInfo": { + "dialogue": "That just makes Ockar’s success in the chaos of wartime with his Jaspilite blade even more astounding. That's why it's so valuable.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Dorroc" + } + }, + { + "fileOverride": "fromthebottom-dorroc-15", + "lineInfo": { + "dialogue": "It's almost like if that hero you have...what was his name, John? Bob? Joe? I can't quite recall, the name, but it's something like that...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Dorroc" + } + }, + { + "fileOverride": "fromthebottom-dorroc-16", + "lineInfo": { + "dialogue": "It's like if he carved a good-quality training blade out of some vaguely rare, but otherwise mundane wood and used it to defend the citadels for decades.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Dorroc" + } + }, + { + "fileOverride": "fromthebottom-dorroc-17", + "lineInfo": { + "dialogue": "The wood itself is just wood...but it was used by a hero, so it must be special, yes? So Jaspilite is well sought-after. I once again thank you for liberating it from that stubborn bottlecap man.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Dorroc" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "fromthebottom-lodog-15", + "lineInfo": { + "dialogue": "This core machine's gonna be a better challenge to figure out than ANY of that smarmy idiot's \"legendary mechs,\" hah!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-16", + "lineInfo": { + "dialogue": "...hm? Oh, 's you again! Suppose ya heard me and my little grudge, huh? Yeah. I forget if I told ya this or not, but a few months ago there was a group from Corkus here.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-17", + "lineInfo": { + "dialogue": "Hoity-toity lot, they were. Got me into machinery though, even if it was just outta spite. Might not've heard about many Dwarven mages, but they exist!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-18", + "lineInfo": { + "dialogue": "Electromagic comes nice an' natural to me, so I've started riggin' up these machines. It's kinda funny you brought me somethin' from that Hive, too.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-19", + "lineInfo": { + "dialogue": "They stopped by here on their way to the Hive, those Corkus idjits. Somethin' about a sponsorship to go see Qira of all people!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-20", + "lineInfo": { + "dialogue": "An'! The best part! The idiot came back with a crumpled wrist and this HORRIFIED look- Musta gotten on the Hive witch's bad side!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Lodog" + } + }, + { + "fileOverride": "fromthebottom-lodog-21", + "lineInfo": { + "dialogue": "Heheheh, he got what was comin' to 'im! Serves 'em all right for bein' so high-and-mighty when they ain't even provincially recognized!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Lodog" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "fromthebottom-mastro-17", + "lineInfo": { + "dialogue": "MY EYES STING FROM THE HEAT OF YOUR DETERMINATION! Yes! Such passion flowing from you, now that you've experienced a treasure of EQUAL HEAT!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-18", + "lineInfo": { + "dialogue": "It's only right you learn more! My PRIDE! My SWEAT! My MUSCLED MIGHT! My WAY OF LIFE- Ardent Magma Crystals!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-19", + "lineInfo": { + "dialogue": "Gold makes the world turn! But nearly every piece of gold you see- is impure! There are imperfections in it, no matter how brilliant the luster!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-20", + "lineInfo": { + "dialogue": "But through HARD WORK! EXTREME HEAT! RIGHTEOUS SMITHING SKILL! It can be purified to shine like it was ALWAYS meant to! Shine like your SOUL!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-21", + "lineInfo": { + "dialogue": "The process is only for the STRONG! It takes months upon months of work- single mistakes can destroy the gold! But nothing worth doing in life is easy!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-22", + "lineInfo": { + "dialogue": "TRUE MEN will not give up! To be a man requires nothing of the body- it only requires a BLAZING SPIRIT! A weak body can be HONED! An impure metal can be PURIFIED!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-23", + "lineInfo": { + "dialogue": "Ardent Magma Crystals are the PUREST of gold! I have perfected my craft- each one takes a season’s worth of time, but such patience only practices my own PASSION!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Mastro" + } + }, + { + "fileOverride": "fromthebottom-mastro-24", + "lineInfo": { + "dialogue": "And with my gift to you, we are truly BOUND by our spirits, however fleetingly! Carry yourself with grace, friend- and with POWER! HEAT! SWEAT! AND TEARS OF FLAME!!!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Mastro" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "fromthebottom-dohstaj-12", + "lineInfo": { + "dialogue": "...you again? Something up?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-13", + "lineInfo": { + "dialogue": "...you know...I feel...passionate. Let me talk for a bit.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-14", + "lineInfo": { + "dialogue": "Flameshooters... Dogun weapons. Real common to find. But they’re just hilts with buttons on them.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-15", + "lineInfo": { + "dialogue": "They shoot out flames like a blade... It’s been millenia since they were made.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-16", + "lineInfo": { + "dialogue": "...almost impossible to repair, too. You’d need Dogun magic. And Doguns are gone, mostly.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-17", + "lineInfo": { + "dialogue": "...but almost impossible means it can be done. I found it broken, and fixed it myself.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-18", + "lineInfo": { + "dialogue": "...oh, Mastro... He’s my inspiration. Spends his life making those crystals... Does the impossible on a regular basis.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-19", + "lineInfo": { + "dialogue": "...I’ve done it once. Just can’t compete.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Dohstaj" + } + }, + { + "fileOverride": "fromthebottom-dohstaj-20", + "lineInfo": { + "dialogue": "...least I’ve got a little bit of him now.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Dohstaj" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "fromthebottom-syni-12", + "lineInfo": { + "dialogue": "Finally, I can pack my things up and leave! I just need to endure this macho insanity til then... Thank you, human, for freeing me from this hell!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Syni" + } + }, + { + "fileOverride": "fromthebottom-syni-13", + "lineInfo": { + "dialogue": "Though...suppose you wouldn’t know the history behind that staff, would you...I can pack and talk at the same time, why not.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Syni" + } + }, + { + "fileOverride": "fromthebottom-syni-14", + "lineInfo": { + "dialogue": "That staff belonged to the Dwarven king, Draani Thunderwill I. He started the colonization efforts in the Molten Heights, you see.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Syni" + } + }, + { + "fileOverride": "fromthebottom-syni-15", + "lineInfo": { + "dialogue": "He led the war efforts against the demons that crawled from the stone- the ones that used the very same weapon that you so graciously provided me, as a matter of fact!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Syni" + } + }, + { + "fileOverride": "fromthebottom-syni-16", + "lineInfo": { + "dialogue": "That staff was presumed lost in the great battle against the demon god, Garaheth...but I found it! It was snapped into something like ten pieces...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Syni" + } + }, + { + "fileOverride": "fromthebottom-syni-17", + "lineInfo": { + "dialogue": "That thing took me four years to repair. It’s good as new now- it can even channel lightning just like the legends. An effort well worth the trouble!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Syni" + } + }, + { + "fileOverride": "fromthebottom-syni-18", + "lineInfo": { + "dialogue": "But the Dogun magic fascinates me- I’ve got to figure out how those Flameshooters work! I’ll bet I can reverse-engineer them, I just need a working model...and now I have it!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Syni" + } + } + ] + } + } + }, + "From the Mountains": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "fromthemountains-arnod-1", + "lineInfo": { + "dialogue": "Mmph! Humnym! Mah houfhs fhs om fifhre! Gft hfrelp, tiff brafze womd strfp!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Arnod" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "fromthemountains-arnod-2", + "lineInfo": { + "dialogue": "...well, that explains why you didn't help. But, uh, did the RAGING FIRE escape your notice somehow?!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Arnod" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "fromthemountains-axelus-1", + "lineInfo": { + "dialogue": "Hm...where am I going to get help now- Mh? You're one of those human types, right? Do you have-", + "line": { + "current": 1, + "max": 21 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-2", + "lineInfo": { + "dialogue": "Huh? Someone's house is on fire? Guess that's a little more pressing than what I was going to ask. Where is it?", + "line": { + "current": 2, + "max": 21 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-3", + "lineInfo": { + "dialogue": "Oh, that valley by the gate? I think I know where you mean. Let's walk together. So, tell me what exactly happened?", + "line": { + "current": 3, + "max": 21 + }, + "npc": "Axelus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "4": { + "dialogues": [ + { + "fileOverride": "fromthemountains-axelus-5", + "lineInfo": { + "dialogue": "Hm...didn't think they'd be this far out, but it'd make sense if...", + "line": { + "current": 13, + "max": 21 + }, + "npc": "Axelus" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "fromthemountains-axelus-6", + "lineInfo": { + "dialogue": "Aha! Here's the problem. It's just a little Fleris. Ehm, to explain, they normally live in the Heights.", + "line": { + "current": 14, + "max": 21 + }, + "npc": "Axelus" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "fromthemountains-axelus-7", + "lineInfo": { + "dialogue": "Pretty affectionate, good if you can stand the heat, but if you take them away from their mounds they get spooked.", + "line": { + "current": 15, + "max": 21 + }, + "npc": "Axelus" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "fromthemountains-axelus-8", + "lineInfo": { + "dialogue": "One fleris could've kept setting this man's house on fire, but all the other fallout...there's certainly more where this one came from. ", + "line": { + "current": 16, + "max": 21 + }, + "npc": "Axelus" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "fromthemountains-axelus-9", + "lineInfo": { + "dialogue": "Let's go talk to the villager outside. He might've seen where the others got off to, or where they came from.", + "line": { + "current": 17, + "max": 21 + }, + "npc": "Axelus" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "fromthemountains-axelus-10", + "lineInfo": { + "dialogue": "Sir, I figured out why your house kept re-igniting and solved that issue, but tell me, have you seen any moving sludgy things around here?", + "line": { + "current": 18, + "max": 21 + }, + "npc": "Axelus" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "fromthemountains-arnod-3", + "lineInfo": { + "dialogue": "Uhm, I don't really know. I've been trying to douse my house so many times over that I haven't really paid attention!", + "line": { + "current": 19, + "max": 21 + }, + "npc": "Arnod" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "fromthemountains-arnod-4", + "lineInfo": { + "dialogue": "I remember seeing some tar-looking stuff dripping from the mountains behind my house, but that's it!", + "line": { + "current": 20, + "max": 21 + }, + "npc": "Arnod" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "fromthemountains-axelus-11", + "lineInfo": { + "dialogue": "Sounds concrete enough to me. Let's check out what's going on on top of the mountain ridge. Check that book of yours if you need directions.", + "line": { + "current": 21, + "max": 21 + }, + "npc": "Axelus" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "fromthemountains-axelus-12", + "lineInfo": { + "dialogue": "Hm, you're a pretty quick climber. I thought I'd get ahead of you. Well, this looks like the scorched area down in the valley... Hm! I thought so.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-13", + "lineInfo": { + "dialogue": "There's only one reason I can think of that there would be so many Flerisi around here... If that wagon's reinforced, then...", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-14", + "lineInfo": { + "dialogue": "Gah, I knew it. Traffickers! And incompetent ones, too, considering they couldn't hold the things.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-15", + "lineInfo": { + "dialogue": "There's a black market issue in the Molten Heights. Things that you can't find anywhere else are harvested in the Heights for their high value.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-16", + "lineInfo": { + "dialogue": "Flerisi are one of them. In the Heights, they're kept as pets. They're relatively friendly, keep your house warm, and don't need much care...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-17", + "lineInfo": { + "dialogue": "...But if you take them away from a warm place, they burn everything. To think- Some people use the things as weapons. Can't leave well enough alone...", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-18", + "lineInfo": { + "dialogue": "We'll need to catch these flerisi. Here, take this net. While you catch them, I'll repair the cart so we can put them in there later.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Axelus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "6": { + "dialogues": [ + { + "fileOverride": "fromthemountains-axelus-19", + "lineInfo": { + "dialogue": "I've got the cart all repaired and ready, did you get all the Flerisi? Come over to the cart then. We still have work to do.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-20", + "lineInfo": { + "dialogue": "I'll keep the Flerisi in a smaller fire to keep them calm, see if I can't get them back to the Heights when this is done. ", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-21", + "lineInfo": { + "dialogue": "For now, I want to see if I can find anything on who these traffickers were. Let's see if they left anything in the front of the cart.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-22", + "lineInfo": { + "dialogue": "...oh. Well, didn't notice that the fires went THAT far earlier. That's a problem, isn't it?", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-23", + "lineInfo": { + "dialogue": "To explain, Flerisi aren't all as tiny as the ones we've found here. They feed off cinders and fire... And for this much damage to be caused, well...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-24", + "lineInfo": { + "dialogue": "Methinks this one's getting a bit out of control. This is right next to that big forest, too. Could be a problem if we leave this one be.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-25", + "lineInfo": { + "dialogue": "We're going to have to track it down and subdue it. Here, follow me. I'll dig us down to the valley. Watch a dwarf at work!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Axelus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "7": { + "dialogues": [ + { + "fileOverride": "fromthemountains-axelus-26", + "lineInfo": { + "dialogue": "Not bad, eh? Anyways, dunno what that huge gate's for, but it looks like our Fleris friend has commandeered it for a bonfire.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-27", + "lineInfo": { + "dialogue": "At least it's a little more contained than I thought, being in that cave, but we still have to catch it. Lead the way. I'm right with you. ", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Axelus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "8": { + "dialogues": [ + { + "fileOverride": "fromthemountains-axelus-28", + "lineInfo": { + "dialogue": "What the...?! It inflamed the creatures in this cave! Fend 'em off! ", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Axelus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "9": { + "dialogues": [ + { + "fileOverride": "fromthemountains-axelus-29", + "lineInfo": { + "dialogue": "There are more of them coming! Get to the end of the cave!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Axelus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "10": { + "dialogues": [ + { + "fileOverride": "fromthemountains-axelus-30", + "lineInfo": { + "dialogue": "Gah, more?! Behind you!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Axelus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "11": { + "dialogues": [ + { + "fileOverride": "fromthemountains-axelus-31", + "lineInfo": { + "dialogue": "Hey! Back up! Don't approach the enemies!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Axelus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "12": { + "dialogues": [ + { + "fileOverride": "fromthemountains-axelus-32", + "lineInfo": { + "dialogue": "Both of us stopping is going to make it take too much time, the traffickers might come back!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-33", + "lineInfo": { + "dialogue": "Listen up. I'll handle these things, while you go after the Fleris. If it's a big one like we think, it'll be a downhill battle- It should shrink if you attack it!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-34", + "lineInfo": { + "dialogue": "Alright, time for a little royal rumble!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Axelus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "13": { + "dialogues": [ + { + "fileOverride": "fromthemountains-axelus-35", + "lineInfo": { + "dialogue": "Phew, you're alright! Charred and covered in soot, but that's to be expected. Subdued the Fleris, too! I have the net with me, so allow me.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Axelus" + } + }, + { + "fileOverride": "fromthemountains-axelus-36", + "lineInfo": { + "dialogue": "Well, this is probably a bit of thankless work we just did, but so is a lot of work. Let's get out of here. We can talk outside.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Axelus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "14": { + "dialogues": [ + { + "fileOverride": "fromthemountains-axelus-37", + "lineInfo": { + "dialogue": "Well, I say the work is thankless, but that won't stop me, anyways. Thank you for the help, human- This would've been overwhelming alone.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Axelus" + } + } + ] + } + } + }, + "Frost Bite": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "frostbite-eppo-1", + "lineInfo": { + "dialogue": "Let's give it another try!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Eppo" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "2": { + "dialogues": [ + { + "fileOverride": "frostbite-eppo-2", + "lineInfo": { + "dialogue": "Ready the drill, men!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Eppo" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "3": { + "dialogues": [ + { + "fileOverride": "frostbite-eppo-3", + "lineInfo": { + "dialogue": "Darn. The drill just won't start.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-4", + "lineInfo": { + "dialogue": "Hey, Guard! Do you know anything about Electromagic? Come up here to the drill, maybe you can take a look? ", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Eppo" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "frostbite-eppo-5", + "lineInfo": { + "dialogue": "Oh! Never mind, it lit up, back up!", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-6", + "lineInfo": { + "dialogue": "For the love of Bob... Why won't you just break?", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-7", + "lineInfo": { + "dialogue": "This ice was created by Theorick, a Twain who defended this area many many years ago.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-8", + "lineInfo": { + "dialogue": "When the corruption got too much... He froze everything, including the people. Do you see them in there?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-9", + "lineInfo": { + "dialogue": "We've tried desperately to get them out, but we've tried all the equipment we had, including this Corkian drill. ", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-10", + "lineInfo": { + "dialogue": "Maybe we should get more destructive... The demolition expert, Rhudya, is further down the cave.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-11", + "lineInfo": { + "dialogue": "It's a long shot, but worth a try. Would you be able to get it while I clear this space? ", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Eppo" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "frostbite-rhudya-1", + "lineInfo": { + "dialogue": "Whup! You're on private property, y'know! Oh, Eppo sent ya? That's fair enough.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Rhudya" + } + }, + { + "fileOverride": "frostbite-rhudya-2", + "lineInfo": { + "dialogue": "You'll be needing this TNT then, make sure not to drop it though, whup!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Rhudya" + } + }, + { + "fileOverride": "frostbite-rhudya-3", + "lineInfo": { + "dialogue": "Just travel through this cave and you'll be returned to Eppo easy-peasy!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Rhudya" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "frostbite-eppo-12", + "lineInfo": { + "dialogue": "Very nice, this might do the trick.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-13", + "lineInfo": { + "dialogue": "Back up, I'll ignite the explosive.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Eppo" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "frostbite-eppo-14", + "lineInfo": { + "dialogue": "NOTHING? Not even a scratch. I don't understand Theoricks ice.. It's not real.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-15", + "lineInfo": { + "dialogue": "I'm not sure what else we can do then....", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Eppo" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "frostbite-rhudya-4", + "lineInfo": { + "dialogue": "HEY. Eppo, over here! Near the cave!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Rhudya" + } + }, + { + "fileOverride": "frostbite-rhudya-5", + "lineInfo": { + "dialogue": "Did the explosive not work? I found this old mineshaft on the way back from the cave, it leads to an old lava cavern.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Rhudya" + } + }, + { + "fileOverride": "frostbite-rhudya-6", + "lineInfo": { + "dialogue": "Might be a long shot, but this lava looks different. Why not give it a try?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Rhudya" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "8": { + "dialogues": [ + { + "fileOverride": "frostbite-eppo-17", + "lineInfo": { + "dialogue": "I don't understand how you can hold lava in a bucket.. But here we are.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Eppo" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "frostbite-eppo-18", + "lineInfo": { + "dialogue": "Look for the corpse with a key, it might be above you. Good luck!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Eppo" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "10": { + "dialogues": [ + { + "fileOverride": "frostbite-eppo-19", + "lineInfo": { + "dialogue": "Is that the right one? You got it? Brilliant! Now come back down.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Eppo" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "11": { + "dialogues": [ + { + "fileOverride": "frostbite-eppo-20", + "lineInfo": { + "dialogue": "Lets travel to the mansion together. Here, I have a carriage for it.", + "line": { + "current": 1, + "max": 13 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-21", + "lineInfo": { + "dialogue": "While we ride, let me explain a little more about what we're doing. Let's go.", + "line": { + "current": 2, + "max": 13 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-22", + "lineInfo": { + "dialogue": "As I mentioned before, there is a reason this land is frozen, and it's not natural.", + "line": { + "current": 3, + "max": 13 + }, + "npc": "Eppo" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "frostbite-eppo-23", + "lineInfo": { + "dialogue": "Many years before Bob was around, Wynn was in ruins due to the corruption war.", + "line": { + "current": 4, + "max": 13 + }, + "npc": "Eppo" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "frostbite-eppo-24", + "lineInfo": { + "dialogue": "In those times there used to be a group of naturally gifted individuals called the Twains. They defended us all with elemental magic.", + "line": { + "current": 5, + "max": 13 + }, + "npc": "Eppo" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "frostbite-eppo-25", + "lineInfo": { + "dialogue": "Theorick was one of those Twains. He harnessed unnaturally powerful ice based magic. He used it to protect the land surrounding the mansion.", + "line": { + "current": 6, + "max": 13 + }, + "npc": "Eppo" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "frostbite-eppo-26", + "lineInfo": { + "dialogue": "Theorick.. Wasn't like the other Twains. He wanted the people he protected to pay and feed him as way of thanks.", + "line": { + "current": 7, + "max": 13 + }, + "npc": "Eppo" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "frostbite-eppo-27", + "lineInfo": { + "dialogue": "After years, Theorick was rich while the people he protected lived in poverty and fear - not only of the monsters, but in fear of Theorick himself.", + "line": { + "current": 8, + "max": 13 + }, + "npc": "Eppo" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "frostbite-eppo-28", + "lineInfo": { + "dialogue": "He punished those who disobeyed his curfews and would get angry if anyone tried to move away. The people felt trapped.", + "line": { + "current": 9, + "max": 13 + }, + "npc": "Eppo" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "frostbite-eppo-29", + "lineInfo": { + "dialogue": "Eventually, just like the other Twains - Theorick fell to the corruption. Not before he had the last word.", + "line": { + "current": 10, + "max": 13 + }, + "npc": "Eppo" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "frostbite-eppo-30", + "lineInfo": { + "dialogue": "He froze the land entirely, killing almost everything and everyone left outside in it. Hundreds of lives were lost.", + "line": { + "current": 11, + "max": 13 + }, + "npc": "Eppo" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "frostbite-eppo-31", + "lineInfo": { + "dialogue": "It turns out the ice slowed the spread of corruption across the land to almost a standstill. It's been this way ever since.", + "line": { + "current": 12, + "max": 13 + }, + "npc": "Eppo" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "frostbite-eppo-32", + "lineInfo": { + "dialogue": "Now that we can get in his mansion we hope to uncover the secrets of his ice magic so we may undo it, and share the wealth he hoarded from the people. Ah, we're here.", + "line": { + "current": 13, + "max": 13 + }, + "npc": "Eppo" + }, + "settings": { + "followPlayer": true + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "frostbite-eppo-33", + "lineInfo": { + "dialogue": "This place looks frozen in time.. The grandure.. Well he did just take and take from everyone around him.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-34", + "lineInfo": { + "dialogue": "So, I'm not sure where to start, but I'm guessing he has some protection in place.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-35", + "lineInfo": { + "dialogue": "This is unbeliveable.. He was such a greedy- AAAAH.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-36", + "lineInfo": { + "dialogue": " ... I don't think we should insult him..", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Eppo" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "frostbite-eppo-37", + "lineInfo": { + "dialogue": "Oof! Wasn't expecting that. That just proves everything I said about him. Punishing people who insult him.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-38", + "lineInfo": { + "dialogue": "Anyway, we should look around for some kind of secret entrance.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-39", + "lineInfo": { + "dialogue": "Trust Theorick to booby trap his own house the paranoid frozen gro-", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Eppo" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "frostbite-eppo-40", + "lineInfo": { + "dialogue": "That really isn't fun at all. I can't see a thing. Where are we now, a dead end?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-41", + "lineInfo": { + "dialogue": "Well we know that insults result in punishment. Maybe a compliment will make him happy?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-42", + "lineInfo": { + "dialogue": "Oh Theorick, strongest of all the Twains, you really are a hero.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-43", + "lineInfo": { + "dialogue": "Maybe n-", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Eppo" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "frostbite-eppo-44", + "lineInfo": { + "dialogue": "Looks like we finally found his private quarters, look at that vault door.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Eppo" + } + }, + { + "fileOverride": "frostbite-eppo-45", + "lineInfo": { + "dialogue": "There must be some way to open it. Look around and see what you can find.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Eppo" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "frostbite-eppo-46", + "lineInfo": { + "dialogue": "You did it! We have access to the vault.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Eppo" + } + } + ] + } + } + }, + "General's Orders": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "generalsorders-privatetylas-1", + "lineInfo": { + "dialogue": "...snrrrk... ... ... ...mimimimimi... ... ... ...snrrrk... ... ... ...mimimimimi...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Private Tylas" + } + }, + { + "fileOverride": "generalsorders-privatetylas-2", + "lineInfo": { + "dialogue": "...snrrrk... ...mrrf. ...five more minnns... ...snrrrk...", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Private Tylas" + } + }, + { + "fileOverride": "generalsorders-privatetylas-3", + "lineInfo": { + "dialogue": "...wh...? Oh...OH! Oh oh oh! Ahem! Yes, um! Absolutely sir! Right away sir! I don't think you're crazy at all sir!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Private Tylas" + } + }, + { + "fileOverride": "generalsorders-privatetylas-4", + "lineInfo": { + "dialogue": "...oh. Wait, you're just one of those heavily armored human types. Cripes, I thought you were Lecade... Even nuts as he's gotten I'd get the thumbscrews if he caught me napping.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Private Tylas" + } + }, + { + "fileOverride": "generalsorders-privatetylas-5", + "lineInfo": { + "dialogue": "Hum...well, hey. You humans like doing work, right? I hear about it from folks in the army that you lot are pretty zealous about your favors.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Private Tylas" + } + }, + { + "fileOverride": "generalsorders-privatetylas-6", + "lineInfo": { + "dialogue": "Then I think today might be your lucky day, because General Lecade is running out of free hands to push asinine tasks onto. No one knows what in the world's gotten into him.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Private Tylas" + } + }, + { + "fileOverride": "generalsorders-privatetylas-7", + "lineInfo": { + "dialogue": "Between you and me, I'm using this time to work on sleep instead. I mean, honestly! He wants me to dance with the other privates to greet visitors! We don't even ALLOW visitors normally.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Private Tylas" + } + }, + { + "fileOverride": "generalsorders-privatetylas-8", + "lineInfo": { + "dialogue": "So if you want to eat up a few hours, talk with Lecade. Up the hill and into the barracks. I'm going to try and do my actual guard duty here instead of doing the funky Grook.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Private Tylas" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "generalsorders-privatetylas-9", + "lineInfo": { + "dialogue": "*yawn* ...look, we don't accept visitors in the barracks here. Not even if you were Level 80 like me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tylas" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "generalsorders-privatetylas-10", + "lineInfo": { + "dialogue": "Lecade is up the hill and into the barracks. If he asks, tell him I greeted you with a squat-kick dance or something.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tylas" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "generalsorders-privatetylas-11", + "lineInfo": { + "dialogue": "...snrrrk... ... ... ...mimimimimi... ... ... ...snrrrk... ... ... ...mimimimimi...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tylas" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "generalsorders-lieutenant-1", + "lineInfo": { + "dialogue": "I have to dig this hole with only my feet. It's quite odd I admit, but I have faith in our general!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Lieutenant" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "generalsorders-lieutenant-2", + "lineInfo": { + "dialogue": "The General being back to normal is nice and all, but I dug my feet in to the hole and now I'm stuck!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Lieutenant" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "generalsorders-bartender-1", + "lineInfo": { + "dialogue": "Here for some whiskey? Or maybe you'd like a flower. Gahaha, just pullin' your leg.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Bartender" + } + }, + { + "fileOverride": "generalsorders-bartender-2", + "lineInfo": { + "dialogue": "That general up in the fort told me to replace my bar with some of these flowers, so I had to oblige.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Bartender" + } + }, + { + "fileOverride": "generalsorders-bartender-3", + "lineInfo": { + "dialogue": "Don't have much spare water in house, so I guess I'll be using booze to water 'em.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Bartender" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "generalsorders-bartender-4", + "lineInfo": { + "dialogue": "Well I'll be, the soldier's crossing the tightrope.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Barkeeper" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "generalsorders-bartender-5", + "lineInfo": { + "dialogue": "Well well, looks like the general's back to normal. Same time though...the flowers are actually growin' pretty well like this. Think I'll keep 'em.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bartender" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "generalsorders-private-1", + "lineInfo": { + "dialogue": "This is so exhausting... I haven't gotten any orders to stop yet...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Private" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "generalsorders-private-2", + "lineInfo": { + "dialogue": "Hey, do you know what a “Springy” is? The General asked me to install them down the south hallway there.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Private" + } + }, + { + "fileOverride": "generalsorders-private-3", + "lineInfo": { + "dialogue": "I had no clue, so I just purchased some trampolines instead. It, uh, should be close enough, I hope?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Private" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "generalsorders-private-4", + "lineInfo": { + "dialogue": "Well I'm glad this is all over, but I see no harm in keeping the Springy-", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Private" + } + }, + { + "fileOverride": "generalsorders-private-5", + "lineInfo": { + "dialogue": "Er, I mean, keeping the trampolines.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Private" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "generalsorders-private-6", + "lineInfo": { + "dialogue": "So excited to start my new job here! I don't understand why diving in to a pond is a part of the inauguration though.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Private" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "generalsorders-private-7", + "lineInfo": { + "dialogue": "The General is so nice for installing a diving board for us new recruits! Seems kind of odd to have in a fortress though.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Private" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "generalsorders-private-8", + "lineInfo": { + "dialogue": "Why...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Private" + } + }, + { + "fileOverride": "generalsorders-private-9", + "lineInfo": { + "dialogue": "do...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Private" + } + }, + { + "fileOverride": "generalsorders-private-10", + "lineInfo": { + "dialogue": "we...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Private" + } + }, + { + "fileOverride": "generalsorders-private-11", + "lineInfo": { + "dialogue": "hafta...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Private" + } + }, + { + "fileOverride": "generalsorders-private-12", + "lineInfo": { + "dialogue": "do...", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Private" + } + }, + { + "fileOverride": "generalsorders-private-13", + "lineInfo": { + "dialogue": "this!?", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Private" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "generalsorders-private-14", + "lineInfo": { + "dialogue": "I'm currently on a mission I set myself to make elaborate pottery.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Private" + } + }, + { + "fileOverride": "generalsorders-private-15", + "lineInfo": { + "dialogue": "It's quite relaxing, and Lecade conceded and gave me the go ahead.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Private" + } + }, + { + "fileOverride": "generalsorders-private-16", + "lineInfo": { + "dialogue": "Speaking of, I happen to be short on clay; There's some in that cave east of here, if you happen to come by it I'll pay you some.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Private" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "generalsorders-private-17", + "lineInfo": { + "dialogue": "That general is out of his mind... He has me on a mission to make elaborate pottery.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Private" + } + }, + { + "fileOverride": "generalsorders-private-18", + "lineInfo": { + "dialogue": "No good reason for why, although it's quite relaxing I will admit. Won't see me complaining.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Private" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "generalsorders-private-19", + "lineInfo": { + "dialogue": "Some clay I see! I'll take that off of you. Not without compensation of course!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Private" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "generalsorders-sergeant-1", + "lineInfo": { + "dialogue": "My duty is to help extend the aqueduct, but the issue with that is we're just making it one giant loop! The general says it's for quick traversal, who's gonna crawl through a sewer for that?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sergeant" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "generalsorders-sergeant-2", + "lineInfo": { + "dialogue": "Well, we finally finished connecting up this aqueduct. Although, I guess I never really had to do this, since a shape-shifter gave me the order.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sergeant" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "generalsorders-sergeant-3", + "lineInfo": { + "dialogue": "This is just insane. My task was to make a doorway here, but this tower is just filled with some really dark material! Where is it supposed to lead!?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sergeant" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "generalsorders-sergeant-4", + "lineInfo": { + "dialogue": "I've been trying to dig through this stuff... It's so dark I simply can't tell what I'm doing...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sergeant" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "generalsorders-sergeant-5", + "lineInfo": { + "dialogue": "Can't...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Sergeant" + } + }, + { + "fileOverride": "generalsorders-sergeant-6", + "lineInfo": { + "dialogue": "talk..!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Sergeant" + } + }, + { + "fileOverride": "generalsorders-sergeant-7", + "lineInfo": { + "dialogue": "Following...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Sergeant" + } + }, + { + "fileOverride": "generalsorders-sergeant-8", + "lineInfo": { + "dialogue": "orders..!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Sergeant" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "generalsorders-advisor-1", + "lineInfo": { + "dialogue": "My, what an odd task to give to the chief advisor of the general...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Advisor" + } + }, + { + "fileOverride": "generalsorders-advisor-2", + "lineInfo": { + "dialogue": "You see, human, I was told to dig an extension to the sewer with my own hands.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Advisor" + } + }, + { + "fileOverride": "generalsorders-advisor-3", + "lineInfo": { + "dialogue": "And at that, it's supposed to just loop right around back in to the pipe.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Advisor" + } + }, + { + "fileOverride": "generalsorders-advisor-4", + "lineInfo": { + "dialogue": "I think the General is starting to snap under the stress. If you need to return to the fort, just follow along.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Advisor" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "generalsorders-advisor-5", + "lineInfo": { + "dialogue": "I think they might actually make it across...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Advisor" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "generalsorders-rescuer-1", + "lineInfo": { + "dialogue": "WOOO!! Finally! Someone to help- Hey, look over here!!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Rescuer" + } + }, + { + "fileOverride": "generalsorders-rescuer-2", + "lineInfo": { + "dialogue": "Gosh, what a stroke of luck! I finally beat the Bantisu monks to one of you lost fellas!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Rescuer" + } + }, + { + "fileOverride": "generalsorders-rescuer-3", + "lineInfo": { + "dialogue": "I'm here searching for soldiers lost in the canyon, you're the first person I've found!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Rescuer" + } + }, + { + "fileOverride": "generalsorders-rescuer-4", + "lineInfo": { + "dialogue": "This propeller hat is great, by the way. At first it seemed sort of silly, but it works a treat, and it’s real fun, too!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Rescuer" + } + }, + { + "fileOverride": "generalsorders-rescuer-5", + "lineInfo": { + "dialogue": "That aside, just stand under me, and I'll lift you down! Come on now!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Rescuer" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "generalsorders-rescuer-6", + "lineInfo": { + "dialogue": "Here we go!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Rescuer" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "generalsorders-rescuer-7", + "lineInfo": { + "dialogue": "There you go, fella! It's back to the skies for me! Best orders ever!! WOOO!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Rescuer" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "generalsorders-scarecrow-1", + "lineInfo": { + "dialogue": "What's this about a general? Look, I'm just trying to scare away crows...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Scarecrow?" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "generalsorders-scarecrow-2", + "lineInfo": { + "dialogue": "Hey! Shhh. I'm trying to pose as a scarecrow, and if you're around those crows will know I'm real!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Scarecrow?" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "generalsorders-lieutenantgren-1", + "lineInfo": { + "dialogue": "Urgh, time machine. TIME MACHINE! The man’s gone mad, I tell you. I don’t know the first thing about machinery, let alone of this caliber!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Lieutenant Gren" + } + }, + { + "fileOverride": "generalsorders-lieutenantgren-2", + "lineInfo": { + "dialogue": "Why would he even need a time machine?! It isn’t like he hadn’t got oodles of it, what with him sitting at his desk doing nothing anymore!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Lieutenant Gren" + } + }, + { + "fileOverride": "generalsorders-lieutenantgren-3", + "lineInfo": { + "dialogue": "I’m doing what I can, because far be it from me to disobey orders, but I’m certain this scrap heap is nothing but a ticking time bomb...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Lieutenant Gren" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "generalsorders-lieutenantgren-4", + "lineInfo": { + "dialogue": "Gah, what in blazes are you thinking, Lecade?! First this confounded contraption, then...grumble, grumble...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Lieutenant Gren" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "generalsorders-lieutenantgren-5", + "lineInfo": { + "dialogue": "...hm? Oh, the madman’s roped you into this too?! I asked for a Corkian engineer, not- Urgh. Look, have you got any technical knowhow?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Lieutenant Gren" + } + }, + { + "fileOverride": "generalsorders-lieutenantgren-6", + "lineInfo": { + "dialogue": "He wants me to construct him a time machine!! Why does he even need more time when there’s plenty about?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Lieutenant Gren" + } + }, + { + "fileOverride": "generalsorders-lieutenantgren-7", + "lineInfo": { + "dialogue": "Well, beggars can’t be choosers. If you think you have any ideas on how to get it functioning, step inside and see what you can do.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Lieutenant Gren" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "generalsorders-lieutenantgren-8", + "lineInfo": { + "dialogue": "...wait. It’s ticking. Does that mean- Wait, no! HUMAN! GET OUT OF THERE-", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Lieutenant Gren" + } + }, + { + "fileOverride": "generalsorders-lieutenantgren-9", + "lineInfo": { + "dialogue": "GAH!!!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Lieutenant Gren" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "generalsorders-lieutenantgren-10", + "lineInfo": { + "dialogue": "So Lecade had a doppelganger this entire time...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Lieutenant Gren" + } + }, + { + "fileOverride": "generalsorders-lieutenantgren-11", + "lineInfo": { + "dialogue": "If I had to guess, I bet that morphing creature came from a shipment of gear from the southwest.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Lieutenant Gren" + } + }, + { + "fileOverride": "generalsorders-lieutenantgren-12", + "lineInfo": { + "dialogue": "Sorry for not catching it for you two, I had to wash myself off from that explosion you caused.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Lieutenant Gren" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "generalsorders-major-1", + "lineInfo": { + "dialogue": "First off, my task is to catch rats around the table, but the fort HAS no rats.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Major" + } + }, + { + "fileOverride": "generalsorders-major-2", + "lineInfo": { + "dialogue": "Secondly, I'm to catch each of them, individually, with a handheld mousetrap. What folly is this?!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Major" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "generalsorders-major-3", + "lineInfo": { + "dialogue": "Thank goodness that shape-shifter has been dealt with. His ridiculous speech patterns were starting to rub off on the newer recruits...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Major" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "generalsorders-bedbouncer-1", + "lineInfo": { + "dialogue": "Why am I bouncing on this bed you ask? Heck if I know!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Lieutenant" + } + }, + { + "fileOverride": "generalsorders-bedbouncer-2", + "lineInfo": { + "dialogue": "Ever since the general's gone mad, he's asked me to 'test the bounciness of these beds.'", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Lieutenant" + } + }, + { + "fileOverride": "generalsorders-bedbouncer-3", + "lineInfo": { + "dialogue": "I've been doing it long enough that I consider myself quite the expert, now.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Lieutenant" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "generalsorders-bedbouncer-4", + "lineInfo": { + "dialogue": "I loved my job so much I managed to convince Lecade to become a fulltime bed-bouncer!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Bed-Bouncer" + } + }, + { + "fileOverride": "generalsorders-bedbouncer-5", + "lineInfo": { + "dialogue": "One day I'll be the top of my craft in the world!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Bed-Bouncer" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-1", + "lineInfo": { + "dialogue": "Hey, hey, hey! What is this person? Why is it in my administrator's? New work! New work! Get this person out of the administrator's!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-2", + "lineInfo": { + "dialogue": "Wait. Wait, you. Wait right there. Don't move until someone comes to get you. Order! I order it!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-3", + "lineInfo": { + "dialogue": "... ... ...", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-4", + "lineInfo": { + "dialogue": "...okay, person. No one wants to bring you from administrator's, so instead I will give you another orders! Listen, listen, listen!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-5", + "lineInfo": { + "dialogue": "You intended to firstly? Convenient! Here is my order then- Check the war tools. They need to be maintained for use!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-6", + "lineInfo": { + "dialogue": "Cannons and catpults, fortifications and barriers. A barracks needs to be armed to the tooth! I order it! Bad weapons are no weapons!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-7", + "lineInfo": { + "dialogue": "Armaments are to be stored outside fort walls at all times. To the left path leaving the walls. There will be Smithy stationed.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-8", + "lineInfo": { + "dialogue": "Move along! I have many orders to make! Return when the task is concluded!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Lecade" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-9", + "lineInfo": { + "dialogue": "Why is it in my administrator's? Person has work to do! Advise enclosed instruction book for tips.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Lecade" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-10", + "lineInfo": { + "dialogue": "Hey, hey, hey! Person is in my administrator's again! This means the armaments are maintained! That is right?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-11", + "lineInfo": { + "dialogue": "Convenient! Very convenient! Now I will give you another orders! I must ponder for a moment.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-12", + "lineInfo": { + "dialogue": "... ... ...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-13", + "lineInfo": { + "dialogue": "Here is my new work then- Find the coin. A soldier has dropped a lucky charm in the wastewater!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-14", + "lineInfo": { + "dialogue": "All is confused without fortune. Soldiers must not be confused, or else I cannot give orders! Generally orders must be given!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-15", + "lineInfo": { + "dialogue": "The coin has been pushed into the sewage. My orders are convenient, as there is accessibility! The aqua ducts have means of entrance.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-16", + "lineInfo": { + "dialogue": "Outside, the cracked aqua ducts have Sergeant nearby. It shall mark accessibility for you. Return when the charm is gotten!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Lecade" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-17", + "lineInfo": { + "dialogue": "Hey, hey, hey! Administrator's has person once more! The charm has been gotten! That is right?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-18", + "lineInfo": { + "dialogue": "Yipy! Soldier will get returned the coin very soon! Person, the actions you take are convenient! I appreciate your help. I must ponder for a moment.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-19", + "lineInfo": { + "dialogue": "... ... ...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-20", + "lineInfo": { + "dialogue": "Here is my new work then- Show your love. You have made me smile wide through your tasks! The other soldier would appreciate you too!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-21", + "lineInfo": { + "dialogue": "Walk jauntily across the tight rope, and make the other soldier smile as well! Soldiers must be happy at life.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-22", + "lineInfo": { + "dialogue": "The tight rope is right from administrator's- stairs are nearby the passage. Return when the soldier is happy!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Lecade" + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-23", + "lineInfo": { + "dialogue": "Convenient! So convenient! Many cheers for person!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Lecade" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-24", + "lineInfo": { + "dialogue": "Very, very, very happy! The tight rope has been walked! I saw the task!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-25", + "lineInfo": { + "dialogue": "The soldier is very happy now! A smile is brighting the room! Yet the day still is dark. Why this is, I must ponder for a moment.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Lecade" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-26", + "lineInfo": { + "dialogue": "I have devised my plan! I have observed the hills are naked. That must why the soldiers become upset.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-27", + "lineInfo": { + "dialogue": "Here is my new work then- Dress the hill. It is bare and trashy. No good! Trashy hills mean our day is trashy.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-28", + "lineInfo": { + "dialogue": "Turn the hill purple! I order it! Purple is King’s color! The fortress will feel a castle and we will feast for a hundred!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-29", + "lineInfo": { + "dialogue": "Previously, Springy were introduced. They will make easy accessibility! Person will find Springy past the tight rope.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Lecade" + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-30", + "lineInfo": { + "dialogue": "Hey, hey, hey! Person has returned to Administrator's! The hill is King’s color now! This is right?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-31", + "lineInfo": { + "dialogue": "Convenient, convenient, convenient! Our day is will be no longer trashy. Good tasks have been concluded!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-32", + "lineInfo": { + "dialogue": "However, tasks must be serious. Person's next work is very important. Mister “Gren” needs of help.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-33", + "lineInfo": { + "dialogue": "”Gren” Lieutenant has worked on task for many days. He needs assistance, fast- Time is required of a machine!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-34", + "lineInfo": { + "dialogue": "Here is my new work then- Assist “Gren.” It is important work. Science machines are complicating.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-35", + "lineInfo": { + "dialogue": "Build the machine with time! ”Gren” is left outside Administrator's. Assist Lieutenant!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Lecade" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-36", + "lineInfo": { + "dialogue": "Who goes there?! What, come to try and finish the job, you beast?! ...wait...a human?! Whatever reason you’re down here for, you need to listen!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "???" + } + }, + { + "fileOverride": "generalsorders-lecade-37", + "lineInfo": { + "dialogue": "I am General Lecade of the Kitrios Barracks! While you're on my ground, you must follow my orders!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-38", + "lineInfo": { + "dialogue": "Soldier, I order you to unlock this door! They tossed the key behind that desk; we'll be able to discuss this once I'm out.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Lecade" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-39", + "lineInfo": { + "dialogue": "Good. Thank you, soldier. There's a lot to explain. I'll tell you everything on the way.", + "line": { + "current": 1, + "max": 30 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-40", + "lineInfo": { + "dialogue": "For now, though, we should get out of this dilapidated prison. Let’s go.", + "line": { + "current": 2, + "max": 30 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-41", + "lineInfo": { + "dialogue": "Inconvenient! No escape!", + "line": { + "current": 3, + "max": 30 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-42", + "lineInfo": { + "dialogue": "What in the...?!", + "line": { + "current": 4, + "max": 30 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-43", + "lineInfo": { + "dialogue": "You...! You're... What is the meaning of this, why do you look like me?!", + "line": { + "current": 5, + "max": 30 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-44", + "lineInfo": { + "dialogue": "Trashy liar! No escape! I order it! Generally orders must be done! Return to the room!", + "line": { + "current": 6, + "max": 30 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-45", + "lineInfo": { + "dialogue": "What nonsense...! I'll wrestle that costume off of you, you impostor!", + "line": { + "current": 7, + "max": 30 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-46", + "lineInfo": { + "dialogue": "Agh... As insane as you sound, you’re a tough fight... Human, you need to finish this thing off!", + "line": { + "current": 8, + "max": 30 + }, + "npc": "Lecade 2" + } + }, + { + "fileOverride": "generalsorders-lecade-47", + "lineInfo": { + "dialogue": "Person! I have new work for you- Knock down the fake soldier! Assist fast!", + "line": { + "current": 9, + "max": 30 + }, + "npc": "Lecade 1" + } + }, + { + "fileOverride": "generalsorders-lecade-48", + "lineInfo": { + "dialogue": "What folly! A doppelganger calling ME a fake! How about you go ahead and prove yourself?", + "line": { + "current": 10, + "max": 30 + }, + "npc": "Lecade 2" + } + }, + { + "fileOverride": "generalsorders-lecade-49", + "lineInfo": { + "dialogue": "Hey, hey, hey! Smart thoughts from fakeman! Our home- we called it Gravel!", + "line": { + "current": 11, + "max": 30 + }, + "npc": "Lecade 1" + } + }, + { + "fileOverride": "generalsorders-lecade-50", + "lineInfo": { + "dialogue": "Gravel? I've never heard something more outlandish, it's called Gavel!", + "line": { + "current": 12, + "max": 30 + }, + "npc": "Lecade 2" + } + }, + { + "fileOverride": "generalsorders-lecade-51", + "lineInfo": { + "dialogue": "Are the rumors about humans being brainless mercenaries REALLY true?!", + "line": { + "current": 13, + "max": 30 + }, + "npc": "Lecade 2" + } + }, + { + "fileOverride": "generalsorders-lecade-52", + "lineInfo": { + "dialogue": "Do you even know where we are...? How about this then, who's the private who guards the entrance?", + "line": { + "current": 14, + "max": 30 + }, + "npc": "Lecade 2" + } + }, + { + "fileOverride": "generalsorders-lecade-53", + "lineInfo": { + "dialogue": "Tiger! The soldier with dance is Tiger!", + "line": { + "current": 15, + "max": 30 + }, + "npc": "Lecade 1" + } + }, + { + "fileOverride": "generalsorders-lecade-54", + "lineInfo": { + "dialogue": "Tiger?! His name is Tylas!! A tiger is an exotic animal, not some drowsy private!", + "line": { + "current": 16, + "max": 30 + }, + "npc": "Lecade 2" + } + }, + { + "fileOverride": "generalsorders-lecade-55", + "lineInfo": { + "dialogue": "No wonder he was asleep, it seems he was even too lazy to give you his name!", + "line": { + "current": 17, + "max": 30 + }, + "npc": "Lecade 2" + } + }, + { + "fileOverride": "generalsorders-lecade-56", + "lineInfo": { + "dialogue": "AHA! I have pondered- say where Springy is held!", + "line": { + "current": 18, + "max": 30 + }, + "npc": "Lecade 1" + } + }, + { + "fileOverride": "generalsorders-lecade-57", + "lineInfo": { + "dialogue": "What in the... Springy- What in the world are you talking about?! We don’t store springs in the fort!!", + "line": { + "current": 19, + "max": 30 + }, + "npc": "Lecade 2" + } + }, + { + "fileOverride": "generalsorders-lecade-58", + "lineInfo": { + "dialogue": "Weak fake soldier!! Springy is held to sleep! Springy is held on top of the pillar!!", + "line": { + "current": 20, + "max": 30 + }, + "npc": "Lecade 1" + } + }, + { + "fileOverride": "generalsorders-lecade-59", + "lineInfo": { + "dialogue": "Convenient! Person is not stupid! Smile!", + "line": { + "current": 21, + "max": 30 + }, + "npc": "Lecade 1" + } + }, + { + "fileOverride": "generalsorders-lecade-60", + "lineInfo": { + "dialogue": "Enough of this! Soldier, you can't possibly believe that fraud, we have to team up on him!", + "line": { + "current": 22, + "max": 30 + }, + "npc": "Lecade 2" + } + }, + { + "fileOverride": "generalsorders-lecade-61", + "lineInfo": { + "dialogue": "Fine then- If I'm alone on this, it's time for the classic Lecade Power Play!!", + "line": { + "current": 23, + "max": 30 + }, + "npc": "Lecade 2" + } + }, + { + "fileOverride": "generalsorders-lecade-62", + "lineInfo": { + "dialogue": "Inconvenient! Person is trashy! Terrible fake! I will not intend the victim on returning to home!", + "line": { + "current": 24, + "max": 30 + }, + "npc": "???" + } + }, + { + "fileOverride": "generalsorders-lecade-63", + "lineInfo": { + "dialogue": "He... he transformed! A shapeshifter?!", + "line": { + "current": 25, + "max": 30 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-64", + "lineInfo": { + "dialogue": "I did fine work! I generally performed tasks to soldiers! There’s nothing wrong!", + "line": { + "current": 26, + "max": 30 + }, + "npc": "???" + } + }, + { + "fileOverride": "generalsorders-lecade-65", + "lineInfo": { + "dialogue": "Too much! Too much! Too much! Escape! Need escape! Too strong!", + "line": { + "current": 27, + "max": 30 + }, + "npc": "???" + } + }, + { + "fileOverride": "generalsorders-lecade-66", + "lineInfo": { + "dialogue": "Damn! He's gone... I don't think I'll be able to catch him on foot at this rate.", + "line": { + "current": 28, + "max": 30 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-67", + "lineInfo": { + "dialogue": "I can't believe you actually trusted him, but I couldn't hold a grudge about it. The thing's gone, anyways.", + "line": { + "current": 29, + "max": 30 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-68", + "lineInfo": { + "dialogue": "It wouldn't be right to leave you empty handed over it. Perhaps you can find a use for that odd slime it left behind.", + "line": { + "current": 30, + "max": 30 + }, + "npc": "Lecade" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-69", + "lineInfo": { + "dialogue": "What!? Books have told me this home is hilly and crumbly!", + "line": { + "current": 13, + "max": 30 + }, + "npc": "Lecade 1" + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-70", + "lineInfo": { + "dialogue": "Weak worm!! Person has been convenient with work- Why do stupid things?!", + "line": { + "current": 17, + "max": 30 + }, + "npc": "Lecade 1" + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-71", + "lineInfo": { + "dialogue": "What even is a springy?! He’s speaking utter nonsense!", + "line": { + "current": 21, + "max": 30 + }, + "npc": "Lecade 2" + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-72", + "lineInfo": { + "dialogue": "Good! Let's make him pay!", + "line": { + "current": 23, + "max": 30 + }, + "npc": "Lecade 2" + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-73", + "lineInfo": { + "dialogue": "Damn! He's gone... I don't think we'll be able to catch him on foot at this rate.", + "line": { + "current": 28, + "max": 30 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-74", + "lineInfo": { + "dialogue": "Well soldier, I'll be checking out what degree of havoc he's wreaked on this fort.", + "line": { + "current": 29, + "max": 30 + }, + "npc": "Lecade" + } + }, + { + "fileOverride": "generalsorders-lecade-75", + "lineInfo": { + "dialogue": "I couldn't leave you unrewarded for your efforts though. You seem resourceful- Perhaps you can find a use for that odd slime it left behind.", + "line": { + "current": 30, + "max": 30 + }, + "npc": "Lecade" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "generalsorders-lecade-76", + "lineInfo": { + "dialogue": "The soldiers understood the situation, luckily. Can't believe it got that far. I'll make sure nothing like that ever happens again!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Lecade" + } + } + ] + } + } + }, + "Grand Youth": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "grandyouth-monte-1", + "lineInfo": { + "dialogue": "Oh, what am I to do...? How am I to be our next elder if I cannot even help him... Oh? Ehm, hello, stranger.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Monte" + } + }, + { + "fileOverride": "grandyouth-monte-2", + "lineInfo": { + "dialogue": "You most likely heard me. Our elder has fallen ill of some vile disease... I am to be our next elder, but I am not yet ready.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Monte" + } + }, + { + "fileOverride": "grandyouth-monte-3", + "lineInfo": { + "dialogue": "We have tried everything we can think of, but our healers and shamans have failed to cure him. We had some hope, however...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Monte" + } + }, + { + "fileOverride": "grandyouth-monte-4", + "lineInfo": { + "dialogue": "A man in your city, Troms, insists that he sells healing water that could cure him, but he is selling it for an exorbitant price that we cannot afford!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Monte" + } + }, + { + "fileOverride": "grandyouth-monte-5", + "lineInfo": { + "dialogue": "I do not know where else to turn. I must ask you for help. If you can purchase it, I am sure that we could find a way to repay you.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Monte" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "grandyouth-salesman-1", + "lineInfo": { + "dialogue": "Oh, why hello there! Come for my patented healing water, have you? Any problem instantly cured! Sniffles beware!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Salesman" + } + }, + { + "fileOverride": "grandyouth-salesman-2", + "lineInfo": { + "dialogue": "You're quite lucky, I only have a couple of bottles left, so it won't go cheap, but this is the good stuff! Only [64 Liquified Emeralds]!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Salesman" + } + }, + { + "fileOverride": "grandyouth-salesman-3", + "lineInfo": { + "dialogue": "What? Don't give me that look! This is the real stuff, very valuable and rare! What do ya take me for, some guy who'd sell lake water for a fortune?!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Salesman" + } + }, + { + "fileOverride": "grandyouth-salesman-4", + "lineInfo": { + "dialogue": "Agh, agh! Put away the weapon! Put it away! Jeez, buddy! Alright, I admit it, I'm a fraudster! But, I do know where you get the real stuff, I ain't lying about that much.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Salesman" + } + }, + { + "fileOverride": "grandyouth-salesman-5", + "lineInfo": { + "dialogue": "There's this group of mages out in Dernel who know how to get the stuff. They're a bunch of tightwads and wouldn't give me any real healing water to sell.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Salesman" + } + }, + { + "fileOverride": "grandyouth-salesman-6", + "lineInfo": { + "dialogue": "I doubt you'll have any better luck with it, but go on, try your luck.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Salesman" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "grandyouth-isfurus-1", + "lineInfo": { + "dialogue": "Hm, hm...if it really does that, then...oh, is someone there? Erisk?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Isfurus" + } + }, + { + "fileOverride": "grandyouth-isfurus-2", + "lineInfo": { + "dialogue": "Oh, a tourist. Heard about the healing water, I presume? Well, if you are here to make a quick buck, you can turn right back around from where you came.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Isfurus" + } + }, + { + "fileOverride": "grandyouth-isfurus-3", + "lineInfo": { + "dialogue": "Hm...ah. Iboju's sister settlement...I see. I will trust this is an honest venture, then. The tribesmen are honourable.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Isfurus" + } + }, + { + "fileOverride": "grandyouth-isfurus-4", + "lineInfo": { + "dialogue": "I will provide you a specially-prepared bottle to hold the water in. My colleague, Erisk, is within the fountain here. He can fill up the bottle for you.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Isfurus" + } + }, + { + "fileOverride": "grandyouth-isfurus-5", + "lineInfo": { + "dialogue": "There are a few animals in the fountain, however. They're wild and will most likely attack, but you look well-armoured. I doubt you'll have trouble.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Isfurus" + } + }, + { + "fileOverride": "grandyouth-isfurus-6", + "lineInfo": { + "dialogue": "The entrance to the heart of the fountain is right below us. Take a deep breath and dive right in.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Isfurus" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "grandyouth-erisk-1", + "lineInfo": { + "dialogue": "And who might you be? We certainly don't get many visitors down here.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Erisk" + } + }, + { + "fileOverride": "grandyouth-erisk-2", + "lineInfo": { + "dialogue": "Aha, Isfurus referred you. Yes, let me bottle this up for you, then. Once I do, make sure you don't drop them! Both the bottles and the water are valuable and difficult to replace.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Erisk" + } + }, + { + "fileOverride": "grandyouth-erisk-3", + "lineInfo": { + "dialogue": "But what a marvel this place is...water to cure all ailments, even aging! I even hear there is a similar fountain someplace in Gavel, can you believe?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Erisk" + } + }, + { + "fileOverride": "grandyouth-erisk-4", + "lineInfo": { + "dialogue": "Oh, I nearly forgot. Just make sure to check back in with Isfurus before you leave! There is just one more step to the process he has to take care of.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Erisk" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "grandyouth-isfurus-7", + "lineInfo": { + "dialogue": "Aha. You had no trouble, I assume? Hand the bottle here, I'll finish the seal and remove the impurities...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Isfurus" + } + }, + { + "fileOverride": "grandyouth-isfurus-8", + "lineInfo": { + "dialogue": "...done. There is much potential here...ancient tribal markings repeat the word \"youth\" over and again. It could be used, or abused...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Isfurus" + } + }, + { + "fileOverride": "grandyouth-isfurus-9", + "lineInfo": { + "dialogue": "Anyways, you have your water. Not to be rude, but I must ask that you leave me to my research now. You have your delivery to make anyway, correct?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Isfurus" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "grandyouth-monte-6", + "lineInfo": { + "dialogue": "You have returned, I see. Have you the healing water?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Monte" + } + }, + { + "fileOverride": "grandyouth-monte-7", + "lineInfo": { + "dialogue": "Aha, perfect! If this will not work, then...no, I must have faith.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Monte" + } + }, + { + "fileOverride": "grandyouth-monte-8", + "lineInfo": { + "dialogue": "From the bottom of my heart, thank you. I know we surely will not be able to compensate you for the price of the water...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Monte" + } + }, + { + "fileOverride": "grandyouth-monte-9", + "lineInfo": { + "dialogue": "...but here. This is the summation of our village's riches. For aiding us, consider it yours.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Monte" + } + } + ] + } + } + }, + "Grave Digger": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "gravedigger-sayleros-1", + "lineInfo": { + "dialogue": "You sure look like a strong adventurer who could help me!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Sayleros" + } + }, + { + "fileOverride": "gravedigger-sayleros-2", + "lineInfo": { + "dialogue": "My name is Sayleros. I spent most of my life in Nemract, but decided to come live in Detlas with my family a few weeks ago.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Sayleros" + } + }, + { + "fileOverride": "gravedigger-sayleros-3", + "lineInfo": { + "dialogue": "However, we got attacked by thieves on our way here, and I had to leave my family behind. Most of them died, unfortunately.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Sayleros" + } + }, + { + "fileOverride": "gravedigger-sayleros-4", + "lineInfo": { + "dialogue": "I know that my brother had his will on him during the attack. Knowing he was a rich fellow, I expect to be receving a large part of his fortune.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Sayleros" + } + }, + { + "fileOverride": "gravedigger-sayleros-5", + "lineInfo": { + "dialogue": "His body is buried somewhere in Nemract. I own a large graveyard there, and can grant you access to it if you can bring me back his will.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Sayleros" + } + }, + { + "fileOverride": "gravedigger-sayleros-6", + "lineInfo": { + "dialogue": "One of my other brothers also survived the attack. He isn't... um... somebody I'd trust greatly, but I'm sure he has some useful informations for you.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Sayleros" + } + }, + { + "fileOverride": "gravedigger-sayleros-7", + "lineInfo": { + "dialogue": "His name is Drucksh. He usually likes to talk a lot when he is drunk, see if you can do anything with that.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Sayleros" + } + }, + { + "fileOverride": "gravedigger-sayleros-8", + "lineInfo": { + "dialogue": "I'll be waiting for your return! Follow this path, it leads directly to Nemract. Good Luck!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Sayleros" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "gravedigger-drucksh-1", + "lineInfo": { + "dialogue": "Mmh. g... uh! oh, why hello there.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Drucksh" + } + }, + { + "fileOverride": "gravedigger-drucksh-2", + "lineInfo": { + "dialogue": "My brother? Oh yes, I do know where he is \"buried\", but do I want to tell you? No, It's none of your business.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Drucksh" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "gravedigger-drucksh-3", + "lineInfo": { + "dialogue": "Ohh mmhhhgg... g-g-good old Nemract whiskey!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Drucksh" + } + }, + { + "fileOverride": "gravedigger-drucksh-4", + "lineInfo": { + "dialogue": "F-fine! I guess it wouldn't h-h-hurt to tell...*burp*..you where it-it- he is...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Drucksh" + } + }, + { + "fileOverride": "gravedigger-drucksh-5", + "lineInfo": { + "dialogue": "It's in the old c-c-cathedral, at the end of the town. Walk east, it should be right after the b-b-bridge.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Drucksh" + } + }, + { + "fileOverride": "gravedigger-drucksh-6", + "lineInfo": { + "dialogue": "Though, the p-p-priest might not let you go in that easily...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Drucksh" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "gravedigger-priest-1", + "lineInfo": { + "dialogue": "Are you trying to go down into the crypt? Oh, that is a very bad idea.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "The Priest" + } + }, + { + "fileOverride": "gravedigger-priest-2", + "lineInfo": { + "dialogue": "This place has been corrupted, and the dead came back to life. We had to break the stairs to protect this cathedral.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "The Priest" + } + }, + { + "fileOverride": "gravedigger-priest-3", + "lineInfo": { + "dialogue": "If you really want to enter it, I'd have to purify it so it doesn't corrupt you.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "The Priest" + } + }, + { + "fileOverride": "gravedigger-priest-4", + "lineInfo": { + "dialogue": "Bring me [12 Rotten Flesh], that should do it. Ancient Nemract is filled with zombies, it's toward the south-west.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "The Priest" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "gravedigger-priest-5", + "lineInfo": { + "dialogue": "You got the flesh. Good.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "The Priest" + } + }, + { + "fileOverride": "gravedigger-priest-6", + "lineInfo": { + "dialogue": "It should be... \"safe\", now. Be very careful, you are entering at your own risk.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "The Priest" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "gravedigger-sayleros-9", + "lineInfo": { + "dialogue": "You look like you desperately need an adventure, Come back when you're level 20, I might need you.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sayleros" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "gravedigger-sayleros-10", + "lineInfo": { + "dialogue": "Thank you so much for your help!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sayleros" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "gravedigger-sayleros-11", + "lineInfo": { + "dialogue": "soldier, there you are! You were taking so long, so I came over here as quickly as I could, in case you needed my help.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Sayleros" + } + }, + { + "fileOverride": "gravedigger-sayleros-12", + "lineInfo": { + "dialogue": "What? You got his will already? That- that's brilliant! Here, let me take a look.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Sayleros" + } + }, + { + "fileOverride": "gravedigger-sayleros-13", + "lineInfo": { + "dialogue": "Well, it's a little dusty, but I think it'll do the trick! Thank you greatly for the help.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Sayleros" + } + }, + { + "fileOverride": "gravedigger-sayleros-14", + "lineInfo": { + "dialogue": "Here, here, take these as proof of my gratitude. And, also- Priest, since you're here, I'd like to grant soldier here access to the graveyard.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Sayleros" + } + }, + { + "fileOverride": "gravedigger-priest-7", + "lineInfo": { + "dialogue": "Very well. It shall be done.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Priest" + } + }, + { + "fileOverride": "gravedigger-sayleros-15", + "lineInfo": { + "dialogue": "Excellent. Well, I'll be off to Detlas now. Feel free to visit if you'd like!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Sayleros" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "gravedigger-priest-8", + "lineInfo": { + "dialogue": "Thank the gods you are still alive! Hopefully you are still doing fine in this dangerous world?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "The Priest" + } + } + ] + } + } + }, + "Green Gloop": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "greengloop-eluzterp-1", + "lineInfo": { + "dialogue": "Oh, hey! You, adventurer over there! Would you mind helping me?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Eluzterp" + } + }, + { + "fileOverride": "greengloop-eluzterp-2", + "lineInfo": { + "dialogue": "You see, this cave behind me has been troubling me for the past while now.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Eluzterp" + } + }, + { + "fileOverride": "greengloop-eluzterp-3", + "lineInfo": { + "dialogue": "There are special slimes that live in there, and they drop a certain goo that is quite a delicacy when brewed into a drink!", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Eluzterp" + } + }, + { + "fileOverride": "greengloop-eluzterp-4", + "lineInfo": { + "dialogue": "They are called Gooey Slimes, and should be at the very back. A friend of mine drinks the stuff like water, and he refuses to work without it.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Eluzterp" + } + }, + { + "fileOverride": "greengloop-eluzterp-5", + "lineInfo": { + "dialogue": "However, the slimes have gotten stronger about a month ago. I'm unable to retrieve it any more, I've come close to getting killed a few times!", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Eluzterp" + } + }, + { + "fileOverride": "greengloop-eluzterp-6", + "lineInfo": { + "dialogue": "You, however, seem much better equipped than I. Hopefully you can do it.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Eluzterp" + } + }, + { + "fileOverride": "greengloop-eluzterp-7", + "lineInfo": { + "dialogue": "If you decide to help me, you'll need to obtain a special device for retrieving it, as the slime will dry up quickly in the air.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Eluzterp" + } + }, + { + "fileOverride": "greengloop-eluzterp-8", + "lineInfo": { + "dialogue": "A... less fickle glassblower, Yodbon, can make it for you. He should be living in a house in front of the Almuj bank.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Eluzterp" + } + }, + { + "fileOverride": "greengloop-eluzterp-9", + "lineInfo": { + "dialogue": "I'll need [8 Slimey Goo] since we'll need a big batch of drinks. If you help, I'll be sure to tell him, and he'll probably let you into his shop.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Eluzterp" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "greengloop-yodbon-1", + "lineInfo": { + "dialogue": "Welcome to Yodbon's Glass Blowery, what can I do f-", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Yodbon" + } + }, + { + "fileOverride": "greengloop-yodbon-2", + "lineInfo": { + "dialogue": "Oh, another stinkin' adventurer, eh...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Yodbon" + } + }, + { + "fileOverride": "greengloop-yodbon-3", + "lineInfo": { + "dialogue": "So many've been coming up to me recently, askin' for a bloody Slime Scooper...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Yodbon" + } + }, + { + "fileOverride": "greengloop-yodbon-4", + "lineInfo": { + "dialogue": "Izzat brother o' mine stopped workin' again? I swear, he's addicted to that slop...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Yodbon" + } + }, + { + "fileOverride": "greengloop-yodbon-5", + "lineInfo": { + "dialogue": "Anyways, for me to make you a scooper you'll need to get [5 Soft Sand].", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Yodbon" + } + }, + { + "fileOverride": "greengloop-yodbon-6", + "lineInfo": { + "dialogue": "Come back to me once you've gotten ahold of it. You can dig it up from those sand piles 'round the desert.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Yodbon" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "greengloop-yodbon-7", + "lineInfo": { + "dialogue": "You've returned, I see.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Yodbon" + } + }, + { + "fileOverride": "greengloop-yodbon-8", + "lineInfo": { + "dialogue": "A'ight, fork 'em over and I'll make you the scooper.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Yodbon" + } + }, + { + "fileOverride": "greengloop-yodbon-9", + "lineInfo": { + "dialogue": "...There you go. No idea why he wants that stuff though. Maybe it's an acquired taste...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Yodbon" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "greengloop-eluzterp-10", + "lineInfo": { + "dialogue": "Oh, you're back! Good to see you were able to get through there. Have you got a full Slime Scooper?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Eluzterp" + } + }, + { + "fileOverride": "greengloop-eluzterp-11", + "lineInfo": { + "dialogue": "Hmm, yes, everything seems to be in order. Perfect!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Eluzterp" + } + }, + { + "fileOverride": "greengloop-eluzterp-12", + "lineInfo": { + "dialogue": "Thank you very much. Finally, I'll be able to get him in gear again... Why are all Villagers so fickle like that?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Eluzterp" + } + }, + { + "fileOverride": "greengloop-eluzterp-13", + "lineInfo": { + "dialogue": "Well, I suppose that's beside the point. I'll be sure to let him know you got him his most recent fix.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Eluzterp" + } + }, + { + "fileOverride": "greengloop-eluzterp-14", + "lineInfo": { + "dialogue": "He hangs around in a little black stall in the bazaar, there's a basement to it. He should let you inside now.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Eluzterp" + } + }, + { + "fileOverride": "greengloop-eluzterp-15", + "lineInfo": { + "dialogue": "And, for your troubles, a little something from me as well.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Eluzterp" + } + } + ] + } + } + }, + "Gylia Plains": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "gyliaplains-librarian-1", + "lineInfo": { + "dialogue": "Ah, a fellow connoisseur of literature like myself! It's good to see another intellectual within these ancient halls.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Librarian" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "gyliaplains-librarian-2", + "lineInfo": { + "dialogue": "And when I say ancient I mean it. This library is almost as old as the city itself. It's a wonder how much our ancestors knew all those years back.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Librarian" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "gyliaplains-librarian-3", + "lineInfo": { + "dialogue": "It is a shame though that not many are interested in our history. This place has become so underused that the Guild Hall has started placing its records here.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Librarian" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "gyliaplains-librarian-4", + "lineInfo": { + "dialogue": "Ha! Can you imagine? They care more about those groups of mercenaries than the old ways of our forefathers. Complete insanity!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Librarian" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "gyliaplains-librarian-5", + "lineInfo": { + "dialogue": "Ah, look at me talking your ear off. You likely have more important matters to attend. Well, I shan't keep you here any longer. Farewell!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Librarian" + }, + "settings": { + "falloff": 200 + } + } + ] + } + } + }, + "Haven Antiquity": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "havenantiquity-cinfras-1", + "lineInfo": { + "dialogue": "Hey there adventurer, can I speak with you for a second? I need you to do a spot of detective work for me.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Cinfras" + } + }, + { + "fileOverride": "havenantiquity-cinfras-2", + "lineInfo": { + "dialogue": "My grandfather once told me how beautiful this place was, and how to visit here if I wanted to relax.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Cinfras" + } + }, + { + "fileOverride": "havenantiquity-cinfras-3", + "lineInfo": { + "dialogue": "But as you can see, this island is the least bit relaxing. It is a sorrowful place, corrupted and dark.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Cinfras" + } + }, + { + "fileOverride": "havenantiquity-cinfras-4", + "lineInfo": { + "dialogue": "This can't be right. My grandfather was an honest man, he wouldn't have lied.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Cinfras" + } + }, + { + "fileOverride": "havenantiquity-cinfras-5", + "lineInfo": { + "dialogue": "I figure something must have happened. I really want to know how it got like this.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Cinfras" + } + }, + { + "fileOverride": "havenantiquity-cinfras-6", + "lineInfo": { + "dialogue": "There's an old creepy man living up on that hill in a big mansion who seems just old enough to know what happened. It might be a good place to start.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Cinfras" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "havenantiquity-oldsiwel-1", + "lineInfo": { + "dialogue": "What do you want? I'm busy. Brewing potions takes focus, you know....", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-2", + "lineInfo": { + "dialogue": "Oh, you want to know about the island's history? Well you certainly came to the right man. I've lived here for a very long time.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-3", + "lineInfo": { + "dialogue": "There is a way for you to see for yourself what happened here. It's quite... an interesting tale, too.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-4", + "lineInfo": { + "dialogue": "I'd sit and tell you, but I feel you might get a better experience first hand....", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-5", + "lineInfo": { + "dialogue": "Using some of the more... frowned upon methods in the alchemists library I am able to send you into the 'memory' of a dead person that lived here at the time.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-6", + "lineInfo": { + "dialogue": "It will require a little work from you though, if you wish to proceed....", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-7", + "lineInfo": { + "dialogue": "Bring me [3 Umbral Essences] and I will be able to cast a spell on you which will allow you to pass into the 'memory' of the deceased.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Old Siwel" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "havenantiquity-oldsiwel-8", + "lineInfo": { + "dialogue": "Excellent. You acquired the ingredients. Just give me a second and I'll prepare you for your journey into the mind of the dead.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-9", + "lineInfo": { + "dialogue": "*Mumbles a strange, dead language...*", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-10", + "lineInfo": { + "dialogue": "*Mumbles a strange, dead language....*", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-11", + "lineInfo": { + "dialogue": "There, look into my eyes. Yes, you're ready. Ah, there is a drawback though....", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-12", + "lineInfo": { + "dialogue": "Once you are inside the memory, it will feel like you are actually there. You won't be able to return until you have succeeded in your task.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-13", + "lineInfo": { + "dialogue": "To enter the memory, you need to find the dead man at the end of the crypt in the graveyard.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-14", + "lineInfo": { + "dialogue": "The dead roam those caves in heavy numbers, so watch your step.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-15", + "lineInfo": { + "dialogue": "Oh and one more thing, If you die in the memory, you die in reality too....", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-16", + "lineInfo": { + "dialogue": "Best of luck....", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Old Siwel" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "havenantiquity-siwel-1", + "lineInfo": { + "dialogue": "Oh, hello there. Would you mind helping me with something for a second?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Siwel" + } + }, + { + "fileOverride": "havenantiquity-siwel-2", + "lineInfo": { + "dialogue": "Recently, some strange things have been happening to the miners around here. New diseases, unexplained disappearances, and things like that.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Siwel" + } + }, + { + "fileOverride": "havenantiquity-siwel-3", + "lineInfo": { + "dialogue": "The villagers have been getting very worried. So, in an attempt to protect the island, I bought a strange egg and placed it in a cave close to town.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Siwel" + } + }, + { + "fileOverride": "havenantiquity-siwel-4", + "lineInfo": { + "dialogue": "The egg, however, isn't what I thought it was. It is producing monsters and giving off some sort of dark aura.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Siwel" + } + }, + { + "fileOverride": "havenantiquity-siwel-5", + "lineInfo": { + "dialogue": "I want you to go check out that egg. See if you can get rid of whatever it is producing. Bring me [5 Monster Hides] as evidence.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Siwel" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "havenantiquity-siwel-6", + "lineInfo": { + "dialogue": "You're back! Were you able to stop that egg?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Siwel" + } + }, + { + "fileOverride": "havenantiquity-siwel-7", + "lineInfo": { + "dialogue": "No? Well, I guess we'll have to wait and see what it hatches into.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Siwel" + } + }, + { + "fileOverride": "havenantiquity-siwel-8", + "lineInfo": { + "dialogue": "I see you got some rather rare dark monster hide. Maybe I could use those in a potion for something, maybe to prolong life.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Siwel" + } + }, + { + "fileOverride": "havenantiquity-siwel-9", + "lineInfo": { + "dialogue": "Some of the villagers believe that it is unwise for myself to dabble in the dark arts, dealing with mysterious eggs and brewing potions of death.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Siwel" + } + }, + { + "fileOverride": "havenantiquity-siwel-10", + "lineInfo": { + "dialogue": "I'll outlive them all, you'll see!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Siwel" + } + }, + { + "fileOverride": "havenantiquity-siwel-11", + "lineInfo": { + "dialogue": "As for you, you have done what I asked. You may return to your personal affairs now.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Siwel" + } + }, + { + "fileOverride": "havenantiquity-siwel-12", + "lineInfo": { + "dialogue": "Thank you for your work, though. Only time will tell what that egg will hatch into.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Siwel" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "havenantiquity-oldsiwel-17", + "lineInfo": { + "dialogue": "What? You... you made it back? Oh... Very well. Alchemy can be a... dangerous practice.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-18", + "lineInfo": { + "dialogue": "Anyone who tried to find out the island's history came to me at some point, and I sent them on a one way street to a memory. But not you....", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-19", + "lineInfo": { + "dialogue": "So now you know my dreadful secret, I am racked with guilt and cursed with eternal life.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-20", + "lineInfo": { + "dialogue": "There is no need to fight me, I am suffering enough for what I... wrought on this island.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-21", + "lineInfo": { + "dialogue": "I could not destroy the egg. It hatched into a... monstrous beast that cursed this island until this very day.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-22", + "lineInfo": { + "dialogue": "A powerful warrior from... Ragni slew the beast, yet the island did not rejuvenate....", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-23", + "lineInfo": { + "dialogue": "I leave the bones of the beast as a reminder of my failure, the destruction it brought still... lingers in the monsters it left behind.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Old Siwel" + } + }, + { + "fileOverride": "havenantiquity-oldsiwel-24", + "lineInfo": { + "dialogue": "So adventurer, now you have the knowledge of what I have done. You may tell the others down in the village, as it is no longer a secret.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Old Siwel" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "havenantiquity-cinfras-7", + "lineInfo": { + "dialogue": "So, did you find out what happened?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Cinfras" + } + }, + { + "fileOverride": "havenantiquity-cinfras-8", + "lineInfo": { + "dialogue": "Siwel was the one who caused this sorrow? He does have a very dark presence about him, doesn't he?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Cinfras" + } + }, + { + "fileOverride": "havenantiquity-cinfras-9", + "lineInfo": { + "dialogue": "Thank you for your work! I know it must have been tough getting that out of him.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Cinfras" + } + }, + { + "fileOverride": "havenantiquity-cinfras-10", + "lineInfo": { + "dialogue": "Now that this mystery is solved I will be returning home. I hope we will meet again!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Cinfras" + } + } + ] + } + } + }, + "Heart of Llevigar": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "heartofllevigar-zenam-1", + "lineInfo": { + "dialogue": "Aaah, no no no! This doesn't make any sense, what in the world is going on?! Nothing's working!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Zenam" + } + }, + { + "fileOverride": "heartofllevigar-zenam-2", + "lineInfo": { + "dialogue": "Gweh, a visitor? Get out of here! The plant is shut down for maintenance- wait, are you the electromagic expert we're paying for?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Zenam" + } + }, + { + "fileOverride": "heartofllevigar-zenam-3", + "lineInfo": { + "dialogue": "You are, right? Right?! Cause we can't wait any longer! This system was supposed to be unbreakable, a flawless design!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Zenam" + } + }, + { + "fileOverride": "heartofllevigar-zenam-4", + "lineInfo": { + "dialogue": "We didn't even need to get Corkian consultation on this, we had this system all figured out ourselves, but now nothing's working right!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Zenam" + } + }, + { + "fileOverride": "heartofllevigar-zenam-5", + "lineInfo": { + "dialogue": "You're seeing all these sparks and hearing all this crackling? We have no idea what could possibly be going wrong with this! That's why you're needed here!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Zenam" + } + }, + { + "fileOverride": "heartofllevigar-zenam-6", + "lineInfo": { + "dialogue": "We don't have much time until full meltdown! There is an entrance to the power plant opposite the bank, go there and meet with the Head Engineer!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Zenam" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "heartofllevigar-headengineer-1", + "lineInfo": { + "dialogue": "Whew, finally Zeman found a guy for the job. I told him weeks ago this was a two-person task...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Head Engineer" + } + }, + { + "fileOverride": "heartofllevigar-headengineer-2", + "lineInfo": { + "dialogue": "Wait, it's Zenam? Eh, what does it matter? You knew who I was talkin' about. Lemme give you the lowdown real fast.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Head Engineer" + } + }, + { + "fileOverride": "heartofllevigar-headengineer-3", + "lineInfo": { + "dialogue": "About a month ago, there was a big blackout, and the generator here started acting up. Power surges, appliances overloading...heck, some of our lights turned purple!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Head Engineer" + } + }, + { + "fileOverride": "heartofllevigar-headengineer-4", + "lineInfo": { + "dialogue": "My grandfather and his engineers jury-rigged this whole system. A reset should fix all this, but as a security measure, I need to be here to oversee the reset.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Head Engineer" + } + }, + { + "fileOverride": "heartofllevigar-headengineer-5", + "lineInfo": { + "dialogue": "So that's your job- get through the system and find the reset button. These holes'll lead you around the generator rooms. Better get going!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Head Engineer" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "heartofllevigar-headengineer-6", + "lineInfo": { + "dialogue": "Alright, that should do it- Ah, you're back. The system reset just fine, like I said. Everything should be winding down now.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Head Engineer" + } + }, + { + "fileOverride": "heartofllevigar-headengineer-7", + "lineInfo": { + "dialogue": "It's purging the excess energy now- might have a few more power surges and crackles for a while, but it'll go back to normal soon enough.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Head Engineer" + } + }, + { + "fileOverride": "heartofllevigar-headengineer-8", + "lineInfo": { + "dialogue": "Hm? What, there was a bug in the system? ...what, are you asleep or something? Of course there was a bug, we just fixed it!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Head Engineer" + } + }, + { + "fileOverride": "heartofllevigar-headengineer-9", + "lineInfo": { + "dialogue": "Well, anyways, Zebra should have our payment all settled. You go on ahead- I still need to stay down here to make sure everything stays smooth.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Head Engineer" + } + }, + { + "fileOverride": "heartofllevigar-headengineer-10", + "lineInfo": { + "dialogue": "...oh, it's Zenam? D'you really care about getting his name right, or what? Anyways, the exit's through the water cooling system, it hooks up to the sewer exit.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Head Engineer" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "heartofllevigar-headengineer-11", + "lineInfo": { + "dialogue": "I have to stay put, so get through the system and find the reset button for me. These holes are teleporters that'll lead you around the generator rooms.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Head Engineer" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "heartofllevigar-headengineer-12", + "lineInfo": { + "dialogue": "Were you bein' literal when you said there was a bug in the system? I swear I hear something crawling around down here all of the sudden.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Head Engineer" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "heartofllevigar-zenam-7", + "lineInfo": { + "dialogue": "Whew...welcome back. The power is back online- Everything is running at full capacity again. I think the system is just running excess through right now.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Zenam" + } + }, + { + "fileOverride": "heartofllevigar-zenam-8", + "lineInfo": { + "dialogue": "Glad you got here when you did though- some phony came through saying he was the expert. Clearly he was just here to take your contract money...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Zenam" + } + }, + { + "fileOverride": "heartofllevigar-zenam-9", + "lineInfo": { + "dialogue": "Though, I was panicking so much I probably would've believed him... Speaking of which, here's your cut of the pay, and something extra for the trouble.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Zenam" + } + }, + { + "fileOverride": "heartofllevigar-zenam-10", + "lineInfo": { + "dialogue": "Here's to hoping that the system won't run into any more trouble in the future. I don't want to be faced with an impending cataclysm like that again...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Zenam" + } + } + ] + } + } + }, + "Hollow Serenity": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "hollowserenity-katarin-1", + "lineInfo": { + "dialogue": "Eileen, Eileen... That girl never listens to me! Her own mother!" + } + }, + { + "fileOverride": "hollowserenity-katarin-2", + "lineInfo": { + "dialogue": "Every day, I find books sticking out of the bookshelves! And she keeps on coloring random letters in them..." + } + }, + { + "fileOverride": "hollowserenity-katarin-3", + "lineInfo": { + "dialogue": "She told me that those are her favorite books, there's some sort of 'clue' in them for... something." + } + }, + { + "fileOverride": "hollowserenity-katarin-4", + "lineInfo": { + "dialogue": "I can't comprehend her reasons for doing that... Can't she come up with something that's less of a nuisance for the maids?" + } + }, + { + "fileOverride": "hollowserenity-katarin-5", + "lineInfo": { + "dialogue": "Garvan... he worries me more and more by the day. My sweet, beloved Garvan." + } + }, + { + "fileOverride": "hollowserenity-katarin-6", + "lineInfo": { + "dialogue": "I remember, at the beginning... Yorman had hired Garvan out of concern for this 'Decay' plaguing the land. We told him that he must find a cure for the Decay before it subjugated the entire forest." + } + }, + { + "fileOverride": "hollowserenity-katarin-7", + "lineInfo": { + "dialogue": "Over time... Well, I suppose love can corrupt. How else would I have..." + } + }, + { + "fileOverride": "hollowserenity-katarin-8", + "lineInfo": { + "dialogue": "Fallen in love with Garvan and forsook my own marriage under the nose of my husband and my beloved daughter-" + } + }, + { + "fileOverride": "hollowserenity-katarin-9", + "lineInfo": { + "dialogue": "But I digress. Garvan's done great research on this Decay, but... recently, he's changed. Something's wrong with him." + } + }, + { + "fileOverride": "hollowserenity-katarin-10", + "lineInfo": { + "dialogue": "His eyes are glazed and dull. His tone of voice is... disturbing. He's made very little progress on the cure we tasked him with, and... I don't know what to do." + } + }, + { + "fileOverride": "hollowserenity-katarin-11", + "lineInfo": { + "dialogue": "I suppose... I should just leave him be for the time being. Surely me butting into his work would just make him even worse, no?" + } + }, + { + "fileOverride": "hollowserenity-katarin-12", + "lineInfo": { + "dialogue": "Besides, if he ever gets too bad, he lives just east of the manor. I can be there for him if I need to, right?" + } + }, + { + "fileOverride": "hollowserenity-katarin-13", + "lineInfo": { + "dialogue": "Do not trust that man.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "hollowserenity-runo-1", + "lineInfo": { + "dialogue": "Hey.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Runo" + } + }, + { + "fileOverride": "hollowserenity-runo-2", + "lineInfo": { + "dialogue": "Welcome to my home.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Runo" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "hollowserenity-runo-3", + "lineInfo": { + "dialogue": "I'm Runo. I live here.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Runo" + } + }, + { + "fileOverride": "hollowserenity-runo-4", + "lineInfo": { + "dialogue": "Not much else to say.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Runo" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "hollowserenity-runo-5", + "lineInfo": { + "dialogue": "Since I was born.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Runo" + } + }, + { + "fileOverride": "hollowserenity-runo-6", + "lineInfo": { + "dialogue": "Yes, I grew up here.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Runo" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "hollowserenity-runo-7", + "lineInfo": { + "dialogue": "The Forgery apparently has something hidden inside of it.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Runo" + } + }, + { + "fileOverride": "hollowserenity-runo-8", + "lineInfo": { + "dialogue": "The chains have something to do with it.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Runo" + } + }, + { + "fileOverride": "hollowserenity-runo-9", + "lineInfo": { + "dialogue": "I dunno what else to say.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Runo" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "hollowserenity-runo-10", + "lineInfo": { + "dialogue": "...You know what? Neither do you! You've said, like, 5 sentences in the past 3 minutes!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Runo" + } + }, + { + "fileOverride": "hollowserenity-runo-11", + "lineInfo": { + "dialogue": "I just don't like talking, sheesh! My voice gets way more tense if I don't keep my words short. And it hurts.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Runo" + } + }, + { + "fileOverride": "hollowserenity-runo-12", + "lineInfo": { + "dialogue": "What, are you offended? Well, I am, too! You'd be mad if some random human walked into your village and egged you into damaging your vocal chords!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Runo" + } + }, + { + "fileOverride": "hollowserenity-runo-13", + "lineInfo": { + "dialogue": "...You don't have a house?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Runo" + } + }, + { + "fileOverride": "hollowserenity-runo-14", + "lineInfo": { + "dialogue": "...You poor soul. Go buy one. Unless you're one of those guys who owns those flying land bits.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Runo" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "hollowserenity-runo-15", + "lineInfo": { + "dialogue": "What is it?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Runo" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "hollowserenity-runo-16", + "lineInfo": { + "dialogue": "No. Ask the old man.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Runo" + } + }, + { + "fileOverride": "hollowserenity-runo-17", + "lineInfo": { + "dialogue": "He knows most of the things here.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Runo" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "hollowserenity-bip-1", + "lineInfo": { + "dialogue": "Hey, you! Got any money? If you give me 5000 Liquified Emeralds, I'll give you a spot of dust from the underside of my floorboards!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Bip" + } + }, + { + "fileOverride": "hollowserenity-bip-2", + "lineInfo": { + "dialogue": "No? Awww... that sucks.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Bip" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "hollowserenity-bip-3", + "lineInfo": { + "dialogue": "Whatcha need?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bip" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "hollowserenity-bip-4", + "lineInfo": { + "dialogue": "I'm Bip! Yeah, Bip! The best guy to ever grace the entertainment industry!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Bip" + } + }, + { + "fileOverride": "hollowserenity-bip-5", + "lineInfo": { + "dialogue": "Or... I was... Man, I miss my glory days! I used to be a big time man, you know? I was living it up in Cinfras, but now I have to live in this dump!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Bip" + } + }, + { + "fileOverride": "hollowserenity-bip-6", + "lineInfo": { + "dialogue": "Damn this world! I blame them for all of this! Everything has been nothing but trouble after trouble. Now everyone can't see how much of an honest guy I am!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Bip" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "hollowserenity-bip-7", + "lineInfo": { + "dialogue": "B-BE QUIET! I don't like living here, so don't remind me!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Bip" + } + }, + { + "fileOverride": "hollowserenity-bip-8", + "lineInfo": { + "dialogue": "I don't even truly have my own place! I've gotta live with some crony who owns the house I'm staying in right now.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Bip" + } + }, + { + "fileOverride": "hollowserenity-bip-9", + "lineInfo": { + "dialogue": "One day, I'll get out of here, though! I'll be a big time man again, and I'll reclaim my status in society, just you wait!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Bip" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "hollowserenity-bip-10", + "lineInfo": { + "dialogue": "Rumors? Do I look like a gossiper to you??", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Bip" + } + }, + { + "fileOverride": "hollowserenity-bip-11", + "lineInfo": { + "dialogue": "Well, human... I'm an honest entertainer, so don’t worry. Good 'ole Bip will tell you a bit of something!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Bip" + } + }, + { + "fileOverride": "hollowserenity-bip-12", + "lineInfo": { + "dialogue": "So, apparently there's a WITCH... living in LEXDALE! OOOOOO, spooky...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Bip" + } + }, + { + "fileOverride": "hollowserenity-bip-13", + "lineInfo": { + "dialogue": "But the thing is, she's causing... the Decay... dun dun DUUUN!!! Uhh... I don't know, her house is decaying, or something.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Bip" + } + }, + { + "fileOverride": "hollowserenity-bip-14", + "lineInfo": { + "dialogue": "So now, she's gonna die. The end! Didja like that story, human? Every relation to in-real life people was 100% intentional, 'cuz this is actually happening.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Bip" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "hollowserenity-bip-15", + "lineInfo": { + "dialogue": "Oh yeah! That's the name of the guy who FIRED ME! DAMMIT!!!-", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Bip" + } + }, + { + "fileOverride": "hollowserenity-bip-16", + "lineInfo": { + "dialogue": "...Oh, wait, no. Sorry human, I was thinking about Gavin. I don't know who this Garvan guy is! Ask someone else; I can't entertain you with that knowledge.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Bip" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "hollowserenity-villager-1", + "lineInfo": { + "dialogue": "S-Sheesh! You scared me, human! Don't you know that you shouldn't walk into people's houses out of nowhere?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Villager" + } + }, + { + "fileOverride": "hollowserenity-villager-2", + "lineInfo": { + "dialogue": "You know there are creepy guys out here who rob people like that? You should be more careful!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Villager" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "hollowserenity-villager-3", + "lineInfo": { + "dialogue": "How can I help you?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Villager" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "hollowserenity-villager-4", + "lineInfo": { + "dialogue": "I'm nobody. No, I'm serious, I literally don't have a name. Parents just didn't bother to name me.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Villager" + } + }, + { + "fileOverride": "hollowserenity-villager-5", + "lineInfo": { + "dialogue": "Apparently that's considered sacrilegious around here, so I was taken away from them and I now work for Pastor Arwes.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Villager" + } + }, + { + "fileOverride": "hollowserenity-villager-6", + "lineInfo": { + "dialogue": "What do the others call me? Uhh... Big-nosed girl. Yeah, I know, a bit on the nose-", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Villager" + } + }, + { + "fileOverride": "hollowserenity-villager-7", + "lineInfo": { + "dialogue": "...That sailed right over my head. But it's true, though! I have the biggest nose in the village.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Villager" + } + }, + { + "fileOverride": "hollowserenity-villager-8", + "lineInfo": { + "dialogue": "What should you call me? Hmm... I don't know... maybe... Eua?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Villager" + } + }, + { + "fileOverride": "hollowserenity-villager-9", + "lineInfo": { + "dialogue": "I know it won't matter anymore, but sure. Call me Eua. That sounds like a nice name.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Villager" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "hollowserenity-villager-10", + "lineInfo": { + "dialogue": "This one's not necessarily a rumor, but... have you ever heard of someone that they call the Wanderer?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Villager" + } + }, + { + "fileOverride": "hollowserenity-villager-11", + "lineInfo": { + "dialogue": "He's a weird guy who just... wanders. He's completely despondent, and doesn't really interact with anyone. Even a lot of the dangerous creatures around here just tend to ignore his presence. He's almost like... a ghost.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Villager" + } + }, + { + "fileOverride": "hollowserenity-villager-12", + "lineInfo": { + "dialogue": "You've probably seen him before in the forest. Hooded guy, doesn't talk at all? That's who they call the Wanderer.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Villager" + } + }, + { + "fileOverride": "hollowserenity-villager-13", + "lineInfo": { + "dialogue": "Well, he doesn't really hurt anyone, so I don't really worry about him too much, but still... it's spooky...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Villager" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "hollowserenity-villager-14", + "lineInfo": { + "dialogue": "Wait, THAT manor? Nah. No one goes near there anymore, not since it was abandoned. What, do you not know what happened there?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Villager" + } + }, + { + "fileOverride": "hollowserenity-villager-15", + "lineInfo": { + "dialogue": "It used to be owned by a family of nobles called the Faltachs. Big, important people in the forest, very rich.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Villager" + } + }, + { + "fileOverride": "hollowserenity-villager-16", + "lineInfo": { + "dialogue": "Well... A lot of stuff happened with them. The mistress of the family supposedly went insane and killed her husband at some point, or something like that...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Villager" + } + }, + { + "fileOverride": "hollowserenity-villager-17", + "lineInfo": { + "dialogue": "There's a lot to unpack there, human. And you honestly shouldn't unpack it.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Villager" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "hollowserenity-villager-18", + "lineInfo": { + "dialogue": "Hmm... No, can't say I have. Whoever this person is, they certainly don't live here.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Villager" + } + }, + { + "fileOverride": "hollowserenity-villager-19", + "lineInfo": { + "dialogue": "And nah, it's not me, either, even if I don't have a real name. I wouldn't even be here if my parents had named me something manly like Garvan anyways.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Villager" + } + }, + { + "fileOverride": "hollowserenity-villager-20", + "lineInfo": { + "dialogue": "Ask around, though! I'm sure others probably know him.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Villager" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "hollowserenity-ann-1", + "lineInfo": { + "dialogue": "Hello, soldier! Welcome to this... hick village. I presume the neighbor's kid has been stealing apples again, hmm?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ann" + } + }, + { + "fileOverride": "hollowserenity-qunit-1", + "lineInfo": { + "dialogue": "Oh, Ann... Your voice is so delicate, so soothing that— Ah, soldier! Are you here for something... or someone?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Qunit" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "hollowserenity-annqunit-1", + "lineInfo": { + "dialogue": "What do you need?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ann & Qunit" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "hollowserenity-ann-2", + "lineInfo": { + "dialogue": "My name is Ann!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ann" + } + }, + { + "fileOverride": "hollowserenity-qunit-2", + "lineInfo": { + "dialogue": "I'm Qunit.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Qunit" + } + }, + { + "fileOverride": "hollowserenity-ann-3", + "lineInfo": { + "dialogue": "We're the best couple in the entire forest! Nobody can match our love!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ann" + } + }, + { + "fileOverride": "hollowserenity-qunit-3", + "lineInfo": { + "dialogue": "Do you have someone special to you like we are, human? A handsome little man? Or a pretty little woman? Or... neither? We won't judge.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Qunit" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "hollowserenity-ann-4", + "lineInfo": { + "dialogue": "Absolutely we're married! Everyone finds it very hard to believe, but I don't blame them! It's a tough world... we... live in, yes!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ann" + } + }, + { + "fileOverride": "hollowserenity-qunit-4", + "lineInfo": { + "dialogue": "Four years it has been, ever since we kissed under the starry sky amidst the blossoming fields near Aldorei. I can still see it in my dreams...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Qunit" + } + }, + { + "fileOverride": "hollowserenity-ann-5", + "lineInfo": { + "dialogue": "Yeah, what Qunit said! We've been married for 4 years! And soon that number is gonna go up to infinity!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ann" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "hollowserenity-qunit-5", + "lineInfo": { + "dialogue": "Be quiet.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Qunit" + } + }, + { + "fileOverride": "hollowserenity-ann-6", + "lineInfo": { + "dialogue": "Oh! Sorry about Qunit, he doesn't like thinking about our... circumstances.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Ann" + } + }, + { + "fileOverride": "hollowserenity-ann-7", + "lineInfo": { + "dialogue": "We're in heavy debt to the government. We can't afford to live anywhere else.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ann" + } + }, + { + "fileOverride": "hollowserenity-ann-8", + "lineInfo": { + "dialogue": "This forest is also safe from their prying eyes, which has inarguably caused certain... opinions to fester here...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ann" + } + }, + { + "fileOverride": "hollowserenity-ann-9", + "lineInfo": { + "dialogue": "Yeah, yeah! It doesn't matter why we're here, soldier! Haha! We're here, and we love each other! That's all that matters. Yes.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Ann" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "hollowserenity-qunit-6", + "lineInfo": { + "dialogue": "Yes, actually. There's something dark to the north. There are parasites in it. It's dangerous.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Qunit" + } + }, + { + "fileOverride": "hollowserenity-ann-10", + "lineInfo": { + "dialogue": "O-oh! Don't worry about what Qunit’s saying. He's been having this recurring dream of a big worm creature laying dark eggs inside of a weird cave. He won't let it go, either!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ann" + } + }, + { + "fileOverride": "hollowserenity-qunit-7", + "lineInfo": { + "dialogue": "It's not a fantasy, Ann. I've told you this.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Qunit" + } + }, + { + "fileOverride": "hollowserenity-ann-11", + "lineInfo": { + "dialogue": "Shh, honey... we'll talk about this later, not in front of the soldier... Who probably has much more important things to do, hah!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ann" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "hollowserenity-ann-12", + "lineInfo": { + "dialogue": "Nope.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ann" + } + }, + { + "fileOverride": "hollowserenity-qunit-8", + "lineInfo": { + "dialogue": "No.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Qunit" + } + }, + { + "fileOverride": "hollowserenity-ann-13", + "lineInfo": { + "dialogue": "See? We're both on the same wavelength! Neither of us have met this person! We're... so in love, darling...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ann" + } + }, + { + "fileOverride": "hollowserenity-qunit-9", + "lineInfo": { + "dialogue": "Yes...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Qunit" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "hollowserenity-vera-1", + "lineInfo": { + "dialogue": "Huh, weird. Whatcha doing all the way out here, human? We don't see a lot of your kind often.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Vera" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "hollowserenity-vera-2", + "lineInfo": { + "dialogue": "Got anything you wanna say?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Vera" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "hollowserenity-vera-3", + "lineInfo": { + "dialogue": "My name's Vera. I'm a farmer, but you probably already guessed that. That's all this damn village is good for anyways.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Vera" + } + }, + { + "fileOverride": "hollowserenity-vera-4", + "lineInfo": { + "dialogue": "I also deal with getting supplies from other towns! Pretty cool, huh?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Vera" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "hollowserenity-vera-5", + "lineInfo": { + "dialogue": "Uhh... all my life, actually! Too damn poor to go anywhere else, so I've just hunkered down here and decided to stick it out until I'm dead.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Vera" + } + }, + { + "fileOverride": "hollowserenity-vera-6", + "lineInfo": { + "dialogue": "It's bad, living out here, but once you get used to it some of the edge is taken off. This village is all I've really known, and I owe it to everyone here to stick around, you know what I mean?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Vera" + } + }, + { + "fileOverride": "hollowserenity-vera-7", + "lineInfo": { + "dialogue": "Still... adventuring sounds like fun, sometimes... The furthest I've ever gone from here is halfway through Cinfras County.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Vera" + } + }, + { + "fileOverride": "hollowserenity-vera-8", + "lineInfo": { + "dialogue": " I bet you have some pretty good stories to tell from adventuring, ain't that right human?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Vera" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "hollowserenity-vera-9", + "lineInfo": { + "dialogue": "You know the massive prison near Gelibord? Yeah, the Lexdale Penitentiary.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Vera" + } + }, + { + "fileOverride": "hollowserenity-vera-10", + "lineInfo": { + "dialogue": "So, apparently... The place is actually really corrupt. They arrest innocent people every other day, and they never come back out.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Vera" + } + }, + { + "fileOverride": "hollowserenity-vera-11", + "lineInfo": { + "dialogue": "Gavel's government hasn't done anything about it, but everyone in the forest knows damn well something shady is going on there. I'd watch myself around that place if I were you!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Vera" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "hollowserenity-vera-12", + "lineInfo": { + "dialogue": "...Hold on, WHAT?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Vera" + } + }, + { + "fileOverride": "hollowserenity-vera-13", + "lineInfo": { + "dialogue": "Get to talking, human! You can't just leave off like that! Tell me, are the rumors about that place true?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Vera" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "hollowserenity-vera-14", + "lineInfo": { + "dialogue": "Are the rumors true??", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Vera" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "hollowserenity-vera-15", + "lineInfo": { + "dialogue": "...You're serious? Y-you are?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Vera" + } + }, + { + "fileOverride": "hollowserenity-vera-16", + "lineInfo": { + "dialogue": "Oh my word... and you saw it with your own eyes?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Vera" + } + }, + { + "fileOverride": "hollowserenity-vera-17", + "lineInfo": { + "dialogue": "Human... Thanks for letting me know. You gotta tell more people about this, though! You could probably publish a book about it once you spread the word! You'd be rich!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Vera" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "hollowserenity-vera-18", + "lineInfo": { + "dialogue": "...Well, I'm not gonna believe you if you're saying it all forced like that, you know.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Vera" + } + }, + { + "fileOverride": "hollowserenity-vera-19", + "lineInfo": { + "dialogue": "I won't push it, though; it was probably just too awful to talk about, right? You don't have to go into detail if you don't wanna.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Vera" + } + }, + { + "fileOverride": "hollowserenity-vera-20", + "lineInfo": { + "dialogue": "Just stay well away from that place, and make sure nobody else goes near there, alright?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Vera" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "hollowserenity-vera-21", + "lineInfo": { + "dialogue": "Uhhh... no. That doesn't ring a single bell.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Vera" + } + }, + { + "fileOverride": "hollowserenity-vera-22", + "lineInfo": { + "dialogue": "You could probably ask some other people, though! I'm only the youngest guy in the village, so the older people here would probably know who this Garvan guy is!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Vera" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "hollowserenity-aunoa-1", + "lineInfo": { + "dialogue": "An outsider? Here? We don't get many of you people often...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aunoa" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "hollowserenity-aunoa-2", + "lineInfo": { + "dialogue": "What do you want?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aunoa" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "hollowserenity-aunoa-3", + "lineInfo": { + "dialogue": "The name's Aunoa. I'm a farmer. Not much else to say.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Aunoa" + } + }, + { + "fileOverride": "hollowserenity-aunoa-4", + "lineInfo": { + "dialogue": "I've got a kid, but he doesn't live here. His mother took him away to live in Cinfras a while back. Don't have any other family.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Aunoa" + } + }, + { + "fileOverride": "hollowserenity-aunoa-5", + "lineInfo": { + "dialogue": "This village is the only family I have.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Aunoa" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "hollowserenity-aunoa-6", + "lineInfo": { + "dialogue": "It's my home. The people I know and trust live here. It's a dump, but it's still my damn home.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Aunoa" + } + }, + { + "fileOverride": "hollowserenity-aunoa-7", + "lineInfo": { + "dialogue": "Wish I could leave, though. This forest is awful. The crops are in horrible condition. Government doesn't give a damn about us either.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Aunoa" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "hollowserenity-aunoa-8", + "lineInfo": { + "dialogue": "Apparently the House of Talor has a massive crypt somewhere underneath its floors. Rich people used to be buried there.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Aunoa" + } + }, + { + "fileOverride": "hollowserenity-aunoa-9", + "lineInfo": { + "dialogue": "There's probably some rare artifacts down there. Go take a look if you want, but everyone here has tried and failed to find it.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Aunoa" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "hollowserenity-aunoa-10", + "lineInfo": { + "dialogue": "Yes, I do. But I probably can't stop you. Humans like you have a thing for invading privacy whenever you feel like it.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Aunoa" + } + }, + { + "fileOverride": "hollowserenity-aunoa-11", + "lineInfo": { + "dialogue": "And I'm too weak to stop you. You've got all of that strong gear on you, and I barely know a lick of magic. We're not on equal footing.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Aunoa" + } + }, + { + "fileOverride": "hollowserenity-aunoa-12", + "lineInfo": { + "dialogue": "So... don't go in, but I won't stop you if you do anyways.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Aunoa" + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "hollowserenity-aunoa-13", + "lineInfo": { + "dialogue": "No clue who that is. If someone like that lived here, then they're dead.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Aunoa" + } + }, + { + "fileOverride": "hollowserenity-aunoa-14", + "lineInfo": { + "dialogue": "Ask someone else about him if you want; I don't really care about this Garvan guy you're looking for.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Aunoa" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "hollowserenity-oldman-1", + "lineInfo": { + "dialogue": "You're new... we don't see a lot of youngsters around these days... especially humans.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Old Man" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "hollowserenity-oldman-2", + "lineInfo": { + "dialogue": "How can I help you?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Old Man" + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "hollowserenity-oldman-3", + "lineInfo": { + "dialogue": "Very on the nose, whippersnapper. My name is Lokno. I'm what's left of this town during its olden days...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-4", + "lineInfo": { + "dialogue": "Mhm. This village... has definitely seen better days. This Decay stuff has ruined us, just take a look around! Nothing here has been suitable for living for over 50 years...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Old Man" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "hollowserenity-oldman-5", + "lineInfo": { + "dialogue": "Hah... well, right now, it's a crowd of shacks, but before the Decay came along, we used to do great...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-6", + "lineInfo": { + "dialogue": "We always had enough food to go around, we could sell off what we didn't need to eat, and everything was thriving.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-7", + "lineInfo": { + "dialogue": "My great-grandmother, Aki, always told me stories about this place. Our little village. I wish I could have been around to live in it then.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-8", + "lineInfo": { + "dialogue": "She was always convinced though... that if the rightful rulers of Gavel returned, all of these issues could easily be squashed.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-9", + "lineInfo": { + "dialogue": "To be honest... I believe the same. The government has abandoned us. So... why not bring back the old one?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-10", + "lineInfo": { + "dialogue": "I may not be the most religious villager around here, but it would feel more right to be ruled by someone who has the heavens' approval.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Old Man" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "hollowserenity-oldman-11", + "lineInfo": { + "dialogue": "Nope. I don't deal with that kind of stuff, bahaha! Sorry human; you're out of luck.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Old Man" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "hollowserenity-oldman-12", + "lineInfo": { + "dialogue": "G... Garvan... yes. I know that name.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-13", + "lineInfo": { + "dialogue": "He isn't here, though. I don't know his whereabouts, what he's doing, or if he's even alive. He's... just nonexistent.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-14", + "lineInfo": { + "dialogue": "I don't know why you're chasing after him, but... if you want a place to start, go look at the abandoned laboratory on top of that hill, just to the west of here.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-15", + "lineInfo": { + "dialogue": "Fair warning, though... My great-grandmother is the only reason I know about him, and even then... she was always put off by him, and told me to stay away from him. I'd be wary, if I were you.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-16", + "lineInfo": { + "dialogue": "Or don't. He sounds like a nice man. You're strong, as well. I'm sure you'll be fine.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Old Man" + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-1", + "lineInfo": { + "dialogue": "I've been hired by Yorman and Katarin Faltach to study and hopefully cure this ''Decay'' that's appeared recently. I'm quite excited to get to the bottom of this." + } + }, + { + "fileOverride": "hollowserenity-garvan-2", + "lineInfo": { + "dialogue": "It looks like I'm finally settled in. The Faltach Family has been quite kind with giving me this laboratory to study in." + } + }, + { + "fileOverride": "hollowserenity-garvan-3", + "lineInfo": { + "dialogue": "Where to start... where to start..." + } + }, + { + "fileOverride": "hollowserenity-garvan-4", + "lineInfo": { + "dialogue": "This Decay is interesting, to say the least. I've never seen anything like this before in all my years." + } + }, + { + "fileOverride": "hollowserenity-garvan-5", + "lineInfo": { + "dialogue": "Simple plant life appears to wither even when given proper nutrients and conditions to grow. What little magic they usually contain appears to be sapped as well..." + } + }, + { + "fileOverride": "hollowserenity-garvan-6", + "lineInfo": { + "dialogue": "It's odd. the Decay doesn't violently alter whatever it touches, like a pestilence would... It appears to be removing something in a coordinated manner. Almost as if a living creature was doing this." + } + }, + { + "fileOverride": "hollowserenity-garvan-7", + "lineInfo": { + "dialogue": "But what organism could be removing magic from the plant?" + } + }, + { + "fileOverride": "hollowserenity-garvan-8", + "lineInfo": { + "dialogue": "I've been trying to expose this piece of Kanderstone to different types of magical energy to see if I could reverse the effects of this Decay upon it." + } + }, + { + "fileOverride": "hollowserenity-garvan-9", + "lineInfo": { + "dialogue": "If I can just find whatever energy the Decay is sapping from the forests, then in all probability... this Kanderstone will revert to Cobalt, the mineral that was found in this forest before it began its decline." + } + }, + { + "fileOverride": "hollowserenity-garvan-10", + "lineInfo": { + "dialogue": "...What could it be, though? I've tried every sort of magic I can think of. Nothing is reversing the effects of the Decay." + } + }, + { + "fileOverride": "hollowserenity-garvan-11", + "lineInfo": { + "dialogue": "I'm certain of it. The Decay is caused by the removal of magical energy. I just can't pinpoint what exactly, though..." + } + }, + { + "fileOverride": "hollowserenity-garvan-12", + "lineInfo": { + "dialogue": "Eheheheheheeh... I've found it. I've found it I've found it I've found it I've found it I've found it I've found it I've found it" + } + }, + { + "fileOverride": "hollowserenity-garvan-13", + "lineInfo": { + "dialogue": "The source of the Decay." + } + }, + { + "fileOverride": "hollowserenity-garvan-14", + "lineInfo": { + "dialogue": "Throughout the forest, especially in caves, one can find strange, parasitic creatures that specialize in living underneath the earth." + } + }, + { + "fileOverride": "hollowserenity-garvan-15", + "lineInfo": { + "dialogue": "When I touched one of these creatures after capturing it... It was as if my skin began to shrivel. It... siphoned energy from my hand." + } + }, + { + "fileOverride": "hollowserenity-garvan-16", + "lineInfo": { + "dialogue": "I gave the thing access to a few fresh plants from the Light Forest, and watched with awe. Within a few minutes, it rendered the plant into a state identical to that of Decay-afflicted life." + } + }, + { + "fileOverride": "hollowserenity-garvan-17", + "lineInfo": { + "dialogue": "I was right. I was right I was right I was right I was right I was right." + } + }, + { + "fileOverride": "hollowserenity-garvan-18", + "lineInfo": { + "dialogue": "These parasites are what are causing the Decay. This is no otherworldly force or pestilence, no. This is an assault created solely by magical creatures. I... should thank my new friends for this discovery." + } + }, + { + "fileOverride": "hollowserenity-garvan-19", + "lineInfo": { + "dialogue": "I've decided to try and talk a little more with the villagers just down the hill. They're quite interesting..." + } + }, + { + "fileOverride": "hollowserenity-garvan-20", + "lineInfo": { + "dialogue": "It's odd, though... Most of them keep glaring at me every time I return from my business in Cinfras. This one farmer kept asking me what my thoughts on the Gerten War and the government's involvement with it..." + } + }, + { + "fileOverride": "hollowserenity-garvan-21", + "lineInfo": { + "dialogue": "I just explained that I was a scientist researching the effects of the Decay. I might have lied a little and said I was almost about to find a cure. One of them seemed interested in that..." + } + }, + { + "fileOverride": "hollowserenity-garvan-22", + "lineInfo": { + "dialogue": "I went to the secret study inside of the Faltach's basement to look at some texts about the war and the government out of curiosity. I believe those people were just freaks. I should stay away from them-" + } + }, + { + "fileOverride": "hollowserenity-garvan-23", + "lineInfo": { + "dialogue": "Huh?" + } + }, + { + "fileOverride": "hollowserenity-garvan-24", + "lineInfo": { + "dialogue": "Huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh huh?" + } + }, + { + "fileOverride": "hollowserenity-garvan-25", + "lineInfo": { + "dialogue": "What lies. Lies lies lies lies lies lies lies lies lies lies. I don't really mind those people." + } + }, + { + "fileOverride": "hollowserenity-garvan-26", + "lineInfo": { + "dialogue": "I quite like them. Yes. Yes yes yes yes yes. They're trustworthy. I should have believed them from the start." + } + }, + { + "fileOverride": "hollowserenity-garvan-27", + "lineInfo": { + "dialogue": "They'll help me." + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "hollowserenity-yorman-1", + "lineInfo": { + "dialogue": "...What the hell is my wife THINKING?? Defending Garvan, as much of a lunatic as he is??" + } + }, + { + "fileOverride": "hollowserenity-yorman-2", + "lineInfo": { + "dialogue": "The man's made so little progress in the past few years. At this point, it's just a waste of our wealth..." + } + }, + { + "fileOverride": "hollowserenity-yorman-3", + "lineInfo": { + "dialogue": "Why is she defending HIM?? She's always been like that, so hopeful and defensive of the scientist... what could she POSSIBLY see in him?" + } + }, + { + "fileOverride": "hollowserenity-yorman-4", + "lineInfo": { + "dialogue": "Unless... No. That is impossible. She is not... like that. Damn it, I might be in the need for some well-deserved sleep..." + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-28", + "lineInfo": { + "dialogue": "Hmmm... Odd. There's a lot to take in here related to Gavel's deceased monarchy. It's quite interesting, though there is nothing about the Gerten War." + } + }, + { + "fileOverride": "hollowserenity-garvan-29", + "lineInfo": { + "dialogue": "There are a few philosophical books that dive deep into the divide that the Cinfrasian Uprising has caused within the province. Very... strong opinions indeed." + } + }, + { + "fileOverride": "hollowserenity-garvan-30", + "lineInfo": { + "dialogue": "The Decay has certainly drowned out that conflict. I myself have never heard of any of this! Though again, I never was a lover of history in the first place." + } + }, + { + "fileOverride": "hollowserenity-garvan-31", + "lineInfo": { + "dialogue": "Huh. One of the more recent books suggests something has resurfaced in Kander. Villagers are ordered to keep an eye on their neighbors..." + } + }, + { + "fileOverride": "hollowserenity-garvan-32", + "lineInfo": { + "dialogue": "I should ask Katarin about this. She'd likely know more than I about any remaining royal politics, no?" + } + }, + { + "fileOverride": "hollowserenity-garvan-33", + "lineInfo": { + "dialogue": "''You died at 6 o-clock that night. Only 4 people came to your funeral." + } + }, + { + "fileOverride": "hollowserenity-garvan-34", + "lineInfo": { + "dialogue": "3 of them couldn't have cared less. The other person wept for 8 hours afterwards.''" + } + }, + { + "fileOverride": "hollowserenity-garvan-35", + "lineInfo": { + "dialogue": "It's more clear. Day by day. This pestilence. Clear. Clear." + } + }, + { + "fileOverride": "hollowserenity-garvan-36", + "lineInfo": { + "dialogue": "The creatures that cause this... and their wellspring... are sent by something beyond my comprehension." + } + }, + { + "fileOverride": "hollowserenity-garvan-37", + "lineInfo": { + "dialogue": "Yes. Yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes yes. The Decay has been... brought here by divine intervention." + } + }, + { + "fileOverride": "hollowserenity-garvan-38", + "lineInfo": { + "dialogue": "Then... I will use the divine's sentries to cure this. Just as they suggested." + } + }, + { + "fileOverride": "hollowserenity-garvan-39", + "lineInfo": { + "dialogue": "I will begin at my research outpost in that stone city of Lexdale. I'll bring her there." + } + }, + { + "fileOverride": "hollowserenity-garvan-40", + "lineInfo": { + "dialogue": "And all of this will finally end. By a cure." + } + }, + { + "fileOverride": "hollowserenity-yorman-5", + "lineInfo": { + "dialogue": "Dammit, Katarin! I'm not dealing with that loonie anymore! It's been years since I hired that scientist, and he STILL has nothing! If he doesn't find a cure soon, then I'll just get rid of him!", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Yorman" + } + }, + { + "fileOverride": "hollowserenity-katarin-14", + "lineInfo": { + "dialogue": "Y-Yorman, you can't be serious! What we're asking him to do is heavily unresearched, firing him for taking time on that wouldn't be a good idea!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-yorman-6", + "lineInfo": { + "dialogue": "Woman, have you SEEN the state that cretin is in?? Even if it does take long, he's in no damn shape to deal with it! Now stop arguing with me, and help me get rid of him--", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Yorman" + } + }, + { + "fileOverride": "hollowserenity-katarin-15", + "lineInfo": { + "dialogue": "NO!", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-16", + "lineInfo": { + "dialogue": "This is too far, Yorman! Garvan MUST stay! You will do this if you still love me!", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-yorman-7", + "lineInfo": { + "dialogue": "...Why do you even care so much?? Some lunatic scientist like him isn't good for anybody! We both know that we'd save more time and money by letting him run off!", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Yorman" + } + }, + { + "fileOverride": "hollowserenity-katarin-17", + "lineInfo": { + "dialogue": "I still have faith in him, unlike you! I'll talk to him to see what's going on if I must, but I will NOT tolerate you throwing him out simply because you're too eager for results!", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-yorman-8", + "lineInfo": { + "dialogue": "Fine. But know this; I will see to it MYSELF that his head is taken off of his shoulders if that man continues to waste my time, understand??", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Yorman" + } + }, + { + "fileOverride": "hollowserenity-yorman-9", + "lineInfo": { + "dialogue": "...I'm leaving to take care of some matters in Gelibord. Ask one of the maids to make sure that Eileen goes to bed. I'll be back before midnight.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Yorman" + } + }, + { + "fileOverride": "hollowserenity-katarin-18", + "lineInfo": { + "dialogue": "...That... was close... I can't have him getting between us anymore.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Katarin" + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-41", + "lineInfo": { + "dialogue": "I-I am here, Katarin. You wished to s-speak with me...?", + "line": { + "current": 1, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-katarin-19", + "lineInfo": { + "dialogue": "Yes, love. Yorman is becoming suspicious of you. He thinks that you're not making any progress on the cure and wasting his time. Any more of this, and he may attempt to get rid of you.", + "line": { + "current": 2, + "max": 17 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-20", + "lineInfo": { + "dialogue": "I just wanted to check on you, love. Are... you doing alright? Is your work coming along well?", + "line": { + "current": 3, + "max": 17 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-garvan-42", + "lineInfo": { + "dialogue": "I... I am...", + "line": { + "current": 4, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-43", + "lineInfo": { + "dialogue": "PLEASE HELP ME", + "line": { + "current": 5, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-44", + "lineInfo": { + "dialogue": "F-Fine. I am fine. I appreciate the concern, but... It truly is u-unwarranted. I'm q-quite close to finding a cure to this disease, y-yes.", + "line": { + "current": 6, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-katarin-21", + "lineInfo": { + "dialogue": "Ah! That is good to hear. Now then... How are things? We haven't had many chances to catch up recently.", + "line": { + "current": 7, + "max": 17 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-garvan-45", + "lineInfo": { + "dialogue": "...Wonderful. I've met... many peers. Recently. They give me the strength I need to advance my progress. Now... how is our daughter, Eileen?", + "line": { + "current": 8, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-katarin-22", + "lineInfo": { + "dialogue": "She's doing great. She takes a lot after you, actually. Intelligent, beautiful, an inquisitive mind. I just hope this Decay can be dealt with and we don't need to live in fear any longer.", + "line": { + "current": 9, + "max": 17 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-garvan-46", + "lineInfo": { + "dialogue": "Wonderful. And... is our eternal bond safe? The gemstone? Has... Yorman found about it?", + "line": { + "current": 10, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-katarin-23", + "lineInfo": { + "dialogue": "Yes, it has stayed hidden. As long as it's kept intact, our souls will stay bound to it. You just need to take care of your little project and we'll ride into the sunset, just like you said, mhm?", + "line": { + "current": 11, + "max": 17 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-garvan-47", + "lineInfo": { + "dialogue": "...And what about our daughter?", + "line": { + "current": 12, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-katarin-24", + "lineInfo": { + "dialogue": "We... I will not risk her life for our love. She has a future in Cinfras, Garvan! She isn't a part of this and I don't think she–", + "line": { + "current": 13, + "max": 17 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-garvan-48", + "lineInfo": { + "dialogue": "Eileen... She is a shining star in this world. Her noble blood and natural talent makes her something truly special.", + "line": { + "current": 14, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-49", + "lineInfo": { + "dialogue": "Do you realize, Katarin? Our daughter is a gift from the heavens! Once she has matured, she will accomplish things that Gavel has never seen! Bring back the holy and royal will that was los-", + "line": { + "current": 15, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-50", + "lineInfo": { + "dialogue": "...Forgive me, I-I'm rambling once more. I... must leave now, research calls. Goodbye, my love. Great things will happen, sooner or later.", + "line": { + "current": 16, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-katarin-25", + "lineInfo": { + "dialogue": "I truly hope so...", + "line": { + "current": 17, + "max": 17 + }, + "npc": "Katarin" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-51", + "lineInfo": { + "dialogue": "Ah... N-now you're finally here. I... need you, my darling. We– no... I can cure this Decay with you.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-eileen-1", + "lineInfo": { + "dialogue": "W-What do you mean...? I-I don't like this... I-I w-wanna go home. It's getting late and mother–", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Eileen" + } + }, + { + "fileOverride": "hollowserenity-garvan-52", + "lineInfo": { + "dialogue": "Ssshhh... This will only take a moment.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-eileen-2", + "lineInfo": { + "dialogue": "W-What is that thing?? M-Mister Garvan, I-I don't understand...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Eileen" + } + }, + { + "fileOverride": "hollowserenity-garvan-53", + "lineInfo": { + "dialogue": "Hush, my daughter. I-I'm doing this for your s-sake... You'll t-thank me later, once it... g-grows acclimated to you.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Garvan" + } + } + ] + }, + "56": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-54", + "lineInfo": { + "dialogue": "Now then... Hold still.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Garvan" + } + } + ] + }, + "57": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-55", + "lineInfo": { + "dialogue": "Hello, my love. I-I-It's... been a while.", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-katarin-26", + "lineInfo": { + "dialogue": "You... G-Garvan... Why are you here? And what's happened to Eileen? She has been sick for days!", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-garvan-56", + "lineInfo": { + "dialogue": "Mmmm... I... Ha-a-have a bit of a... how should I phrase this... a confession to make.", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-57", + "lineInfo": { + "dialogue": "W-Well... I-I've done... I've... done Eileen a great service... she will live forever, just as we do. Thanks to what I have done.", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-katarin-27", + "lineInfo": { + "dialogue": "Y-you... Bound her soul?? Garvan no, I told you she wasn't part of this!! WHY??", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-garvan-58", + "lineInfo": { + "dialogue": "No, no no no no. I've done much b-b-better. She has something now. In her brain... Don't worry about the s-sorry state she's in now. The parasite will need time to acclimate to her flesh.", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-59", + "lineInfo": { + "dialogue": "I-I realized... a cure. My work is done, love... Eileen will be cured. The Decay can be s-stopped. It's wonderful-", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-katarin-28", + "lineInfo": { + "dialogue": "WHAT DID YOU DO TO MY DAUGHTER?? WHAT IS WRONG WITH YOU??", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-garvan-60", + "lineInfo": { + "dialogue": "Aaaahhhmmmm... True... I might have stepped out of line. But it's for the best.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-katarin-29", + "lineInfo": { + "dialogue": "OUT OF LINE?? This is too far, Garvan! What even happened to you?? You've been acting like this for so, so long! I-I can't take it anymore!", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-30", + "lineInfo": { + "dialogue": "You've changed, Garvan! I-I can't even recognize you anymore!! I'm... I'm DONE! GET OUT! STAY AWAY FROM MY FAMILY!", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Katarin" + } + } + ] + }, + "58": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-61", + "lineInfo": { + "dialogue": "You again... W-What do you want from me this time...? You've... already ruined me.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-mysteriousleader-1", + "lineInfo": { + "dialogue": "It doesn't matter. You've accomplished what we planned for, and that is perfect. The girl will grow into a suitable leader... Now then, we have some questions for you.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Mysterious Leader" + } + }, + { + "fileOverride": "hollowserenity-mysteriousleader-2", + "lineInfo": { + "dialogue": "Tell me Garvan... Where is the heir?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Mysterious Leader" + } + }, + { + "fileOverride": "hollowserenity-garvan-62", + "lineInfo": { + "dialogue": "I... will not tell you. I have lost Eileen and my love thanks to you. If I am to lose her... then you shall lose her as well.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-mysteriousleader-3", + "lineInfo": { + "dialogue": "...Lunatic. You; take him in. Keep him alive.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Mysterious Leader" + } + }, + { + "fileOverride": "hollowserenity-garvan-63", + "lineInfo": { + "dialogue": "NO, DON'T TOUCH ME!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-mysteriousleader-4", + "lineInfo": { + "dialogue": "Garvan. Garvan, Garvan. I think there's a misunderstanding here. You are in no place to defy us.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Mysterious Leader" + } + }, + { + "fileOverride": "hollowserenity-mysteriousleader-5", + "lineInfo": { + "dialogue": "Now then... You will tell us where the rightful heir to the Gavellian throne is... No matter the cost.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Mysterious Leader" + } + } + ] + }, + "59": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-64", + "lineInfo": { + "dialogue": "It seems you've arrived. F-Forgive me... I-I'm not quite used to talking anymore. It's been quite a while.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "hollowserenity-garvan-65", + "lineInfo": { + "dialogue": "...Nevermind. I d-don't want your forgiveness in particular. In fact, w-why do you even care? The forest has died, generations have lived on... and yet... You just had to tear the scar open, didn't you?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "hollowserenity-garvan-66", + "lineInfo": { + "dialogue": "My sins... you did not need to see them... all the things that I've done wrong. H-How I destroyed the bonds tying me and my love together.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "hollowserenity-garvan-67", + "lineInfo": { + "dialogue": "...Y-Yes... I mean her. Katarin. She's watching us as we speak, no? A-and with that... I suppose it's obvious what lies under this veil.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "hollowserenity-garvan-68", + "lineInfo": { + "dialogue": "Greetings... I-I'm s-sure you're well acquainted with me, by now. I-It was me all along. Quite the- well, it was a predictable twist, I suppose...", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-69", + "lineInfo": { + "dialogue": "...B-But... I take it you don't have the full story. So... so so so so so so... Let me explain to you, human... The bitter end to our shared tale.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Garvan" + } + } + ] + }, + "60": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-70", + "lineInfo": { + "dialogue": "AAAAAAAGGGHHH!!! F-FINE! I-I’ll tell you... I-I’ll tell y-you where Eileen is...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garvan" + } + } + ] + }, + "61": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-71", + "lineInfo": { + "dialogue": "S-She... is with her mother. At the Faltach Manor. T-That is all. Just s-stop...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-mysteriousleader-6", + "lineInfo": { + "dialogue": "... Good. This had better not be a lie. You; tell the others that we are heading there now. Kill everyone at the manor and any witnesses; leave the heir alive.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Mysterious Leader" + } + }, + { + "fileOverride": "hollowserenity-garvan-72", + "lineInfo": { + "dialogue": "W-WHAT?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-73", + "lineInfo": { + "dialogue": "N-NO! GET BACK HERE! DON’T YOU DARE HARM THEM! I'LL KILL YOU!! DO YOU HEAR ME???", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Garvan" + } + } + ] + }, + "62": { + "dialogues": [ + { + "fileOverride": "hollowserenity-eileen-3", + "lineInfo": { + "dialogue": "... M-Mother... why d-do I have to stay here?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Eileen" + } + }, + { + "fileOverride": "hollowserenity-katarin-31", + "lineInfo": { + "dialogue": "It’s for your own good, dear. Now, remember to stay put. Garvan won’t be able to use you if you’re kept inside of here...", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-eileen-4", + "lineInfo": { + "dialogue": "I-I miss Dad...", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Eileen" + } + }, + { + "fileOverride": "hollowserenity-katarin-32", + "lineInfo": { + "dialogue": "Yorman won’t be bothering us anymore, sweetheart. He wouldn’t understand, so... J-just don’t worry about what happened to him. It’s irrelevant-", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-servant-1", + "lineInfo": { + "dialogue": "L-LADY KATARIN! T-THERE ARE INTRUDERS— AAAAAAHHHHHH!!!", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Servant" + } + }, + { + "fileOverride": "hollowserenity-katarin-33", + "lineInfo": { + "dialogue": "... Who the hell are you all?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-mysteriousleader-7", + "lineInfo": { + "dialogue": "Step aside, Katarin Faltach. This will be much simpler if you stand down and tell us where your daughter is.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Mysterious Leader" + } + }, + { + "fileOverride": "hollowserenity-katarin-34", + "lineInfo": { + "dialogue": "...Come again? No. YOU WON’T TOUCH HER! GET OUT OF MY SIGHT-", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-mysteriousleader-8", + "lineInfo": { + "dialogue": "You’re not the one making demands here... You all, search the house and find the child.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Mysterious Leader" + } + } + ] + }, + "63": { + "dialogues": [ + { + "fileOverride": "hollowserenity-mysteriousleader-9", + "lineInfo": { + "dialogue": "There she is. Hmm... it seems that the parasite injection worked well. Garvan wasn’t so useless after all.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Mysterious Leader" + } + }, + { + "fileOverride": "hollowserenity-mysteriousleader-10", + "lineInfo": { + "dialogue": "Oh? Too terrified to speak? Worry not, Eileen Faltach. You won’t be harmed... too much. You’re quite important to us, you see.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Mysterious Leader" + } + }, + { + "fileOverride": "hollowserenity-katarin-35", + "lineInfo": { + "dialogue": "N-NO! STAY AWAY FROM MY DAUGHTER!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-mysteriousleader-11", + "lineInfo": { + "dialogue": "You have little choice in the matter, Miss Faltach. Stand your ground.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Mysterious Leader" + } + }, + { + "fileOverride": "hollowserenity-katarin-36", + "lineInfo": { + "dialogue": "GET AWAY FROM HER, DO YOU HEAR ME??? RAAAAAAAAAAAAAAAAGGGGGGGGHHHHHHH!!!!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-mysteriousleader-12", + "lineInfo": { + "dialogue": "Tch... Some people will never understand what we do for the world. Thank you for protecting us from her, Aki.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Mysterious Leader" + } + }, + { + "fileOverride": "hollowserenity-mysteriousleader-13", + "lineInfo": { + "dialogue": "I will deal with the heir myself. You all can head back to our village. Thank you for your help today.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Mysterious Leader" + } + } + ] + }, + "64": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-74", + "lineInfo": { + "dialogue": "... I should have known. I-I... my love... y-you’re gone.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-75", + "lineInfo": { + "dialogue": "DAMN IT! DAMN IT DAMN IT DAMN IT DAMN IT AAAAAALLLL!!!!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-76", + "lineInfo": { + "dialogue": "This is... W-why did this have to happen? ... I-I can’t... this can’t end like this...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Garvan" + } + } + ] + }, + "65": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-77", + "lineInfo": { + "dialogue": "T-This will be enough. You have a wonderful grave, m-my love...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-78", + "lineInfo": { + "dialogue": "W-We won’t be separated, though. I-I will leave our true selves here, as well.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-79", + "lineInfo": { + "dialogue": "My soul... and y-yours.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-80", + "lineInfo": { + "dialogue": "T-This is our final act of love, K-Katarin... This stone will keep us here. Eternal, and in bliss.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-81", + "lineInfo": { + "dialogue": "I-It’s like nothing ever h-happened, right?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Garvan" + } + } + ] + }, + "66": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-82", + "lineInfo": { + "dialogue": "And so it ends here. At the same time, it begins my desperate attempts to flee from my past." + } + }, + { + "fileOverride": "hollowserenity-garvan-83", + "lineInfo": { + "dialogue": "I tried to forget. I tried to forget everything, even my own name. I ignored Katarin’s spirit calling out to me, demanding I return to her." + } + }, + { + "fileOverride": "hollowserenity-garvan-84", + "lineInfo": { + "dialogue": "I became... nothing. A nobody. I had no purpose. I wandered the forest, pretending that nothing had ever gone wrong... Indeed, I had become a Wanderer." + } + }, + { + "fileOverride": "hollowserenity-garvan-85", + "lineInfo": { + "dialogue": "But that changes now.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garvan" + } + } + ] + }, + "67": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-86", + "lineInfo": { + "dialogue": "N-Now you understand. T-this is... all my fault. I have ruined everything. E-everything I touched, I destroyed.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-87", + "lineInfo": { + "dialogue": "Have I not repented enough? Have I not suffered for decades in this god-forsaken forest?? And why did you have to-", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-88", + "lineInfo": { + "dialogue": "No... You know too much. B-But I can't kill, not again. I-I can make things right. I-I'm going to fix this. I'm going to fix this. I'm going to I'm going to I'm going to I'm going to I'm going to...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-89", + "lineInfo": { + "dialogue": "I'm going to I'm going to I'm going to I'm going to I'm going to I'm going to I'm going to I'm going to I'm going to I'm going to I'm going to I'm going to I'm going to I'm going to I'm going to I'm going to I'm going to I'm going to—", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-90", + "lineInfo": { + "dialogue": "KATARIIIIINNNNNN!!!!!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Garvan" + } + } + ] + }, + "68": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-91", + "lineInfo": { + "dialogue": "K-Katarin! My l-love... is that you?", + "line": { + "current": 1, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-92", + "lineInfo": { + "dialogue": "My word... I-It is you! I missed you, love... and I'm s-so sorry... for all of this!", + "line": { + "current": 2, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-93", + "lineInfo": { + "dialogue": "I realize n-now, thanks to this h-human's efforts. What I've done has t-torn us apart... I hurt you and our l-little girl so much...", + "line": { + "current": 3, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-94", + "lineInfo": { + "dialogue": "I-I'm so sorry, Katarin! P-please, forgive me! Let us f-fix all of thi-", + "line": { + "current": 4, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-95", + "lineInfo": { + "dialogue": "H-huh? Why c-can't I...?", + "line": { + "current": 5, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-96", + "lineInfo": { + "dialogue": "K-Katarin...?", + "line": { + "current": 6, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-katarin-37", + "lineInfo": { + "dialogue": "For.. For... give... ness...?", + "line": { + "current": 7, + "max": 17 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-garvan-97", + "lineInfo": { + "dialogue": "What... What do you mean?? Speak, my love! I don't understand", + "line": { + "current": 8, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-katarin-38", + "lineInfo": { + "dialogue": "...Forgiveness...? You... beg for me... to forgive... you?", + "line": { + "current": 9, + "max": 17 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-garvan-98", + "lineInfo": { + "dialogue": "I... Yes, yes! P-Please, my love! I-I know I've spent the last century and a half running away from u-us, but...", + "line": { + "current": 10, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-99", + "lineInfo": { + "dialogue": "It was all my fault, from the beginning! I was wrong! W-We can fix this...! We can make everything go back to normal, j-just like it was before!", + "line": { + "current": 11, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-100", + "lineInfo": { + "dialogue": "Please, Katarin! A-all I ask is that you forgive me!", + "line": { + "current": 12, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-katarin-39", + "lineInfo": { + "dialogue": "..You... You must really have a deathwish-", + "line": { + "current": 13, + "max": 17 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-40", + "lineInfo": { + "dialogue": "...Maybe I can... Forgive this. But I need something from you, as well...", + "line": { + "current": 14, + "max": 17 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-41", + "lineInfo": { + "dialogue": "...Where is the gemstone? I'd... I'd like to know. And then... I could... forgive... this.", + "line": { + "current": 15, + "max": 17 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-garvan-101", + "lineInfo": { + "dialogue": "O-Oh! Is that all? Of course, my love, I can tell you!", + "line": { + "current": 16, + "max": 17 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-102", + "lineInfo": { + "dialogue": "I-I placed it in the catacombs, right next to where—", + "line": { + "current": 17, + "max": 17 + }, + "npc": "Garvan" + } + } + ] + }, + "69": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-103", + "lineInfo": { + "dialogue": "W-What... W-WHAT I-IS THISS?? I-I C-CAN'T B-BREATHE! P-PLEASE!!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-104", + "lineInfo": { + "dialogue": "NO!! NO, NO NO NO NO!! HUMAN, H-HELP ME!! KATARIN... K-KATARIIIIINNNNN!!!!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Garvan" + } + } + ] + }, + "70": { + "dialogues": [ + { + "fileOverride": "hollowserenity-katarin-42", + "lineInfo": { + "dialogue": "YOU... TOOK... HER... FROM... ME.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-43", + "lineInfo": { + "dialogue": "YOU... POISONED... HER...!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-44", + "lineInfo": { + "dialogue": "YOU... RUINED... EVERYTHING!!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Katarin" + } + } + ] + }, + "71": { + "dialogues": [ + { + "fileOverride": "hollowserenity-katarin-45", + "lineInfo": { + "dialogue": "WHERE IS IT?!?!?!?!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-46", + "lineInfo": { + "dialogue": "TELL ME WHERE IT IS, GARVAN! I KNOW YOU'RE STILL LISTENING!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Katarin" + } + } + ] + }, + "72": { + "dialogues": [ + { + "fileOverride": "hollowserenity-katarin-47", + "lineInfo": { + "dialogue": "You knew where it was— Hmm... what did Garvan call you things...?", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-48", + "lineInfo": { + "dialogue": "Right, a human. You knew... that it was just beneath this rubble?", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-49", + "lineInfo": { + "dialogue": "There it is... Thank you... Now this eternal hell will finally end. After so long...", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-50", + "lineInfo": { + "dialogue": "Do you hear that? It's the ocean waves... The heavens... They're calling for me—", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-garvan-105", + "lineInfo": { + "dialogue": "YOU WON'T ESCAPE.", + "line": { + "current": 5, + "max": 11 + }, + "npc": "???" + } + }, + { + "fileOverride": "hollowserenity-katarin-51", + "lineInfo": { + "dialogue": "...Hm?", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-garvan-106", + "lineInfo": { + "dialogue": "OUR LOVE WAS MEANT TO LAST FOREVER.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-107", + "lineInfo": { + "dialogue": "YOU.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-108", + "lineInfo": { + "dialogue": "INTRUDER. YOU MADE THE WRONG CHOICE.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-109", + "lineInfo": { + "dialogue": "IF YOU REFUSE TO FORGIVE ME, THEN I WILL SIMPLY ERASE ANY PROOF THAT WE EVER EXISTED.", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Garvan" + } + }, + { + "fileOverride": "hollowserenity-garvan-110", + "lineInfo": { + "dialogue": "AND NOTHING WILL REMEMBER YOU ONCE YOU DISAPPEAR.", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Garvan" + } + } + ] + }, + "73": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-111", + "lineInfo": { + "dialogue": "STAY AWAY FROM ME!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garvan" + } + } + ] + }, + "74": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-112", + "lineInfo": { + "dialogue": "WHY WON'T YOU FORGIVE ME?!?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garvan" + } + } + ] + }, + "75": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-113", + "lineInfo": { + "dialogue": "DON'T DO IT.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garvan" + } + } + ] + }, + "76": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-114", + "lineInfo": { + "dialogue": "DON'T DESTROY THE GEM!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garvan" + } + } + ] + }, + "77": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-115", + "lineInfo": { + "dialogue": "I CAN'T LET YOU!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garvan" + } + } + ] + }, + "78": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-116", + "lineInfo": { + "dialogue": "FORGIVE ME.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garvan" + } + } + ] + }, + "79": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-117", + "lineInfo": { + "dialogue": "DON'T YOU DARE.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garvan" + } + } + ] + }, + "80": { + "dialogues": [ + { + "fileOverride": "hollowserenity-garvan-118", + "lineInfo": { + "dialogue": "NO NO NO NO NO NO", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garvan" + } + } + ] + }, + "81": { + "dialogues": [ + { + "fileOverride": "hollowserenity-katarin-52", + "lineInfo": { + "dialogue": "He's gone... All of this will finally be done...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-53", + "lineInfo": { + "dialogue": "Thank you, stranger. Thank you for... everything.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-54", + "lineInfo": { + "dialogue": "Now, I'm... finally free. But... I suppose I still have unfinished business. Before I leave, I must know something.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-55", + "lineInfo": { + "dialogue": "...What has become of my daughter, Eileen? Has she suffered any more? Or did she escape?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Katarin" + } + } + ] + }, + "82": { + "dialogues": [ + { + "fileOverride": "hollowserenity-katarin-56", + "lineInfo": { + "dialogue": "I must know. Is she okay?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Katarin" + } + } + ] + }, + "83": { + "dialogues": [ + { + "fileOverride": "hollowserenity-katarin-57", + "lineInfo": { + "dialogue": "...I see. That is... wonderful news. Thank you, human.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Katarin" + } + } + ] + }, + "84": { + "dialogues": [ + { + "fileOverride": "hollowserenity-katarin-58", + "lineInfo": { + "dialogue": "I must... leave... The pain...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-59", + "lineInfo": { + "dialogue": "...The pain is receding... The heavens are calling... for the final time...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-60", + "lineInfo": { + "dialogue": "Goodbye... Thank you human, from the bottom of my heart.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Katarin" + } + } + ] + }, + "85": { + "dialogues": [ + { + "fileOverride": "hollowserenity-katarin-61", + "lineInfo": { + "dialogue": "...What?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-62", + "lineInfo": { + "dialogue": "No.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-63", + "lineInfo": { + "dialogue": "No...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-64", + "lineInfo": { + "dialogue": "NO NO NO NO NO NO NO NOOOOO!!!!!!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Katarin" + } + }, + { + "fileOverride": "hollowserenity-katarin-65", + "lineInfo": { + "dialogue": "!!!!!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Katarin" + } + } + ] + }, + "86": { + "dialogues": [ + { + "fileOverride": "hollowserenity-oldman-17", + "lineInfo": { + "dialogue": "...I-I-I... T-They're a-all...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-18", + "lineInfo": { + "dialogue": "O-Oh g-grook... I-I'm the o-only one l-left...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-19", + "lineInfo": { + "dialogue": "I'm s-sorry, human, j-just... G-give me a m-moment to l-let me get my b-bearings...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Old Man" + } + } + ] + }, + "87": { + "dialogues": [ + { + "fileOverride": "hollowserenity-oldman-20", + "lineInfo": { + "dialogue": "...What do you want?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Old Man" + } + } + ] + }, + "88": { + "dialogues": [ + { + "fileOverride": "hollowserenity-oldman-21", + "lineInfo": { + "dialogue": "I’m not even sure what to say. Not much happened after we last talked, but at one point... The entire forest began to shake. Like a battle between two enormous powers.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-22", + "lineInfo": { + "dialogue": "I don’t know much magic myself, but even I could feel all of that. Not to mention, I heard explosions coming from the old manor.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-23", + "lineInfo": { + "dialogue": "Then, it all went quiet. A few moments later, we all heard a bloodcurdling scream come from the manor, and soon after... that thing appeared.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-24", + "lineInfo": { + "dialogue": "It looked like... the spirit of a woman? All I know is that it was furious, and was dead set on killing everybody here.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-25", + "lineInfo": { + "dialogue": "I managed to hide, though. T-The others were too damn worried about me being too old to let me help. So... I just watched from afar.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-26", + "lineInfo": { + "dialogue": "After a while... it all went quiet. I could hear that spirit wandering around the village. She was searching for something. W-Whispering... something about her ‘daughter’.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-27", + "lineInfo": { + "dialogue": "And then she too disappeared. W-when I finally came out... Oh g-grook... S-she... d-didn't even leave them in one piece...", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Old Man" + } + } + ] + }, + "89": { + "dialogues": [ + { + "fileOverride": "hollowserenity-oldman-28", + "lineInfo": { + "dialogue": "... Y-You say that as if you were responsible for this, human... I don’t need any apologies. This wasn’t your fault.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-29", + "lineInfo": { + "dialogue": "I j-just wish that thing would have at least shown the respect to let me give m-my friends the f-funeral they deserved. I c-can’t send them off to the afterlife in good health without that...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Old Man" + } + } + ] + }, + "90": { + "dialogues": [ + { + "fileOverride": "hollowserenity-oldman-30", + "lineInfo": { + "dialogue": "... I don’t know. I just don’t know.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-31", + "lineInfo": { + "dialogue": "I can’t go to Lexdale, because those loonies will just kick me out for being an outsider. I can’t afford to live anywhere else, though...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-32", + "lineInfo": { + "dialogue": "B-but I can’t stay here... After t-today, it’s too dangerous. And too many bad memories linger here now.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Old Man" + } + } + ] + }, + "91": { + "dialogues": [ + { + "fileOverride": "hollowserenity-oldman-33", + "lineInfo": { + "dialogue": "... Huh? W-What do you mean?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-34", + "lineInfo": { + "dialogue": "... So, that Garvan was really alive?? And h-he caused something to happen at the manor?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-35", + "lineInfo": { + "dialogue": "Y-You killed him?!? S-so that must have been where that scream came from. His dying breaths, huh?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-36", + "lineInfo": { + "dialogue": "W-well... I suppose I could check the manor out, if it’s really safe to be around. Hah... maybe I could finally make a decent living there after all these years.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Old Man" + } + } + ] + }, + "92": { + "dialogues": [ + { + "fileOverride": "hollowserenity-oldman-37", + "lineInfo": { + "dialogue": "Y-you... c-caused this???", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-38", + "lineInfo": { + "dialogue": "I... N-No...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-39", + "lineInfo": { + "dialogue": "G-Grook, t-this m-must be a nightmare, it h-has to be... I-I can’t... n-no...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Old Man" + } + }, + { + "fileOverride": "hollowserenity-oldman-40", + "lineInfo": { + "dialogue": "*hic* T-This... c-can't be happening. I-It can't... I-It just c-can't...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Old Man" + } + } + ] + } + } + }, + "Hunger of the Gerts Part I": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-cikal-1", + "lineInfo": { + "dialogue": "Oh... you're a bit low level to be hanging around Gylia Watchtower, don't you think? Come back at level 77 and we'll get a drink down ya!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Cikal" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-jitak-1", + "lineInfo": { + "dialogue": "Hey there... if you're looking for a suit or something, now is a really bad time. Those blasted gerts keep taking my livestock!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jitak" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-cikal-2", + "lineInfo": { + "dialogue": "Oh, ho ho. A human? What brings you to Gylia Watch - want to let your hair down a bit, I bet!", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-3", + "lineInfo": { + "dialogue": "Of course you know who we are! The Gylia Watch was founded over 200 years ago in wake of the Villager victory in the war.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-4", + "lineInfo": { + "dialogue": " The Gerten war! Only the most famous war in all of modern Gavel! The might of the Villagers crushed those blasted Gerts - not that they were particuarly hard to beat, heh.", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-5", + "lineInfo": { + "dialogue": "Gerts are stupid brutes, you see. The only thing they ever think about is food.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-6", + "lineInfo": { + "dialogue": "Get too close to one and it'll chomp your fingers off, quick as you like. And then the rest of you as well!", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-7", + "lineInfo": { + "dialogue": "The peace treaty keeps them inside their borders, and we get a delivery of supplies every month from Cinfras to send over to them.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-8", + "lineInfo": { + "dialogue": "Of course, we have to keep some of the supplies for ourselves - you've seen how hard these men are working, they deserve a bit of a party!", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-9", + "lineInfo": { + "dialogue": "The Watch keeps a lookout over the Gerten borders day and night... well, maybe not on poker nights!", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-10", + "lineInfo": { + "dialogue": "Although... we have heard a couple nasty rumours floating about - farmers disappearing from their houses and the such.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-11", + "lineInfo": { + "dialogue": "If I really can't tempt you with a glass of wine and a round of poker, maybe you could go and check them out for us?", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-12", + "lineInfo": { + "dialogue": "I'd send the men, but... well, I'd feel bad if one of them went and missed all the partying!", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-13", + "lineInfo": { + "dialogue": "Here, you should head over and talk to Jitak, they're one of the farmers that lodged a complaint. Their house is west of here, I'll write down the co-ordinates.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Cikal" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-cikal-14", + "lineInfo": { + "dialogue": "Hey there! How's the - burp - investigation going, heh?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Cikal" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-jitak-2", + "lineInfo": { + "dialogue": "If you are looking for a suit or something, I can't help you. Now is a very bad time.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-3", + "lineInfo": { + "dialogue": "Oh, you're here on behalf of the Watch? Ha, even sending humans to do their work is not beneath them.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-4", + "lineInfo": { + "dialogue": "All they do is sit up in that tower playing drinking games and act like they own this region!", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-5", + "lineInfo": { + "dialogue": "I reported the fact there is clearly a gert camp right in front of my house and they just ignored me. Now look, my pigs are all gone!", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-6", + "lineInfo": { + "dialogue": "I knew it was a mistake getting this property so close to gerten borders. See, gerts aren't the 'brutes' people insist, but...", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-7", + "lineInfo": { + "dialogue": "Well, they'll eat anything! Animals, fish, monsters, villagers, even humans! Biologically, they're just constantly hungry.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-8", + "lineInfo": { + "dialogue": "The watch is meant to keep them behind their borders...", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-9", + "lineInfo": { + "dialogue": "I even bought a golem to watch over them - got it for a good price because of some incident down at the Olux factory.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-10", + "lineInfo": { + "dialogue": "But somehow the gerts are managing to avoid it! Look, if you're here from the watch, could you help me out?", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-11", + "lineInfo": { + "dialogue": "Go to the gert camp west of here and find out how they are doing all of this!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Jitak" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-jitak-12", + "lineInfo": { + "dialogue": "Hey! Have you followed the trail over to the gert camp just west of here yet?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jitak" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertencaptainvongar-1", + "lineInfo": { + "dialogue": "A not Gert! And a snack!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gerten Captain Vongar" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertenchiefsnaga-1", + "lineInfo": { + "dialogue": "-Good job to all of you! I am proud to say we made the cave road very well.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Gerten Chief Snaga" + }, + "settings": { + "falloff": 60 + } + }, + { + "fileOverride": "hungerofgertspart1-gertenchiefsnaga-2", + "lineInfo": { + "dialogue": "The town folk at Gylia steal the stuff meant for us for their party, and leave us high and dry!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Gerten Chief Snaga" + }, + "settings": { + "falloff": 60 + } + }, + { + "fileOverride": "hungerofgertspart1-gertenchiefsnaga-3", + "lineInfo": { + "dialogue": "But those dumb over fed town folk did not catch us when we dug our cave road right under their watch house.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Gerten Chief Snaga" + }, + "settings": { + "falloff": 60 + } + }, + { + "fileOverride": "hungerofgertspart1-gertenchiefsnaga-4", + "lineInfo": { + "dialogue": "With our new way to get to Gylia land we have more stuff than ever!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Gerten Chief Snaga" + }, + "settings": { + "falloff": 60 + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-jitak-13", + "lineInfo": { + "dialogue": "Human! You're back... and haven't been eaten by a Gert!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-14", + "lineInfo": { + "dialogue": "What did you discover in the camp?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-15", + "lineInfo": { + "dialogue": "A tunnel?! Past Gerten borders? That must be how they're managing to get in and steal my livestock.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-16", + "lineInfo": { + "dialogue": "Look, human. The Watch aren't gonna do anything about this. Please... maybe you can help me.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-17", + "lineInfo": { + "dialogue": "If you can disguise yourself as a Gert maybe you could sneak into their main camp and check out this tunnel?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-18", + "lineInfo": { + "dialogue": "Okay! As you can see, all Gerts wear a carved pumpkin on their head - something to do with their culture.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-19", + "lineInfo": { + "dialogue": "There's a pumpkin farm near here at [-248,37,-5425]... maybe you could get one from there?", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Jitak" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-jitak-20", + "lineInfo": { + "dialogue": "Remember, you're gonna need a pumpkin to blend in with the gerts. There's a farm south-west of here you can take one from!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jitak" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-1", + "lineInfo": { + "dialogue": "... hello.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gert Guard" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-2", + "lineInfo": { + "dialogue": "Oh good, were you sent here to be my lunch?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-3", + "lineInfo": { + "dialogue": "Are you here to be my lunch?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gert Guard" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-4", + "lineInfo": { + "dialogue": "Oh, goodie!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gert Guard" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-5", + "lineInfo": { + "dialogue": "... Is that a joke? What are you, some kind of snack?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gert Guard" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-6", + "lineInfo": { + "dialogue": "Oh... good bye. Come back soon? With some food?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gert Guard" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-7", + "lineInfo": { + "dialogue": "A who.. man? Oh, you mean new folk! All the way here in gerten lands? I have not seen one of you here.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-8", + "lineInfo": { + "dialogue": "I do want to know how you taste...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gert Guard" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-9", + "lineInfo": { + "dialogue": "Doing? I am here to guard the orange gourd farm, of course!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-10", + "lineInfo": { + "dialogue": "This farm right here is where all the gerts get their day mask from!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gert Guard" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-11", + "lineInfo": { + "dialogue": "Oh, it is a thing gerts have been doing for as long as we know.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-12", + "lineInfo": { + "dialogue": "At wake time each day a gert takes an orange gourd and eats into it a shape that shows their mood!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-13", + "lineInfo": { + "dialogue": "It is really nice, is it not?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Gert Guard" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-14", + "lineInfo": { + "dialogue": "We all want to eat all the time!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-15", + "lineInfo": { + "dialogue": "On that note...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gert Guard" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-16", + "lineInfo": { + "dialogue": "No, new folk. Gerts only in this farm.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-17", + "lineInfo": { + "dialogue": "That is why I am put here. To make sure no one gets in.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-18", + "lineInfo": { + "dialogue": "But but I get so bored... and I really want to eat...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Gert Guard" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-19", + "lineInfo": { + "dialogue": "Like, with the clear green rocks?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-20", + "lineInfo": { + "dialogue": "No new folk, gerts do not have any need for green rocks. But...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-21", + "lineInfo": { + "dialogue": "How about this - I will just eat you!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Gert Guard" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-22", + "lineInfo": { + "dialogue": "Ok! Here I go!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gert Guard" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-23", + "lineInfo": { + "dialogue": "Oh...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-24", + "lineInfo": { + "dialogue": "Well, I think I will still eat you. Just how it is!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gert Guard" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-25", + "lineInfo": { + "dialogue": "Oh. What are you then, some kind of snack?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gert Guard" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-26", + "lineInfo": { + "dialogue": "Oh man, a red tree fruit! I should not leave my post... but I want to eat...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Gert Guard" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-27", + "lineInfo": { + "dialogue": "It is only a few steps that way...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Gert Guard" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-28", + "lineInfo": { + "dialogue": "That tastes so good! What a good red tree fruit.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gert Guard" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-29", + "lineInfo": { + "dialogue": "... If I wait here, more might fall from the sky!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gert Guard" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-30", + "lineInfo": { + "dialogue": "Hey! You cannot sneak into the farm or do other stuff like that, I have my eyes on you!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-31", + "lineInfo": { + "dialogue": "Or... well, there are times I look at the sky. In case more red tree fruits fall. But mostly my eyes are on you!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gert Guard" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gert1-1", + "lineInfo": { + "dialogue": "Hey! Why are you at the orange gourd farm so late?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Gert" + } + }, + { + "fileOverride": "hungerofgertspart1-gert1-2", + "lineInfo": { + "dialogue": "Wait... why does your orange gourd mask look like that?!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Gert" + } + }, + { + "fileOverride": "hungerofgertspart1-gert1-3", + "lineInfo": { + "dialogue": "Why is it not like all of the others?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Gert" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gert1-4", + "lineInfo": { + "dialogue": "You are not a gert! You are a new folk! Gerts want to eat all the time!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Gert" + } + }, + { + "fileOverride": "hungerofgertspart1-gert1-5", + "lineInfo": { + "dialogue": "This is gert land only. And, well... a gert needs to eat.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Gert" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gert1-6", + "lineInfo": { + "dialogue": "Hey! Why are you at the orange gourd farm so late?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Gert" + } + }, + { + "fileOverride": "hungerofgertspart1-gert1-7", + "lineInfo": { + "dialogue": "Look, we need some gerts for a trip to hunt in the new cave road.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Gert" + } + }, + { + "fileOverride": "hungerofgertspart1-gert1-8", + "lineInfo": { + "dialogue": "You know, the one in the camp north of Gylia watch house?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Gert" + } + }, + { + "fileOverride": "hungerofgertspart1-gert1-9", + "lineInfo": { + "dialogue": "Come over here to help us!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Gert" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-32", + "lineInfo": { + "dialogue": "Hey! You cannot sneak into the farm or do other stuff like that, I have my eyes on you!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-33", + "lineInfo": { + "dialogue": "Or... well, there are times I look at the sky. In case more red tree fruits fall. But mostly my eyes are on you!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-34", + "lineInfo": { + "dialogue": "Hey! I do not think I have seen you here, are you new?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-35", + "lineInfo": { + "dialogue": "I love your mask! It feels so not like all the other ones around here.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Gert Guard" + } + }, + { + "fileOverride": "hungerofgertspart1-gertguard1-36", + "lineInfo": { + "dialogue": "How did you get the sides so neat with just your teeth?!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Gert Guard" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-jitak-21", + "lineInfo": { + "dialogue": "Ah, a Gert!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-22", + "lineInfo": { + "dialogue": "Oh wait... human, it's you! Wow, you look exactly like a Gert. You're definitely going to blend in at the main camp.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Jitak" + } + }, + { + "fileOverride": "hungerofgertspart1-jitak-23", + "lineInfo": { + "dialogue": "Okay, head over to the main camp at [-4,33,-5516] and see if you can find the tunnel!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Jitak" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-jitak-24", + "lineInfo": { + "dialogue": "You've got a mask now, go check out the tunnel at the gert's main base!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jitak" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gert2-1", + "lineInfo": { + "dialogue": "...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Gert" + } + }, + { + "fileOverride": "hungerofgertspart1-gert2-2", + "lineInfo": { + "dialogue": "Why aren't you eating?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Gert" + } + }, + { + "fileOverride": "hungerofgertspart1-gert2-3", + "lineInfo": { + "dialogue": "You're not a gert... you're a human! Get them!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Gert" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gert2-4", + "lineInfo": { + "dialogue": "Quiet! We need to try to hear what the bad town folk at the watch house talk about!", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Gert" + } + }, + { + "fileOverride": "hungerofgertspart1-gert2-5", + "lineInfo": { + "dialogue": "Watch!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Gert" + } + }, + { + "fileOverride": "hungerofgertspart1-gyliacaptain-1", + "lineInfo": { + "dialogue": "-silly gerts don't even know we're taking their supplies!", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Gylia Captain" + } + }, + { + "fileOverride": "hungerofgertspart1-gyliawatchman-1", + "lineInfo": { + "dialogue": "Besides, we need those supplies more than they do... especially the alcohol, eh boys?!", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Gylia Watchman" + } + }, + { + "fileOverride": "hungerofgertspart1-gyliawatchman-2", + "lineInfo": { + "dialogue": "I don't even know why Cinfras keeps sending all this stuff for the Gerts - can't we just starve 'em out? Screw the lot of 'em, I say!", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Gylia Watchman" + } + }, + { + "fileOverride": "hungerofgertspart1-gyliacaptain-2", + "lineInfo": { + "dialogue": "Damned right, boys! Now look, another shipment just came in - let's skim a little more off the top this time, eh?", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Gylia Captain" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gyliacaptain-3", + "lineInfo": { + "dialogue": "Our kegs are running a bit low again.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Gylia Captain" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gert2-6", + "lineInfo": { + "dialogue": "Agh! That stuff is meant to be ours. The peace deal said we have to get some stuff each month!", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Gert" + } + }, + { + "fileOverride": "hungerofgertspart1-gert2-7", + "lineInfo": { + "dialogue": "Those bad town folk... -you! Go tell the chief!", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Gert" + } + }, + { + "fileOverride": "hungerofgertspart1-gert2-8", + "lineInfo": { + "dialogue": "Tell the chief what we heard! It might be time to fight back at the watch house!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Gert" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertbattlechief-1", + "lineInfo": { + "dialogue": "What? The town folk talk out loud that they take our stuff!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Gert Battle Chief" + } + }, + { + "fileOverride": "hungerofgertspart1-gertbattlechief-2", + "lineInfo": { + "dialogue": "That is it! We will go to war with them!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Gert Battle Chief" + } + }, + { + "fileOverride": "hungerofgertspart1-gertbattlechief-3", + "lineInfo": { + "dialogue": "Thank you, small gert, that you told me this! We will crush the lazy town folk and eat what is left of them!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Gert Battle Chief" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-cikal-15", + "lineInfo": { + "dialogue": "Hey there! How's the - burp - investigation going, heh?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-16", + "lineInfo": { + "dialogue": "Eh? Oh, you're back.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-17", + "lineInfo": { + "dialogue": "What's that?! You're accusing the Watch of stealing supplies meant for the Gerts? Well I don't even know what to say, I've never even HEARD of such-", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-18", + "lineInfo": { + "dialogue": "Actually, you know what? I was gonna make up a lie, but why bother? We have been stealing those supplies!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-19", + "lineInfo": { + "dialogue": "It's not like the Gerts deserve them - all they do is sit in their little camps and talk about how tasty the Watch members must be.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart1-cikal-20", + "lineInfo": { + "dialogue": "So if they think they can attack us, the mighty Gylia Watch, let them try! And you, human, would do well to stay out of the way!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Cikal" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-cikal-21", + "lineInfo": { + "dialogue": "Hey it's you!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Cikal" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-jitak-25", + "lineInfo": { + "dialogue": "Hey! Nice to see you again.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jitak" + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard2-1", + "lineInfo": { + "dialogue": "Hey! You do not look like a gert! Get out of here before I... well, I could eat a bit...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gert Guard" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-37", + "lineInfo": { + "dialogue": "Hey! This is Gert land! Though... I do want to eat a bit...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gert Guard" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart1-gertguard1-38", + "lineInfo": { + "dialogue": "Oh man I really want to eat... were you sent here to be my lunch?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gert Guard" + } + } + ] + } + } + }, + "Hunger of the Gerts Part II": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-gertchief-1", + "lineInfo": { + "dialogue": "Gert! Gert! We must set up for war!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Gert Chief" + }, + "settings": { + "falloff": 50 + } + }, + { + "fileOverride": "hungerofgertspart2-gertchief-2", + "lineInfo": { + "dialogue": "Look at me.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Gert Chief" + }, + "settings": { + "falloff": 50 + } + }, + { + "fileOverride": "hungerofgertspart2-gertchief-3", + "lineInfo": { + "dialogue": "Today we fight. Today we Gerts will take down the bad town folk!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Gert Chief" + }, + "settings": { + "falloff": 50 + } + }, + { + "fileOverride": "hungerofgertspart2-gertchief-4", + "lineInfo": { + "dialogue": "But first! We must eat.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Gert Chief" + }, + "settings": { + "falloff": 50 + } + }, + { + "fileOverride": "hungerofgertspart2-gertchief-5", + "lineInfo": { + "dialogue": "Then, get your knives ready. We will take back our stuff!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Gert Chief" + }, + "settings": { + "falloff": 50 + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-cikal-1", + "lineInfo": { + "dialogue": "You again?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart2-cikal-2", + "lineInfo": { + "dialogue": "This is a very... inconvenient timing for me, you see.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart2-cikal-3", + "lineInfo": { + "dialogue": "Gamenight is starting soon. State your issue fast, please.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart2-cikal-4", + "lineInfo": { + "dialogue": "The Gerts attacking us? HAH! Funny joke.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart2-cikal-5", + "lineInfo": { + "dialogue": "Those pea brains can't even count to three, I doubt they can take our mighty fine establishment down.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Cikal" + } + }, + { + "fileOverride": "hungerofgertspart2-cikal-6", + "lineInfo": { + "dialogue": "Now, if you excuse me. Gamenight is starting, I am needed.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Cikal" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-winie-1", + "lineInfo": { + "dialogue": "Psst! Come here, traveler.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Winie" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-winie-2", + "lineInfo": { + "dialogue": "I want to start off by apologizing for Cikal's behaviour.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Winie" + } + }, + { + "fileOverride": "hungerofgertspart2-winie-3", + "lineInfo": { + "dialogue": "I recently started working here and I totally believe you about the attack.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Winie" + } + }, + { + "fileOverride": "hungerofgertspart2-winie-4", + "lineInfo": { + "dialogue": "What's weird is that the guards here don't even believe it's a possibility. It's like their brains have become all scrambled.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Winie" + } + }, + { + "fileOverride": "hungerofgertspart2-winie-5", + "lineInfo": { + "dialogue": "I seem to be the only one with any sense left!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Winie" + } + }, + { + "fileOverride": "hungerofgertspart2-winie-6", + "lineInfo": { + "dialogue": "When I brought up how wrong it is for us to steal their food rations they just laughed at me like I was crazy.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Winie" + } + }, + { + "fileOverride": "hungerofgertspart2-winie-7", + "lineInfo": { + "dialogue": "Can I ask you for a favor?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Winie" + } + }, + { + "fileOverride": "hungerofgertspart2-winie-8", + "lineInfo": { + "dialogue": "I'll head to Cinfras to report this to the higher ups. If you can somehow find a way to evacuate the guards here.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Winie" + } + }, + { + "fileOverride": "hungerofgertspart2-winie-9", + "lineInfo": { + "dialogue": "They may be jerks but we can't just let them die here.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Winie" + } + }, + { + "fileOverride": "hungerofgertspart2-winie-10", + "lineInfo": { + "dialogue": "I think you should start with the people out in the courtyard.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Winie" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-colry-1", + "lineInfo": { + "dialogue": "Ya what is it?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Colry" + } + }, + { + "fileOverride": "hungerofgertspart2-colry-2", + "lineInfo": { + "dialogue": "Right... You are that crazy adventurer Cikal talked about...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Colry" + } + }, + { + "fileOverride": "hungerofgertspart2-colry-3", + "lineInfo": { + "dialogue": "Well... I'd rather avoid any awkward situations so... please leave before I have to throw you out.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Colry" + } + }, + { + "fileOverride": "hungerofgertspart2-colry-4", + "lineInfo": { + "dialogue": "I appreciate it, boss.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Colry" + } + }, + { + "fileOverride": "hungerofgertspart2-colry-5", + "lineInfo": { + "dialogue": "Only thing that could sway me is food, hahaha! We only eat meat around here!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Colry" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-alie-1", + "lineInfo": { + "dialogue": "Huh?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Alie" + } + }, + { + "fileOverride": "hungerofgertspart2-alie-2", + "lineInfo": { + "dialogue": "Right... You are that crazy adventurer Cikal talked about...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Alie" + } + }, + { + "fileOverride": "hungerofgertspart2-alie-3", + "lineInfo": { + "dialogue": "If you don't have any meat you can ''hand'' in to the watch, please leave.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Alie" + } + }, + { + "fileOverride": "hungerofgertspart2-alie-4", + "lineInfo": { + "dialogue": "I promise we take good care of the food here.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Alie" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-alie-5", + "lineInfo": { + "dialogue": "You heard him. Give us food, or leave.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Alie" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-bory-1", + "lineInfo": { + "dialogue": "Yes?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-2", + "lineInfo": { + "dialogue": "Oh, it's... you.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-3", + "lineInfo": { + "dialogue": "What could you want?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Bory" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-bory-4", + "lineInfo": { + "dialogue": "Huh?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-5", + "lineInfo": { + "dialogue": "Why are you yelling at me?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Bory" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-bory-6", + "lineInfo": { + "dialogue": "And no shot I'm leaving today! We are having our daily game night tonight!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Bory" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-bory-7", + "lineInfo": { + "dialogue": "Yes. Indeed. Meaning, I'm very busy.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-8", + "lineInfo": { + "dialogue": "Every day is a party here. But you. are. not. invited!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Bory" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-bory-9", + "lineInfo": { + "dialogue": "We here at the Gylia Watch are ready to give up our lives!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-10", + "lineInfo": { + "dialogue": "Except on Saturdays!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Bory" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-bory-11", + "lineInfo": { + "dialogue": "Now if you excuse me. I have business to attend to.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Bory" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-bory-12", + "lineInfo": { + "dialogue": "I'm just patrolling. Someone have to look at the mountains for signs of an ambush.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-13", + "lineInfo": { + "dialogue": "Well... even though I doubt Gerts can climb...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-14", + "lineInfo": { + "dialogue": "The details aren't that important. I am doing my job, anyway.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-15", + "lineInfo": { + "dialogue": "Was there anything else?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Bory" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-bory-16", + "lineInfo": { + "dialogue": "I knew that!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-17", + "lineInfo": { + "dialogue": "Obviously...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Bory" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-bory-18", + "lineInfo": { + "dialogue": "Oh..", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-19", + "lineInfo": { + "dialogue": "You are very welcome.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-20", + "lineInfo": { + "dialogue": "I appreciate your comment!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-21", + "lineInfo": { + "dialogue": "So what's on your mind?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Bory" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-bory-22", + "lineInfo": { + "dialogue": "It is our duty to protect the public from the Gerts!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-23", + "lineInfo": { + "dialogue": "If what you are saying is true, we need to stay here!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-24", + "lineInfo": { + "dialogue": "I don't even think anyone would miss the Gerts if they were to die, hah!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Bory" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-bory-25", + "lineInfo": { + "dialogue": "I can never say no to a snack!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-26", + "lineInfo": { + "dialogue": "What are you thinking?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Bory" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-bory-27", + "lineInfo": { + "dialogue": "Ooh! It sounds like you've prepared a whole feast out there.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-28", + "lineInfo": { + "dialogue": "Alright, deal!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Bory" + } + }, + { + "fileOverride": "hungerofgertspart2-bory-29", + "lineInfo": { + "dialogue": "I'll head outside and wait for you.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Bory" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "hungerofgertspart2-winie-11", + "lineInfo": { + "dialogue": "Hey!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Winie" + } + }, + { + "fileOverride": "hungerofgertspart2-winie-12", + "lineInfo": { + "dialogue": "Good job on emptying the tower. I explained the situation to the Cinfras military and they followed me here.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Winie" + } + }, + { + "fileOverride": "hungerofgertspart2-cinfrasmilitary-1", + "lineInfo": { + "dialogue": "Good thing you came to us. There is something wrong with this place because I swear... everyone seems to go coockoo.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Cinfras Military" + } + }, + { + "fileOverride": "hungerofgertspart2-cinfrasmilitary-2", + "lineInfo": { + "dialogue": "Either way. Due to the workers breaking the treaty we have no choice but to charge them for their crimes and fire them on the spot.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Cinfras Military" + } + }, + { + "fileOverride": "hungerofgertspart2-winie-13", + "lineInfo": { + "dialogue": "Us three have been put in place as a replacement until further notice.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Winie" + } + }, + { + "fileOverride": "hungerofgertspart2-winie-14", + "lineInfo": { + "dialogue": "We will also return the stolen food to the Gerts, and hopefully they can calm them down.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Winie" + } + }, + { + "fileOverride": "hungerofgertspart2-winie-15", + "lineInfo": { + "dialogue": "Your job is finished here, Wynnian. Thank you on behalf of Cinfras.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Winie" + } + } + ] + } + } + }, + "Ice Barrows": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "icebarrows-ghostlyvoice-1", + "lineInfo": { + "dialogue": "Soldier! I'm not sure it is wise to be here... An icy death awaits you if you proceed. A death that I will cause..", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ghostly Voice" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "icebarrows-ghostlyvoice-2", + "lineInfo": { + "dialogue": "You must think you can save me? There is no cure for what I have.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ghostly Voice" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "icebarrows-ghostlyvoice-3", + "lineInfo": { + "dialogue": "I froze this land to allow it to heal.. People did not understand.. They came for me here, seeking revenge.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ghostly Voice" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "icebarrows-ghostlyvoice-4", + "lineInfo": { + "dialogue": "Even if you think you can cure me.. I can not allow you to try for if it were to fail my corrupted body would wreak havoc on the world!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ghostly Voice" + } + } + ] + } + }, + "settings": { + "followPlayer": true + } + }, + "Ice Nations": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "icenations-adigard-1", + "lineInfo": { + "dialogue": "Welcome traveler, to our humble island...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Adigard" + } + }, + { + "fileOverride": "icenations-adigard-2", + "lineInfo": { + "dialogue": "My people and I landed here many years ago. Unfortunately, our ship didn't make it...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Adigard" + } + }, + { + "fileOverride": "icenations-adigard-3", + "lineInfo": { + "dialogue": "We tried to build a nation on these islands but became divided through the years.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Adigard" + } + }, + { + "fileOverride": "icenations-adigard-4", + "lineInfo": { + "dialogue": "Because of this, we are fighting a useless war with our neighbours.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Adigard" + } + }, + { + "fileOverride": "icenations-adigard-5", + "lineInfo": { + "dialogue": "I believe we should try to pass a peace treaty, but I am afraid of getting killed if I leave the island...", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Adigard" + } + }, + { + "fileOverride": "icenations-adigard-6", + "lineInfo": { + "dialogue": "Would you mind helping us? Talk to Hallfred about this treaty. He lives on another ice island nearby.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Adigard" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "icenations-adigard-7", + "lineInfo": { + "dialogue": "Have you made any progress?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Adigard" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "icenations-hallfred-1", + "lineInfo": { + "dialogue": "Welcome traveler! What brings you to our island?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Hallfred" + } + }, + { + "fileOverride": "icenations-hallfred-2", + "lineInfo": { + "dialogue": "Oh, I see that Adigard now sends strangers through his cowardice! Worried he'll get killed?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Hallfred" + } + }, + { + "fileOverride": "icenations-hallfred-3", + "lineInfo": { + "dialogue": "We will sign the peace treaty the day Adigard and his nation will return to us... the treasure.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Hallfred: This is the last time I'll repeat it" + } + }, + { + "fileOverride": "icenations-hallfred-4", + "lineInfo": { + "dialogue": "The one that they kept and hid from us after the shipwreck.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Hallfred" + } + }, + { + "fileOverride": "icenations-hallfred-5", + "lineInfo": { + "dialogue": "Pure gold, very valuable and rare! Tell him I'll be waiting for it. And none of that silly story again.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Hallfred" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "icenations-adigard-8", + "lineInfo": { + "dialogue": "I should have expected that. Hallfred was always very greedy...", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Adigard" + } + }, + { + "fileOverride": "icenations-adigard-9", + "lineInfo": { + "dialogue": "We tried to make him understand that we do not have the treasure, without much success.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Adigard" + } + }, + { + "fileOverride": "icenations-adigard-10", + "lineInfo": { + "dialogue": "...You see, the reason why we became shipwrecked wasn't natural cause. We were attacked...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Adigard" + } + }, + { + "fileOverride": "icenations-adigard-11", + "lineInfo": { + "dialogue": "By whom? The undead. Ghosts and demons navigating a monstrous ship. They got us by surprise.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Adigard" + } + }, + { + "fileOverride": "icenations-adigard-12", + "lineInfo": { + "dialogue": "I believe they also stole our treasure during the attack.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Adigard" + } + }, + { + "fileOverride": "icenations-adigard-13", + "lineInfo": { + "dialogue": "Would you help our nation come back together? Find this ship, and bring the treasure back to Hallfred so we can finally live in peace.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Adigard" + } + }, + { + "fileOverride": "icenations-adigard-14", + "lineInfo": { + "dialogue": "Sail north. That is where they attacked us many years ago. It should be easy to find, I'm sure they are anchored there in glory... Thank you.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Adigard" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "icenations-hallfred-6", + "lineInfo": { + "dialogue": "Incredible! He actually delivered the treasure!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Hallfred" + } + }, + { + "fileOverride": "icenations-hallfred-7", + "lineInfo": { + "dialogue": "I suppose that means the end of the war between our nations!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Hallfred" + } + }, + { + "fileOverride": "icenations-hallfred-8", + "lineInfo": { + "dialogue": "This is a great day! Here, take this as a reward for helping our nation.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Hallfred" + } + }, + { + "fileOverride": "icenations-hallfred-9", + "lineInfo": { + "dialogue": "I'm sure you'll find a use for this helmet one day!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Hallfred" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "icenations-hallfred-10", + "lineInfo": { + "dialogue": "Hey, we don't just let strangers use our people like that!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Hallfred" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "icenations-hallfred-11", + "lineInfo": { + "dialogue": "I am glad everything is back to normal.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Hallfred" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "icenations-hallfred-12", + "lineInfo": { + "dialogue": "It's useless to come back to me if you do not have the treasure.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Hallfred" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "icenations-adigard-15", + "lineInfo": { + "dialogue": "Thank you so much for bringing peace between our nations!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Adigard" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "icenations-adigard-16", + "lineInfo": { + "dialogue": "Our nation greatly needs help, but I'm afraid you aren't strong enough. Come back to me when you are level 40.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Adigard" + } + } + ] + } + } + }, + "Infested Pit": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "infestedpit-arakadicus-1", + "lineInfo": { + "dialogue": "Oh, it seems I have a guest. You're just in time for dinner... hehe..", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "2": { + "dialogues": [ + { + "fileOverride": "infestedpit-arakadicus-3", + "lineInfo": { + "dialogue": "Ah, the main course has arrived. You look so good, I think I'll have a taste of you myself!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Arakadicus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "3": { + "dialogues": [ + { + "fileOverride": "infestedpit-tasim-1", + "lineInfo": { + "dialogue": "Do you need to prepare? We'll wait here for you until you're ready.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "infestedpit-aledar-1", + "lineInfo": { + "dialogue": "Well, are you ready? When you are, let's head in and fight those spiders!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "infestedpit-arakadicus-1", + "lineInfo": { + "dialogue": "Oh, it seems I have some guests. You're just in time for dinner... hehe..", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + }, + { + "fileOverride": "infestedpit-arakadicus-2", + "lineInfo": { + "dialogue": "My poor babies are starving. But what shall they feast on? How about... you?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "6": { + "dialogues": [ + { + "fileOverride": "infestedpit-aledar-2", + "lineInfo": { + "dialogue": "Alright, we're in. Keep your guards up, you two. Don't want to get picked off by the spiders!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "infestedpit-tasim-2", + "lineInfo": { + "dialogue": "Indeed. We'll proceed with caution.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "infestedpit-tasim-3", + "lineInfo": { + "dialogue": "There's more spiders here than I expected... Nothing we can't handle, of course, but- still.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "infestedpit-aledar-3", + "lineInfo": { + "dialogue": "Oh, hey- watch your step! Don't want to fall and get stuck in those webs down there, yeah?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "infestedpit-yahya-1", + "lineInfo": { + "dialogue": "...s-stupid spiders, n-n-no good... I-if I get-... get out of here, I'll- b-burn them all down, all those c-creepy c-crawlies... Then it'll j-just be me a-and my- mushrooms. Mushrooms...", + "line": { + "current": 1, + "max": 11 + }, + "npc": "???" + } + }, + { + "fileOverride": "infestedpit-tasim-4", + "lineInfo": { + "dialogue": "..Wait, that voice... Yahya, is that you?", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "infestedpit-yahya-2", + "lineInfo": { + "dialogue": "H-huh?! O-oh! Soldiers, good n-not too strong s-soldiers, here to r-r-rescue good old... Yahya! G-g-get me down f-from here!", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "infestedpit-aledar-4", + "lineInfo": { + "dialogue": "You know this guy?", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "infestedpit-tasim-5", + "lineInfo": { + "dialogue": "Yeah, we do... He's the civilian who was taken by spiders, just before we came to Detlas. I'm surprised he's- well, you know.", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "infestedpit-aledar-5", + "lineInfo": { + "dialogue": "Huh. Well, lucky him, I guess! Alright, let's get him down. soldier, just cast a spell at him to break the webs!", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "infestedpit-yahya-3", + "lineInfo": { + "dialogue": "H-hah! F-freedom! No m-more c-creepy crawlies... Just me a-and my... mushrooms.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "infestedpit-tasim-6", + "lineInfo": { + "dialogue": "You should probably get out of here, quickly. We've cleared the path from the entrance to some extent, but more spiders could arrive soon.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "infestedpit-yahya-4", + "lineInfo": { + "dialogue": "...O-okay!", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "infestedpit-aledar-6", + "lineInfo": { + "dialogue": "...and there he goes. Huh. Weird guy.", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "infestedpit-tasim-7", + "lineInfo": { + "dialogue": "You don't know the least of it. Alright, let's keep moving.", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Tasim" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "infestedpit-arakadicus-3", + "lineInfo": { + "dialogue": "So you freed the Mushroom Man... no matter. My babies think you three look just as delicious... You will make a fine replacement, hehehe...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Arakadicus" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "infestedpit-aledar-7", + "lineInfo": { + "dialogue": "These spiders just keep coming! There has to be a limit to their numbers, we just need to keep fighting!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "infestedpit-tasim-8", + "lineInfo": { + "dialogue": "I can't imagine it's much further from here. Just a few more jumps to make, a few more spiders to fight through, and we'll be there.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "infestedpit-tasim-9", + "lineInfo": { + "dialogue": "Here we are, then. The spider queen must be through here.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "infestedpit-aledar-8", + "lineInfo": { + "dialogue": "Alright. Let's rest a moment, then head on in and take her out. If we work together, these spiders won't stand a chance!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Aledar" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "infestedpit-arakadicus-4", + "lineInfo": { + "dialogue": "Ah, the main course has arrived. You look so good, I think I'll have a taste of you myself!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Arakadicus" + } + }, + { + "fileOverride": "infestedpit-aledar-9", + "lineInfo": { + "dialogue": "Well, we're not going to make it easy for you! We'll take you down!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Aledar" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "infestedpit-tasim-10", + "lineInfo": { + "dialogue": "The people living in the forest are more than just food for you spiders! We won't let you attack them anymore!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "infestedpit-aledar-10", + "lineInfo": { + "dialogue": "We did it! We killed the spider queen! Nivla Woods is safe from that threat now!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "infestedpit-tasim-11", + "lineInfo": { + "dialogue": "We- we did! That was... intense. But we succeeded in the end!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "infestedpit-aledar-11", + "lineInfo": { + "dialogue": "...So, what now? We completed the mission, so we should report back to the Admiral, but... what's after that?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "infestedpit-tasim-12", + "lineInfo": { + "dialogue": "I guess we'll have to figure that out. I know I still want to help defend the province, but beyond that... I don't know.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "infestedpit-aledar-12", + "lineInfo": { + "dialogue": "...Yeah, alright. Well, hey, let's all meet back at Detlas and celebrate! We deserve it after that whole ordeal.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "infestedpit-tasim-13", + "lineInfo": { + "dialogue": "That sounds good, yeah. soldier, we'll rest up here a little, but we'll meet you back at the barracks soon.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Tasim" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "infestedpit-aledar-13", + "lineInfo": { + "dialogue": "There's a lot I want to do... but where should I start? Maybe I'll talk to the Admiral about it...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "infestedpit-tasim-14", + "lineInfo": { + "dialogue": "I'm not sure what the future holds, but at least we're doing the best we can. That's what counts.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + } + } + }, + "Infested Plants": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "infestedplants-tasim-1", + "lineInfo": { + "dialogue": "Oh, soldier! There you are. It's good to see you. Are you ready to continue on towards Detlas?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "infestedplants-tasim-2", + "lineInfo": { + "dialogue": "It seems we'll need to pass through the Nivla Woods first. I've heard the forest is crawling with spiders... But between you and me, we should be-", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "infestedplants-ope-1", + "lineInfo": { + "dialogue": "H-hey! You two! You're soldiers, right? I can tell from your weird fashion sense. You folk are supposed to help people! So. Help!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "???" + }, + "settings": { + "position": { + "x": -420.0, + "y": 67.0, + "z": -1596.0 + } + } + }, + { + "fileOverride": "infestedplants-tasim-3", + "lineInfo": { + "dialogue": "Huh? Oh- yes, of course! What's your name? What do you need help with?", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "infestedplants-ope-2", + "lineInfo": { + "dialogue": "I'm Ope! I was recently... uh... bit by a spider! And now I need your help to get a rare medicinal herb to heal me!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "infestedplants-ope-3", + "lineInfo": { + "dialogue": "It only grows in an infested cave filled with creepy crawlies. And I'm clearly in no condition to go get it myself!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "infestedplants-tasim-4", + "lineInfo": { + "dialogue": "Well, alright! We're here to help, after all, so... We'll get you that herb!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "infestedplants-ope-4", + "lineInfo": { + "dialogue": "Perfect. I'll bring you to the cave, and you can do the rest from there. Follow me, soldiers!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Ope" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "infestedplants-ope-5", + "lineInfo": { + "dialogue": "Well, here we are! The only way you can reach the cave is up through this tree.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "infestedplants-ope-6", + "lineInfo": { + "dialogue": "Hm... There's two of you. Good! One of you can climb up into that cave, and the other can protect me from the crawly spiders down here!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "infestedplants-tasim-5", + "lineInfo": { + "dialogue": "Alright! soldier, you can go up into the tree, and I can defend Ope here while you do that.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "infestedplants-ope-7", + "lineInfo": { + "dialogue": "Good, good. Well, good luck up there! Try not to get bitten too much by the spiders!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ope" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "infestedplants-elderforestspider-1", + "lineInfo": { + "dialogue": "......must............protect............", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Elder Forest Spider" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "4": { + "dialogues": [ + { + "fileOverride": "infestedplants-ope-8", + "lineInfo": { + "dialogue": "There you are! It feels like we've been waiting for hours.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "infestedplants-tasim-6", + "lineInfo": { + "dialogue": "It... really hasn't been that long. Maybe ten minutes at most.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "infestedplants-ope-9", + "lineInfo": { + "dialogue": "Well-... Anyway! Do you have the herb? It's very- uh, important! To cure me. Yep.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "infestedplants-ope-10", + "lineInfo": { + "dialogue": "There it is! Eheh. Thank you kindly for your work, soldiers! Now, about your payment... Let's see, what do I have...", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "infestedplants-ope-11", + "lineInfo": { + "dialogue": "Oh. I seem to be out of emeralds. Well- I can, uh, offer some advice! There's lots to find in this forest. Plenty of caves with valuables to explore! Might be worth your time.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "infestedplants-tasim-7", + "lineInfo": { + "dialogue": "Wait, are you seriously not going to-", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "infestedplants-ope-12", + "lineInfo": { + "dialogue": "It has been a time, soldiers, but I truly must be going! We're near Alekin Village, you should stop on by! Go and speak to the mayor! He can cover my expenses!", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "infestedplants-ope-13", + "lineInfo": { + "dialogue": "Well. Goodbye!", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Ope" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "infestedplants-tasim-8", + "lineInfo": { + "dialogue": "That's... frustrating. He seemed shady from the start, I should have-... Well. What's done is done. Let's go speak to that mayor.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Tasim" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "infestedplants-mayoralvin-1", + "lineInfo": { + "dialogue": "Ah, travelers... welcome to our humble forest town. Have you come to stay, or are you simply passing through?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "infestedplants-tasim-9", + "lineInfo": { + "dialogue": "Probably the latter. Though, we ran into a man named Ope, who directed us to speak with you.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "infestedplants-mayoralvin-2", + "lineInfo": { + "dialogue": "Oh, Ope... I take it your meeting with him went poorly? I must apologize for him, he is... a tough man to deal with.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "infestedplants-mayoralvin-3", + "lineInfo": { + "dialogue": "Here, I may offer you a small sum of emeralds as an apology. I hope he has not soured your opinion of our small town, here...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "infestedplants-tasim-10", + "lineInfo": { + "dialogue": "Oh... Thank you. That's very kind of you. We'll probably stay for a while, before we continue towards Detlas.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "infestedplants-mayoralvin-4", + "lineInfo": { + "dialogue": "Then feel free to make yourselves at home! We welcome all travelers here, no matter how long their stay is.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Mayor Alvin" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "infestedplants-tasim-11", + "lineInfo": { + "dialogue": "I'm going to go rest up a little. I'll be ready for more adventure soon though, don't worry!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "infestedplants-mayoralvin-5", + "lineInfo": { + "dialogue": "Ah, hello! What can I do for you today?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mayor Alvin" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "infestedplants-mayoralvin-6", + "lineInfo": { + "dialogue": "He's... difficult. He's the son of my sister, who was unfortunately killed by spiders some time ago.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "infestedplants-mayoralvin-7", + "lineInfo": { + "dialogue": "With his father out of the picture, I had to take him in. He's a grown man now, yes, but... I fear the loss has taken its toll on us both.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "infestedplants-mayoralvin-8", + "lineInfo": { + "dialogue": "I truly hope he will cease with these ridiculous ploys sometime soon... but I can't bring myself to do more than give him a stern talking to.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "infestedplants-mayoralvin-9", + "lineInfo": { + "dialogue": "He's a good man, truly. I believe that with my whole heart. It's alright if you don't feel the same way, though. I will not force you to interact with him if you do not wish to.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Mayor Alvin" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "infestedplants-mayoralvin-10", + "lineInfo": { + "dialogue": "Oh, dear... I suppose it must have been fifteen years ago that I took the position, when the old mayor stepped down.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "infestedplants-mayoralvin-11", + "lineInfo": { + "dialogue": "He was a kind man, always looking out for the townsfolk. Though, by the time he retired, it was clear he was growing restless in our little town.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "infestedplants-mayoralvin-12", + "lineInfo": { + "dialogue": "Well, as soon as he passed down the position to me, he immediately traveled to Detlas and enlisted in their army! I hear he's in the business of training soldiers these days.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "infestedplants-mayoralvin-13", + "lineInfo": { + "dialogue": "Ah, but I've tried to live up to his legacy. I like to think I've done well in my time as mayor!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Mayor Alvin" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "infestedplants-mayoralvin-14", + "lineInfo": { + "dialogue": "A fine day for passing through! I hope you enjoy your stay.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mayor Alvin" + } + } + ] + } + } + }, + "Jungle Fever": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "junglefever-worid-1", + "lineInfo": { + "dialogue": "Oh, I am so happy to see you! *cough*, I caught a very bad fever, and I really need help! *cough*", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-2", + "lineInfo": { + "dialogue": "The only cure to this fever is to drink Liquid Emeralds! Yes, exactly! *cough*", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-3", + "lineInfo": { + "dialogue": "Do you think you could ask the Banker at Detlas if he could give me, oh I don't know, [64 Liquified Emeralds]?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-4", + "lineInfo": { + "dialogue": "If he has the audacity to *cough* say no... you will have to use brute force...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-5", + "lineInfo": { + "dialogue": "Break into *cough* the emerald storage, but don't take anything... come back to me immediately after, if you make it out alive, heheh...", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-22", + "lineInfo": { + "dialogue": "Oh, uh... I mean *cough* *cough*", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Worid" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "junglefever-banker1-1", + "lineInfo": { + "dialogue": "[64 Liquified Emeralds]? He is crazy! Liquified Emeralds cannot cure anyone from anything, except being poor!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "The Banker" + } + }, + { + "fileOverride": "junglefever-banker1-2", + "lineInfo": { + "dialogue": "I will not participate in this pathetic fraud attempt!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "The Banker" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "junglefever-worid-6", + "lineInfo": { + "dialogue": "Oh no! How will I ever cure my sickness without any Liquified Emeralds?... *cough*", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-7", + "lineInfo": { + "dialogue": "We'll have to change our strategy, we don't ask for permission. It's to help me after all.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-8", + "lineInfo": { + "dialogue": "I needed to make sure you could easily break into a bank. So i came here by myself to see if you could do it.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-9", + "lineInfo": { + "dialogue": "You've proven your ability of stealth and strength by breaking into this storage, we can start the real thing now.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-10", + "lineInfo": { + "dialogue": "You see, Almuj has a very well guarded emerald vault named \"The Emerald Labyrinth\".", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-11", + "lineInfo": { + "dialogue": "It is guarded with tons of well trained Guard Golems, who can kill anyone in one hit.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-12", + "lineInfo": { + "dialogue": "The Banker in the secret vault must be completely bored out of his mind, and won't mind if you find him.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-13", + "lineInfo": { + "dialogue": "Good luck with that. Haha.. I mean, *cough*.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Worid" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "junglefever-banker2-1", + "lineInfo": { + "dialogue": "Oh, uh! Somebody! It has been so long since I've seen someone!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "The Banker" + } + }, + { + "fileOverride": "junglefever-banker2-2", + "lineInfo": { + "dialogue": "Liquified Emeralds? Of course, of course! I've got tons! Here, take them.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "The Banker" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "junglefever-worid-14", + "lineInfo": { + "dialogue": "You are back! Wonderful!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-15", + "lineInfo": { + "dialogue": "I followed you here because.. *cough* I just could not wait.. *cough*", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Worid" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "junglefever-worid-16", + "lineInfo": { + "dialogue": "That is a lot of money, thank you very much, I will finally be able to... *cough* to cure myself!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-17", + "lineInfo": { + "dialogue": "Here, take this part, you deserve it. I have to use most of the... *cough* money so I can heal, so I've instead paid you with a key.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-18", + "lineInfo": { + "dialogue": "I stole- *cough* I mean, borrowed it, from our tribe's leader. Apparently it was used to lock up a great evil.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Worid" + } + }, + { + "fileOverride": "junglefever-worid-19", + "lineInfo": { + "dialogue": "Good ridda- *cough* Er... luck. Yes, good luck, adventurer!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Worid" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "junglefever-worid-20", + "lineInfo": { + "dialogue": "cough cough!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Worid" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "junglefever-worid-21", + "lineInfo": { + "dialogue": "I feel so much better now, thank you for the cure!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Worid" + } + } + ] + } + } + }, + "King's Recruit": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-caravandriver-1", + "lineInfo": { + "dialogue": "Agh!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Caravan Driver" + }, + "settings": { + "falloff": 45 + } + }, + { + "fileOverride": "kingsrecruit-tasim-1", + "lineInfo": { + "dialogue": "Hey, soldier! Are you alright in there? It looks like we've hit something.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + }, + "settings": { + "falloff": 45 + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-caravandriver-2", + "lineInfo": { + "dialogue": "Hm... I swear I hit this same darn boulder every time I make this trip. Sorry folks.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Caravan Driver" + } + }, + { + "fileOverride": "kingsrecruit-tasim-2", + "lineInfo": { + "dialogue": "Ah. Does this mean we have to walk all the way to Ragni from here?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-caravandriver-3", + "lineInfo": { + "dialogue": "Unfortunately. Luckily, it's not that far from here. Just a straight path forward.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Caravan Driver" + } + }, + { + "fileOverride": "kingsrecruit-aledar-1", + "lineInfo": { + "dialogue": "Well, nothing to do but keep moving! Tasim, soldier, I'll race you to the gate!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "kingsrecruit-tasim-3", + "lineInfo": { + "dialogue": "Wait, don't!-... He's already gone. We'll have to catch up to him. soldier, lead the way.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Tasim" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-tasim-4", + "lineInfo": { + "dialogue": "I don't suppose you know much about Wynn either, do you?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-tasim-5", + "lineInfo": { + "dialogue": "Of course, the King of Ragni's been recruiting Fruma soldiers, but...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-tasim-6", + "lineInfo": { + "dialogue": "That war of theirs must be getting pretty bad if they need this much support.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-tasim-7", + "lineInfo": { + "dialogue": "Oh, there's Aledar! And the gate, by the looks of it.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Tasim" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-2", + "lineInfo": { + "dialogue": "There you two are! You'll have to be faster than that if you want to stand a chance against the undead.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "kingsrecruit-tasim-8", + "lineInfo": { + "dialogue": "Yes, yes, we'll be faster next time. So, is this the gate marking the border between Wynn and Fruma?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-aledar-3", + "lineInfo": { + "dialogue": "It looks like it, yep! Are you two ready for the start of our new lives? Here we go!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "kingsrecruit-aledar-4", + "lineInfo": { + "dialogue": "Well, what are you waiting for?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Aledar" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-tasim-9", + "lineInfo": { + "dialogue": "So this is the Wynn we've all been hearing about... It's beautiful.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-aledar-5", + "lineInfo": { + "dialogue": "I guess the war hasn't made it this far. This is what we'll be fighting to protect.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "kingsrecruit-soldier-1", + "lineInfo": { + "dialogue": "Hey, recruits! Come over here, I have something to tell you.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Soldier" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-tasim-10", + "lineInfo": { + "dialogue": "A soldier? What are you doing all the way out here?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-soldier-2", + "lineInfo": { + "dialogue": "There's a bit of trouble up ahead. They sent me out here to intercept new recruits.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Soldier" + } + }, + { + "fileOverride": "kingsrecruit-soldier-3", + "lineInfo": { + "dialogue": "Do you see this cave over here? Caves such as these often contain useful loot that can help keep you alive. If you enter the cave, you can find armour to protect you.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Soldier" + } + }, + { + "fileOverride": "kingsrecruit-aledar-6", + "lineInfo": { + "dialogue": "Well, you heard the man! Let's go get geared up.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Aledar" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-7", + "lineInfo": { + "dialogue": "Don't leave yet! I'd love to keep going, but first we need to get protection.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-soldier-4", + "lineInfo": { + "dialogue": "Enter this cave and find yourself some armour.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Soldier" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-tasim-11", + "lineInfo": { + "dialogue": "You heard the soldier. Let's enter the cave and find some armour.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-8", + "lineInfo": { + "dialogue": "Hmph. The soldier didn't tell us the cave path was collapsed! We'll have to jump through.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-tasim-12", + "lineInfo": { + "dialogue": "Well, this is a problem... I don't think we can make this jump.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-aledar-9", + "lineInfo": { + "dialogue": "Hm. There's got to be some way to... Oh! What if we could break that rock on the ceiling?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "kingsrecruit-tasim-13", + "lineInfo": { + "dialogue": "...And then it would fall and open up a path for us! soldier, left-click the rock to attack and break it!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Tasim" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-10", + "lineInfo": { + "dialogue": "It worked! Now we can reach that chest!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-tasim-14", + "lineInfo": { + "dialogue": "You can right-click a loot chest to open it.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-11", + "lineInfo": { + "dialogue": "Anything good in there? Come on, let's get back to that soldier.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-12", + "lineInfo": { + "dialogue": "Oh, you fell! Try doing it again.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-soldier-5", + "lineInfo": { + "dialogue": "Hm... Yes, that looks like it'll do.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Soldier" + } + }, + { + "fileOverride": "kingsrecruit-soldier-6", + "lineInfo": { + "dialogue": "Normally these outskirts are pretty safe, but we've had some corrupted forces slip through recently.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Soldier" + } + }, + { + "fileOverride": "kingsrecruit-soldier-7", + "lineInfo": { + "dialogue": "We're not entirely sure how they got here... Either way, they've been causing chaos. They've even managed to destroy the bridge!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Soldier" + } + }, + { + "fileOverride": "kingsrecruit-soldier-8", + "lineInfo": { + "dialogue": "... In any case. You've noticed your loot is currently unidentified, yes? You'll be able to identify it at the Item Identifier further down the path, on your left.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Soldier" + } + }, + { + "fileOverride": "kingsrecruit-aledar-13", + "lineInfo": { + "dialogue": "Alright. Thanks for the warning! We'll be sure to stay safe. soldier, lead the way!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Aledar" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-14", + "lineInfo": { + "dialogue": "soldier, you're going the wrong way!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-tasim-15", + "lineInfo": { + "dialogue": "Hey, don't leave yet! We still need to check out the identifier and head on to the bridge!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-tasim-16", + "lineInfo": { + "dialogue": "Oh, that must be the item identifier the soldier mentioned.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-aledar-15", + "lineInfo": { + "dialogue": "Right. soldier, you can right-click the identifier to identify your item! Let us know when you're done.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Aledar" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-16", + "lineInfo": { + "dialogue": "You've got it identified? Great! Let's keep moving.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "kingsrecruit-tasim-17", + "lineInfo": { + "dialogue": "Hm... The soldier said something about the bridge being destroyed. Maybe we should check it out.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-tasim-18", + "lineInfo": { + "dialogue": "Well, that soldier wasn't kidding. This is some serious damage...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-aledar-17", + "lineInfo": { + "dialogue": "Well, how are we meant to get to the other side of this ravine now? Ugh. Another thing gone wrong, just like-...", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "kingsrecruit-tasim-19", + "lineInfo": { + "dialogue": "... Aledar? What's wrong?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-aledar-18", + "lineInfo": { + "dialogue": "That's... weird. I was just thinking about something from before Wynn, but... it's gone. I can't remember.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "kingsrecruit-tasim-20", + "lineInfo": { + "dialogue": "Hm. I can't remember anything from Fruma either... soldier, how about you?", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-aledar-19", + "lineInfo": { + "dialogue": "Nothing. It can't be a coincidence we've all lost our memories at the same time, right?", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "kingsrecruit-tasim-21", + "lineInfo": { + "dialogue": "No, but... We can worry about that later. For now, we need to find a way past this ravine. Aledar, soldier, you should look around for a way across. I'll keep looking here.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-aledar-20", + "lineInfo": { + "dialogue": "Yeah... Alright. Let's go, soldier.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Aledar" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-tasim-22", + "lineInfo": { + "dialogue": "Be careful, soldier! Don't want you falling off the edge.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-tasim-23", + "lineInfo": { + "dialogue": "Hey, don't leave yet! We still need to figure out a way across the gap.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-21", + "lineInfo": { + "dialogue": "Woah! That's one way of doing it, I guess! Hey, Tasim, over here!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "kingsrecruit-tasim-24", + "lineInfo": { + "dialogue": "Good work! You two, go on ahead, I'll be just behind you.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-22", + "lineInfo": { + "dialogue": "Looks like that's the underpass up ahead... We just need to get through there, and we'll be at the castle!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard1-1", + "lineInfo": { + "dialogue": "Ah, the new recruits. Wait there a moment. There's a spot of trouble up ahead.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-tasim-25", + "lineInfo": { + "dialogue": "What? What's going on?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-guard1-2", + "lineInfo": { + "dialogue": "A group of the corrupted have sieged the underpass. It's not safe to go unarmed, so you'll need weapons.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-guard1-3", + "lineInfo": { + "dialogue": "Let's see... A spear for you, a dagger for you, and... a bow for you. There you are.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Guard" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard1-4", + "lineInfo": { + "dialogue": "Let's see... A spear for you, a dagger for you, and... a wand for you. There you are.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Guard" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard1-5", + "lineInfo": { + "dialogue": "Let's see... A spear for you, a dagger for you, and... a dagger for you. There you are.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Guard" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard1-6", + "lineInfo": { + "dialogue": "Let's see... A spear for you, a dagger for you, and... a relik for you. There you are.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Guard" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard1-7", + "lineInfo": { + "dialogue": "Let's see... A spear for you, a dagger for you, and... a spear for you. There you are.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-aledar-23", + "lineInfo": { + "dialogue": "Are we expected to fight already? I would have thought we'd need training first.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "kingsrecruit-guard1-8", + "lineInfo": { + "dialogue": "In a perfect world, yes. But unfortunately, that trouble up ahead won't wait for you to train. Good luck, recruits.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Guard" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-24", + "lineInfo": { + "dialogue": "What's going on?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "kingsrecruit-tasim-26", + "lineInfo": { + "dialogue": "I think that's one of the corrupted... soldier, get ready. You never know when it could...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-tasim-27", + "lineInfo": { + "dialogue": "Strike! Kill it, quickly!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Tasim" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-25", + "lineInfo": { + "dialogue": "Phew... Good work, soldier. Let's keep going.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-tasim-28", + "lineInfo": { + "dialogue": "Hm... Something's wrong. I think we're about to be...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-tasim-29", + "lineInfo": { + "dialogue": "...ambushed.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-aledar-26", + "lineInfo": { + "dialogue": "soldier, take the one in the front! We'll handle the two in the back!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Aledar" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-27", + "lineInfo": { + "dialogue": "I think I'm starting to get the hang of this! These corrupted don't stand a chance!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "kingsrecruit-tasim-30", + "lineInfo": { + "dialogue": "Likewise. Alright, let's keep going. It shouldn't be too far now...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-1", + "lineInfo": { + "dialogue": "Finally, some backup! Help me out here, would you?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-tasim-31", + "lineInfo": { + "dialogue": "What happened! Are you injured? Were you attacked by the corrupt?", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-guard2-2", + "lineInfo": { + "dialogue": "Injured, yes, but not by the undead. I'm well equipped for those. The issue is this here cave-in.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-aledar-28", + "lineInfo": { + "dialogue": "This isn't seriously the only way through, is it? There's got to be something we can do!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "kingsrecruit-guard2-3", + "lineInfo": { + "dialogue": "If only I wasn't injured, I could just use my weapon to cast a spell on these boulders to get rid of them...", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-guard2-4", + "lineInfo": { + "dialogue": "... You there, the quiet one with the bow. What's your name?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-guard2-5", + "lineInfo": { + "dialogue": "soldier. You're an Archer, right? Walk up to the boulder for me.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Guard" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-6", + "lineInfo": { + "dialogue": "soldier. You're a Hunter, right? Walk up to the boulder for me.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-guard2-7", + "lineInfo": { + "dialogue": "You should be able to unlock your first ability... Just use your compass, and click on the ability tree on the left.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-guard2-8", + "lineInfo": { + "dialogue": "Now, cast your Arrow Bomb spell by clicking Left-Right-Right!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Guard" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-9", + "lineInfo": { + "dialogue": "... You there, the quiet one with the spear. What's your name?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-guard2-10", + "lineInfo": { + "dialogue": "soldier. You're a Knight, right? Walk up to the boulder for me.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Guard" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-11", + "lineInfo": { + "dialogue": "soldier. You're a Warrior, right? Walk up to the boulder for me.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Guard" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-12", + "lineInfo": { + "dialogue": "Now, cast your Bash spell by clicking Right-Left-Right!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Guard" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-13", + "lineInfo": { + "dialogue": "... You there, the quiet one with the wand. What's your name?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-guard2-14", + "lineInfo": { + "dialogue": "soldier. You're a Dark Wizard, right? Walk up to the boulder for me.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Guard" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-15", + "lineInfo": { + "dialogue": "soldier. You're a Mage, right? Walk up to the boulder for me.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Guard" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-16", + "lineInfo": { + "dialogue": "Now, cast your Meteor spell by clicking Right-Left-Left!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Guard" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-17", + "lineInfo": { + "dialogue": "... You there, the quiet one with the dagger. What's your name?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-guard2-18", + "lineInfo": { + "dialogue": "soldier. You're an Assassin, right? Walk up to the boulder for me.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Guard" + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-19", + "lineInfo": { + "dialogue": "soldier. You're a Ninja, right? Walk up to the boulder for me.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Guard" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-20", + "lineInfo": { + "dialogue": "Now, cast your Spin Attack spell by clicking Right-Left-Right!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Guard" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-21", + "lineInfo": { + "dialogue": "... You there, the quiet one with the relik. What's your name?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-guard2-22", + "lineInfo": { + "dialogue": "soldier. You're a Shaman, right? Walk up to the boulder for me.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Guard" + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-23", + "lineInfo": { + "dialogue": "soldier. You're a Skyseer, right? Walk up to the boulder for me.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Guard" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-24", + "lineInfo": { + "dialogue": "Now, cast your Totem spell by clicking Right-Left-Right!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Guard" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-25", + "lineInfo": { + "dialogue": "Stand in front of the boulder and cast your spell by clicking Left-Right-Right!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Guard" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-26", + "lineInfo": { + "dialogue": "Stand in front of the boulder and cast your spell by clicking Right-Left-Right!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Guard" + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-27", + "lineInfo": { + "dialogue": "Cast your spell by clicking Left-Right-Right!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Guard" + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-28", + "lineInfo": { + "dialogue": "Cast your spell by clicking Right-Left-Right!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Guard" + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-29", + "lineInfo": { + "dialogue": "Well done, recruit! It's a straight path to the castle from here. You three, head on towards the castle.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Guard" + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-30", + "lineInfo": { + "dialogue": "... Wait. What is THAT?!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Guard" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-31", + "lineInfo": { + "dialogue": "Aghh! Let me go!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-tasim-32", + "lineInfo": { + "dialogue": "Quickly, after that thing! We need to save the guard!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Tasim" + } + } + ] + }, + "56": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-29", + "lineInfo": { + "dialogue": "Hey, soldier! Castle's the other way!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "57": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-guard2-32", + "lineInfo": { + "dialogue": "... That was close. Thanks for the save!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-guard2-33", + "lineInfo": { + "dialogue": "I think you three are going to make good recruits - not many can handle themselves like you just did.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "kingsrecruit-guard2-34", + "lineInfo": { + "dialogue": "You should head on to the castle, now. I'll take care of any leftover corrupted.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Guard" + } + } + ] + }, + "58": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-30", + "lineInfo": { + "dialogue": "We... we made it! We really made it! Gods, that was a close one at the end.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "kingsrecruit-tasim-33", + "lineInfo": { + "dialogue": "... Still think those corrupted don't stand a chance against you?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-aledar-31", + "lineInfo": { + "dialogue": "Ha ha. Very funny. Let's just head inside and talk to the king.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Aledar" + } + } + ] + }, + "59": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-tasim-34", + "lineInfo": { + "dialogue": "...oh, soldier! Over here. Aledar's gone on ahead, but I figured I'd stay back and wait for you to be done.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-tasim-35", + "lineInfo": { + "dialogue": "So! Wynn, huh? It's pretty exciting to finally be here. I'm going to head off in the direction of Detlas soon, but I wanted to tell you about something first.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-tasim-36", + "lineInfo": { + "dialogue": "There's this handy item we were all given on our way here- the Content Book. It displays most things you can do in this world- quests, caves, and more.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-tasim-37", + "lineInfo": { + "dialogue": "It also lets you track any content you want, which will create a beacon you can follow. Here, why don't you try it out? Use your content book, and click on the highlighted quest.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "kingsrecruit-tasim-38", + "lineInfo": { + "dialogue": "Well, there you go! I'm going to head to the end of the Emerald Trail, to the entrance of Nivla Woods. You should meet me there once you've gotten a little stronger.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Tasim" + } + } + ] + }, + "60": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-aledar-32", + "lineInfo": { + "dialogue": "Where are you going? Don't leave us!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "61": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-tasim-39", + "lineInfo": { + "dialogue": "Come over here, we have a problem...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "62": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-ragnisking-1", + "lineInfo": { + "dialogue": "Ah, you must be the last recruit. Please come over here and speak to me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ragni's King" + }, + "settings": { + "falloff": 70, + "position": { + "x": -939.0, + "y": 67.0, + "z": -1567.0 + } + } + } + ] + }, + "63": { + "dialogues": [ + { + "fileOverride": "kingsrecruit-ragnisking-2", + "lineInfo": { + "dialogue": "Hello! Your friends just left. They told me quite the story about what happened to you three on the way here.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "kingsrecruit-ragnisking-3", + "lineInfo": { + "dialogue": "Welcome to the Wynn Province!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "kingsrecruit-ragnisking-4", + "lineInfo": { + "dialogue": "This is the noble fort of Ragni, one of the oldest and most influential cities in the province!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "kingsrecruit-ragnisking-5", + "lineInfo": { + "dialogue": "Your job as a soldier of Wynn is to stop the growth of the monsters that are ravaging the province.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "kingsrecruit-ragnisking-6", + "lineInfo": { + "dialogue": "You might want to train a little more before hand, though. Many lives are lost everyday...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "kingsrecruit-ragnisking-7", + "lineInfo": { + "dialogue": "... Anyway, good luck! If you are lost, use map.wynncraft.com as it is very useful if you don't know where to go.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "kingsrecruit-ragnisking-8", + "lineInfo": { + "dialogue": "Take this [1 Ragni Teleportation Scroll] too! It will bring you back here if you use it.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Ragni's King" + } + } + ] + } + } + }, + "Kingdom of Sand": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "kingdomofsand-lanu-1", + "lineInfo": { + "dialogue": "Hmm.. No dice. Let me try another.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "???" + } + }, + { + "fileOverride": "kingdomofsand-lanu-2", + "lineInfo": { + "dialogue": "⒝⒴ ⒮⒞⒪⒭⒞⒣⒤⒩⒢ ⒣⒠⒜⒯ ⒜⒩⒟ ⒮⒣⒤⒡⒯⒤⒩⒢ ⒮⒜⒩⒟, ⒝⒭⒠⒜⒦ ⒯⒣⒠ ⒝⒜⒭⒭⒤⒠⒭ ⒯⒣⒜⒯ ⒮⒠⒜⒧⒮ ⒯⒣⒤⒮ ⒧⒜⒩⒟1", + "line": { + "current": 2, + "max": 3 + }, + "npc": "???" + } + }, + { + "fileOverride": "kingdomofsand-lanu-3", + "lineInfo": { + "dialogue": "Ugh. I guess the legend is true about the sceptre.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "???" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "kingdomofsand-lanu-4", + "lineInfo": { + "dialogue": "Ah, a Ragni Soldier. I didn’t think you had much to do out here in the desert?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Lanu" + } + }, + { + "fileOverride": "kingdomofsand-lanu-5", + "lineInfo": { + "dialogue": "I'm out here trying to get into the emperor's tomb. Although I'm realising I can't without his sceptre.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Lanu" + } + }, + { + "fileOverride": "kingdomofsand-lanu-6", + "lineInfo": { + "dialogue": "Way before the portal came about, there was a massive empire laid across this land.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Lanu" + } + }, + { + "fileOverride": "kingdomofsand-lanu-7", + "lineInfo": { + "dialogue": "A powerful emperor ruled with a mystical weapon. When he died, the empire fell beneath the sand.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Lanu" + } + }, + { + "fileOverride": "kingdomofsand-lanu-8", + "lineInfo": { + "dialogue": "Untold treasures are inside the emperor's tomb. But without his weapon, there is no hope of entering.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Lanu" + } + }, + { + "fileOverride": "kingdomofsand-lanu-9", + "lineInfo": { + "dialogue": " It's long been rumoured that bandits have the sceptre. They probably have no idea what it is.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Lanu" + } + }, + { + "fileOverride": "kingdomofsand-lanu-10", + "lineInfo": { + "dialogue": "If you could get it, we could enter the dungeon and seek out the emperor for ourselves. The bandit's base is at the start of the mesa, up the hill.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Lanu" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "kingdomofsand-vaultguard-1", + "lineInfo": { + "dialogue": "What, wanna enter the hideout?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Vault Guard" + } + }, + { + "fileOverride": "kingdomofsand-vaultguard-2", + "lineInfo": { + "dialogue": "Even if yer a crooked soldier, we can't jus let yer in.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Vault Guard" + } + }, + { + "fileOverride": "kingdomofsand-vaultguard-3", + "lineInfo": { + "dialogue": "That is, unless yer got the password?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Vault Guard" + } + }, + { + "fileOverride": "kingdomofsand-vaultguard-4", + "lineInfo": { + "dialogue": "Didn’t think so. Now get lost, wasted enough of my t-", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Vault Guard" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "kingdomofsand-tarek-1", + "lineInfo": { + "dialogue": "Now would you look at that... Even soldiers think they can waltz in ere.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Tarek" + } + }, + { + "fileOverride": "kingdomofsand-geo-1", + "lineInfo": { + "dialogue": "Having fun thinking of a password? Sorry to spoil your lunch, but there isn’t one!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Geo" + } + }, + { + "fileOverride": "kingdomofsand-geo-2", + "lineInfo": { + "dialogue": "We could use a few more officials on the roster.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Geo" + } + }, + { + "fileOverride": "kingdomofsand-tarek-2", + "lineInfo": { + "dialogue": "If yer are on the liberal side of the law, talk to us outside.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Tarek" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "kingdomofsand-tarek-3", + "lineInfo": { + "dialogue": "Looks like yer in. Look, there ain't a password cause we're meant to be the best thieves in the land, right?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Tarek" + } + }, + { + "fileOverride": "kingdomofsand-tarek-4", + "lineInfo": { + "dialogue": "So what good are words? Yer gotta give the guard somethin' stolen, aintcha!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Tarek" + } + }, + { + "fileOverride": "kingdomofsand-geo-3", + "lineInfo": { + "dialogue": "And we just so happen to have the opportunity of a lifetime for you. Rymek has gone soft see, a new Mayor is cleaning things up.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Geo" + } + }, + { + "fileOverride": "kingdomofsand-tarek-5", + "lineInfo": { + "dialogue": "Well, we can't have government not under our control. Rymek will always be bandit capital.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Tarek" + } + }, + { + "fileOverride": "kingdomofsand-geo-4", + "lineInfo": { + "dialogue": "So how about we give him a taste of his own medicine, and get hold of that journal he keeps? I’m sure that’ll dig up some dirt on him.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Geo" + } + }, + { + "fileOverride": "kingdomofsand-tarek-6", + "lineInfo": { + "dialogue": "And by \"we\", we mean you. You'll have to sneak through the mansion and avoid guards.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Tarek" + } + }, + { + "fileOverride": "kingdomofsand-tarek-7", + "lineInfo": { + "dialogue": "He keeps his journal in the highest room. Might need to distract some guards too. It's the biggest mansion in Rymek, can't miss it.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Tarek" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "kingdomofsand-tarek-8", + "lineInfo": { + "dialogue": "Yer know you could get kicked out of the army fer this.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Tarek" + } + }, + { + "fileOverride": "kingdomofsand-tarek-9", + "lineInfo": { + "dialogue": "Heh, guess yer the real thing. Hop in, lets get out of ‘ere.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Tarek" + } + }, + { + "fileOverride": "kingdomofsand-tarek-10", + "lineInfo": { + "dialogue": "That journal is more valuable than any gem, you'll be able to get in fer sure.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Tarek" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "kingdomofsand-tarek-11", + "lineInfo": { + "dialogue": "Off we go!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tarek" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "kingdomofsand-vaultguard-5", + "lineInfo": { + "dialogue": "Password?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Vault Guard" + } + }, + { + "fileOverride": "kingdomofsand-vaultguard-6", + "lineInfo": { + "dialogue": "Oh, this is quite the password, Ragni man. I think this will do nicely, on you go.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Vault Guard" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "kingdomofsand-banditboss-1", + "lineInfo": { + "dialogue": "There was another mage at the ancient tomb today boys.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Bandit Boss" + } + }, + { + "fileOverride": "kingdomofsand-bandit-1", + "lineInfo": { + "dialogue": "Well she ain’t got the sceptre does she? She can’t do much harm. Wait why dun we use the sceptre boss?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Bandit" + } + }, + { + "fileOverride": "kingdomofsand-banditboss-2", + "lineInfo": { + "dialogue": "Because the Creden Tibus is more than just a group of criminals. We are honour bound to protect these sands.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Bandit Boss" + } + }, + { + "fileOverride": "kingdomofsand-banditboss-3", + "lineInfo": { + "dialogue": "The empire that fell beneath these sands could be revived if that sceptre made it back to the emperor.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Bandit Boss" + } + }, + { + "fileOverride": "kingdomofsand-bandit-2", + "lineInfo": { + "dialogue": "Good job no one will think of searching that broken cart near the river ey boss?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Bandit" + } + }, + { + "fileOverride": "kingdomofsand-banditboss-4", + "lineInfo": { + "dialogue": "Silence you fool. Didn’t I just say it was imperative no one found the sceptre?", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Bandit Boss" + } + }, + { + "fileOverride": "kingdomofsand-banditboss-5", + "lineInfo": { + "dialogue": "Right, go steal some things or something, I have real work to do.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Bandit Boss" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "kingdomofsand-banditleader-1", + "lineInfo": { + "dialogue": "I knew someone was listening.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Bandit Leader" + } + }, + { + "fileOverride": "kingdomofsand-banditleader-2", + "lineInfo": { + "dialogue": "We might be bandits, but we’re not stupid. That sceptre is left better off alone.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Bandit Leader" + } + }, + { + "fileOverride": "kingdomofsand-desertraider-1", + "lineInfo": { + "dialogue": "Seize ‘em!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Desert Raider" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "kingdomofsand-lanu-11", + "lineInfo": { + "dialogue": "You actually got it! I knew I could count on you. Lets try this!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Lanu" + } + }, + { + "fileOverride": "kingdomofsand-lanu-12", + "lineInfo": { + "dialogue": "Huh? We got no time for superstition, we need to break that seal.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Lanu" + } + }, + { + "fileOverride": "kingdomofsand-lanu-13", + "lineInfo": { + "dialogue": "Seems like something's happening!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Lanu" + } + }, + { + "fileOverride": "kingdomofsand-lanu-14", + "lineInfo": { + "dialogue": "We did it! Who would've thought that it was that ea-", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Lanu" + } + }, + { + "fileOverride": "kingdomofsand-lanu-15", + "lineInfo": { + "dialogue": "What the hell was that...!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Lanu" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "kingdomofsand-lanu-16", + "lineInfo": { + "dialogue": "That shouldn't have happened, I... I don't understand.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Lanu" + } + }, + { + "fileOverride": "kingdomofsand-lanu-17", + "lineInfo": { + "dialogue": "The legend says that the emperor was immortal. I thought this would work.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Lanu" + } + }, + { + "fileOverride": "kingdomofsand-lanu-18", + "lineInfo": { + "dialogue": "Unless.. He cursed himself. There has to be more to this story.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Lanu" + } + }, + { + "fileOverride": "kingdomofsand-lanu-19", + "lineInfo": { + "dialogue": "Perhaps we will never know the full story.. well not unless we unearth the desert itself.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Lanu" + } + }, + { + "fileOverride": "kingdomofsand-lanu-20", + "lineInfo": { + "dialogue": "I'm sure the tale will be discovered in time.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Lanu" + } + }, + { + "fileOverride": "kingdomofsand-lanu-21", + "lineInfo": { + "dialogue": "Well, maybe we'll see each other again, but I must go now. Here, take this as a token of my gratitude.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Lanu" + } + } + ] + } + } + }, + "Lava Springs": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "lavasprings-colonelgailard-1", + "lineInfo": { + "dialogue": "Oh, good, good! I bet'cha you're a Ragni soldier, aren't ya? Listen up, soldier! I've got a task here that 'ye can help out with", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-2", + "lineInfo": { + "dialogue": "Ya see that lava spring right there? It just went and popped up out of nowhere! The brass is real concerned about it, mhm?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-3", + "lineInfo": { + "dialogue": "They've been yappin' about it bein' related to the Corruption, and 'ye can bet that that means trouble. BAD trouble.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-4", + "lineInfo": { + "dialogue": "Now, this here Savannah has always had some Corruption lurkin' about, but not to the point where it can do this! It won't be safe around here if we don't do somethin' about it!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-5", + "lineInfo": { + "dialogue": "Anyways, high command ain't gonna provide support for this until they know there's actual Corruption, so we've gotta find some evidence around the springs, understand?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-6", + "lineInfo": { + "dialogue": "Take a look around the springs, soldier! Find me some damn evidence around here! [3 Pieces of Evidence] should be enough! Now, get movin'!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Colonel Gailard" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "lavasprings-colonelgailard-7", + "lineInfo": { + "dialogue": "Alright, good! Ya found some evidence, let me take a look at that!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-8", + "lineInfo": { + "dialogue": "Oh... This is bad... very, VERY bad...", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-9", + "lineInfo": { + "dialogue": "This here is some physical corruption. If it's gettin' onto the surface, then 'ye can bet one of those weeds is spreadin' underground, right beneath the springs...", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-10", + "lineInfo": { + "dialogue": "If ya could get underneath the spring, 'ye could probably sever whatever damn root is causing this, but... the heat would be sure to fry your skin off...", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-11", + "lineInfo": { + "dialogue": "Wait... I've got an idea... Alright, listen up soldier! There's a lil' town North of here named Bremminglar, yeah? There's a healer person there that can help us out.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-12", + "lineInfo": { + "dialogue": "They're holed up inside of some important well in the center of the town. There's a password ya need to hop into that place, though...", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-13", + "lineInfo": { + "dialogue": "Don't have much to go on, but I'm pretty damn sure the password is Bob, or something. After the hero himself.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-14", + "lineInfo": { + "dialogue": "Right, ye're headin' there to find a potion that can keep ya weak little hide safe from the heat, understand? Here, let me write down the location in that book of yours.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Colonel Gailard" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "lavasprings-gregor-1", + "lineInfo": { + "dialogue": "Hey, hey hey hey! Darling, what do you think you're doing? You can't just waltz in here without telling me the password!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Gregor" + } + }, + { + "fileOverride": "lavasprings-gregor-2", + "lineInfo": { + "dialogue": "Hmm... Your face... confidence... it gleans with confidence... yet... you still haven't spoken to me since you arrived...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Gregor" + } + }, + { + "fileOverride": "lavasprings-gregor-3", + "lineInfo": { + "dialogue": "Could it be... you know that the password is penguin eggs, but you're just too shy to talk? Yeah... yeah, that's gotta be it!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Gregor" + } + }, + { + "fileOverride": "lavasprings-gregor-4", + "lineInfo": { + "dialogue": "You've convinced me, little mute darling... You can enter the well. Go on, now!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Gregor" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "lavasprings-gregor-5", + "lineInfo": { + "dialogue": "Right, listen here darling... There's a secret to this well... it's that... there's a guy doing his job down there... spooky, right??", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gregor" + } + }, + { + "fileOverride": "lavasprings-gregor-6", + "lineInfo": { + "dialogue": "So... be a nice, respectful person, and don't go goofing off around here, yes?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gregor" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "lavasprings-gregor-7", + "lineInfo": { + "dialogue": "Hey! Stay out of there, nosey guy! I don't remember you giving me a password, darling!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gregor" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "lavasprings-namithehealer-1", + "lineInfo": { + "dialogue": "G'day to you, friend. How can I help you?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Nami The Healer" + } + }, + { + "fileOverride": "lavasprings-namithehealer-2", + "lineInfo": { + "dialogue": "Hm? The Colonel sent you? what for?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Nami The Healer" + } + }, + { + "fileOverride": "lavasprings-namithehealer-3", + "lineInfo": { + "dialogue": "...Corrupted... lava springs...? You realize how stupid that sounds, yeah? Well, I completely believe you.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Nami The Healer" + } + }, + { + "fileOverride": "lavasprings-namithehealer-4", + "lineInfo": { + "dialogue": "Right, you said lava, sooo... You need a heat resistance potion, yes?", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Nami The Healer" + } + }, + { + "fileOverride": "lavasprings-namithehealer-5", + "lineInfo": { + "dialogue": "Welp, you're in luck, kinda... I have a potion that can resist the heat of lava, but the brew will not let you swim in lava.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Nami The Healer" + } + }, + { + "fileOverride": "lavasprings-namithehealer-6", + "lineInfo": { + "dialogue": "Oh that works, you just need to enter a borehole that goes through the lava? Perfect", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Nami The Healer" + } + }, + { + "fileOverride": "lavasprings-namithehealer-7", + "lineInfo": { + "dialogue": "Anyways, if you ever need any more special brews, my assistant will be happy to sell some at a very affordable price.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Nami The Healer" + } + }, + { + "fileOverride": "lavasprings-namithehealer-8", + "lineInfo": { + "dialogue": "Now, you have somewhere to be, right? Right. Go and report back to the Colonel, soldier. Tell him I said hi, by the way.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Nami The Healer" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "lavasprings-colonelgailard-15", + "lineInfo": { + "dialogue": "Report! Ya got the potion yet, soldier? Good, drink it if ya haven't already!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-16", + "lineInfo": { + "dialogue": "Right, that's what I like to hear! Now, LOOK TO THE LEFT SOLDIER! There is a borehole out there we dug to try and hit the source of this weed.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-17", + "lineInfo": { + "dialogue": "We found a pretty damn hot cave lying underneath the surface! If ya jumped into the borehole, 'ye could probably find the source of the Corruption and stop it.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-18", + "lineInfo": { + "dialogue": "Now, the roots and spikes of Corruption are very sturdy, but we ain't never seen something like lava burstin' out of the ground.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-19", + "lineInfo": { + "dialogue": "Had a small chat with the brass, earlier. They got a hunch that there's a heart to the Corruption that's pumpin' out all the lava!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Colonel Gailard" + } + }, + { + "fileOverride": "lavasprings-colonelgailard-20", + "lineInfo": { + "dialogue": "That's gotta be our ticket, yeah? If 'ye destroy that, ya should be able to stop the spread of the lava! Now, get movin'! Head into the borehole, soldier!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Colonel Gailard" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "lavasprings-colonelgailard-21", + "lineInfo": { + "dialogue": "Hah! I knew ya'd give me results! Ye're pretty damn reliable, soldier! Here, take this for your trouble!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Colonel Gailard" + } + } + ] + } + } + }, + "Lazarus Pit": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "lazaruspit-burtur-1", + "lineInfo": { + "dialogue": "Ah, one of you adventurin' types, huh? We see a lot of you around here... Going in and out as you please. Must be a nice life.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Burtur" + } + }, + { + "fileOverride": "lazaruspit-burtur-2", + "lineInfo": { + "dialogue": "Though, if you could spare some time, the town could use you-", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Burtur" + } + }, + { + "fileOverride": "lazaruspit-burtur-3", + "lineInfo": { + "dialogue": "Wait, already?! It's only been a day since last! How insatiable are they...?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Burtur" + } + }, + { + "fileOverride": "lazaruspit-gelibordguard-1", + "lineInfo": { + "dialogue": "THE UNDEAD HAVE OVERWHELMED THE GOLEMS! EVERY CITIZEN FOR THEMSELVES!!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Gelibord Guard" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "2": { + "dialogues": [ + { + "fileOverride": "lazaruspit-gelibordguard-2", + "lineInfo": { + "dialogue": "The horde's retreating, but we have one citizen dead! Regroup at the square and prepare the pyres!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gelibord Guard" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "3": { + "dialogues": [ + { + "fileOverride": "lazaruspit-burtur-6", + "lineInfo": { + "dialogue": "Hey! Over there, you alright? Come talk to me, I can explain what just happened.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Burtur" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "4": { + "dialogues": [ + { + "fileOverride": "lazaruspit-burtur-7", + "lineInfo": { + "dialogue": "Phew. That was a smaller horde, thankfully... Still, good thing you were there. That could have been worse.", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Burtur" + } + }, + { + "fileOverride": "lazaruspit-burtur-8", + "lineInfo": { + "dialogue": "Still, c'mon now... We have to burn the bodies. Can't leave the job half-done.", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Burtur" + } + }, + { + "fileOverride": "lazaruspit-burtur-9", + "lineInfo": { + "dialogue": "It's a bit sacrilegious, but necessary to do right now- otherwise they just keep coming back, like they do across the ridge in Kander.", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Burtur" + } + }, + { + "fileOverride": "lazaruspit-burtur-10", + "lineInfo": { + "dialogue": "The ones around here all come up from the river, though, and since it runs right through town, well... You can see the problem.", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Burtur" + } + }, + { + "fileOverride": "lazaruspit-burtur-11", + "lineInfo": { + "dialogue": "Since we don't live in a reeking, pockmarked plain, we have to burn the bodies so any dead don't turn right around against us.", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Burtur" + } + }, + { + "fileOverride": "lazaruspit-gelibordguard-3", + "lineInfo": { + "dialogue": "Say your goodbyes, all. Irahe will be missed. Step away from the pyre!", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Gelibord Guard" + } + }, + { + "fileOverride": "lazaruspit-burtur-12", + "lineInfo": { + "dialogue": "Some conspiracy theorists think that the Lazarus Pit is the issue. It's an urban legend, a well of water that can revive the dead.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Burtur" + } + }, + { + "fileOverride": "lazaruspit-burtur-13", + "lineInfo": { + "dialogue": "Supposing that it's real, it would make some sense, at least- If it started feeding into the river or water tables, then we'd get the current goings-on.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Burtur" + } + }, + { + "fileOverride": "lazaruspit-burtur-14", + "lineInfo": { + "dialogue": "Of course, no one knows where it is, since it's just rumors, but there's supposedly an \"Order\" of pit-keepers. Conveniently long dead, and buried in that small graveyard just north of here.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Burtur" + } + }, + { + "fileOverride": "lazaruspit-burtur-15", + "lineInfo": { + "dialogue": "It's...probably just Referick having made the rounds to any drunk who would listen a while back, but it's also our only shot. If you could give it a search, and a yay or nay?", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Burtur" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "5": { + "dialogues": [ + { + "fileOverride": "lazaruspit-burtur-16", + "lineInfo": { + "dialogue": "Oh, you found something? Well, color me shocked that there was any stock to Referick's ranting...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Burtur" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "lazaruspit-lordplaaticthekind-1", + "lineInfo": { + "dialogue": "Ugh. And who put YOU in charge of waking me up? Where's Gwendolyn, my maid? Incompetents- she was supposed to be buried with me too!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Lord Plaatic the Kind" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "lazaruspit-lordplaaticthekind-2", + "lineInfo": { + "dialogue": "Ah, my favorite little weird-small-nosed-person! The graveyard is so lovely when it's quiet- you really did do a good job!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Lord Plaatic the Kind" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "lazaruspit-poclowabblebuffofgelibord-1", + "lineInfo": { + "dialogue": "Greetings! Thank goodness, that dreary old tomb was simply awful. No furniture, no natural light, not even a lick of paint! So drab, the whole thing.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Poclo Wabblebuff of Gelibord" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "lazaruspit-poclowabblebuffofgelibord-2", + "lineInfo": { + "dialogue": "So, is Mrs. Fluffles doing alright without me? Oh, I bet she was so affectionate, always such a softie!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Poclo Wabblebuff of Gelibord" + } + }, + { + "fileOverride": "lazaruspit-poclowabblebuffofgelibord-3", + "lineInfo": { + "dialogue": "W-wait, Mrs. Fluffles... She was...d-dead? No... It can't be! I left her a lifetime supply of food! ", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Poclo Wabblebuff of Gelibord" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "lazaruspit-poclowabblebuffofgelibord-4", + "lineInfo": { + "dialogue": "Oh, thank you so much! I was so worried that after my death she wouldn't be okay... What a relief!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Poclo Wabblebuff of Gelibord" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "lazaruspit-uggwordpollywaggonthemurderous-1", + "lineInfo": { + "dialogue": "I oughta deck you for waking me up!! Don't you realize it's RUDE to re-animate the long-dead corpse of a murderer when he's trying to get his beauty death?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Uggword Pollywaggon the Murderous" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "lazaruspit-sirpigglesworththethirtyfifth-1", + "lineInfo": { + "dialogue": "My goodness! Ah, it feels good to stretch these old bones. It's not easy being cooped up in a coffin, you know.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Sir Pigglesworth the Thirty-Fifth" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "lazaruspit-sirpigglesworththethirtyfifth-2", + "lineInfo": { + "dialogue": "Oh, you found it! Wonderful! Just pop it on that fingerbone right there... Ah, it fits even better on the other hand!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Sir Pigglesworth the Thirty-Fifth" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "lazaruspit-burtur-17", + "lineInfo": { + "dialogue": "Ah, you're back! We were getting a tad worried about you. Were you able to figure anything out in the chapel there?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Burtur" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "lazaruspit-burtur-18", + "lineInfo": { + "dialogue": "I'll stay back at the town square, in case the undead attack again. Give me a shout if you find something you aren't sure about.", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Burtur" + } + } + ], + "settings": { + "followPlayer": true + } + } + } + }, + "Legendary Island": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "legendaryisland-legendaryattendant1-1", + "lineInfo": { + "dialogue": "Mo'in! Are you here to claim your rewards from the Legendary Challenge? Allow me to explain how the reward system works here.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant1-2", + "lineInfo": { + "dialogue": "As you probably already know, there are four tiers of tokens. Similarly, there are four merchants to match those.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant1-3", + "lineInfo": { + "dialogue": "You can purchase a base accessory at the Bronze Merchant.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant1-4", + "lineInfo": { + "dialogue": "Then, at the Silver Merchant, you can upgrade your Bronze accessory into one of six types of Silver accessories.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant1-5", + "lineInfo": { + "dialogue": "The six types are based on the five elements, along with another type that combines all five.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant1-6", + "lineInfo": { + "dialogue": "The Gold Merchant allows you to upgrade a Silver accessory into a Gold accessory of the same element.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant1-7", + "lineInfo": { + "dialogue": "The Diamond Merchant functions similarly. Thank you for participating in the Legendary Challenge!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Legendary Attendant" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "legendaryisland-legendaryattendant2-1", + "lineInfo": { + "dialogue": "Mo'in, and welcome to Legendary Island, home of the Legendary Challenge!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant2-2", + "lineInfo": { + "dialogue": "The Legendary Challenge consists of 10 powerful enemies, mostly based on some familiar faces.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant2-3", + "lineInfo": { + "dialogue": "Bronze, Silver, Gold, and Diamond.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Legendary Attendant: The Challenge is divided into four tiers" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant2-4", + "lineInfo": { + "dialogue": "The first 3 tiers have three challengers each, while the last, Diamond, has the final challenger.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant2-5", + "lineInfo": { + "dialogue": "Between each fight, you'll have the option to forfeit to claim a reward, or continue to risk a greater reward.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant2-6", + "lineInfo": { + "dialogue": "Someone will let you know what rewards you'll receive before you forfeit.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant2-7", + "lineInfo": { + "dialogue": "If you fail during a fight, you'll receive no reward at all and will have to try again from the beginning.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant2-8", + "lineInfo": { + "dialogue": "Between fights you'll be able to restock on resources if necessary.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant2-9", + "lineInfo": { + "dialogue": "Good luck!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Legendary Attendant" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-1", + "lineInfo": { + "dialogue": "Mo'in, traveler, and welcome to... LEGENDARY ISLAND! The ultimate test of strength!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-2", + "lineInfo": { + "dialogue": "With funding from the future province of Corkus, I went on a journey to study the strongest fighters in the world!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-3", + "lineInfo": { + "dialogue": "This means that here, at Legendary Island, you can fight my creations, recreations of the most powerful beings of all time!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-4", + "lineInfo": { + "dialogue": "There are 10 challengers for you to fight, and many prizes to collect!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-5", + "lineInfo": { + "dialogue": "The Mummyboard!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Dr. Legendary: The first challenger you'll face is based off of a Mummy that I discovered hidden in the desert" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-6", + "lineInfo": { + "dialogue": "You can challenge it now if you want, you can buy an entry ticket to the right.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "legendaryisland-themummyboard-1", + "lineInfo": { + "dialogue": "OS Version M-37 is now online. Systems estimate a 96.286573628% chance of success.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "The Mummyboard" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-7", + "lineInfo": { + "dialogue": "Impressive work against the Mummyboard, but that was only the first challenger! Things have only just begun!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-8", + "lineInfo": { + "dialogue": "During my expedition across the world, funded by the amazing future province of Corkus, I happened upon a story about a doctor in Olux.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-9", + "lineInfo": { + "dialogue": "Using samples of his so-called medicine, and stories about him, I managed to recreate the Plague Doctor as...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-10", + "lineInfo": { + "dialogue": "the Virus Doctor!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-11", + "lineInfo": { + "dialogue": "You can continue and fight him now, or forfeit to your right, though you won't get much of a reward. The choice is yours.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "legendaryisland-virusdoctor-1", + "lineInfo": { + "dialogue": "Ah! It seems I have a subject for my next experiment. Don't worry, human, this will only hurt... a lot.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Virus Doctor" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-12", + "lineInfo": { + "dialogue": "Seems you were able to best the Virus Doctor, but this is still the Bronze tier, so don't get too cocky!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-13", + "lineInfo": { + "dialogue": "After reading about a rare Gavel species with the properties of transformation, I knew I had to research it.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-14", + "lineInfo": { + "dialogue": "Thanks to funding from Corkus, I managed to find it, the Corpus Accipientis, and created a golem with similar abilities.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-15", + "lineInfo": { + "dialogue": "I call it the Corkus Accipientis! This will be the final battle of the Bronze tier!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-16", + "lineInfo": { + "dialogue": "You can continue and challenge it now, or you can forfeit to your right for a small reward. It's up to you!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "legendaryisland-corkusaccipientis-1", + "lineInfo": { + "dialogue": "Scans indicate that your form is incredibly powerful. I will take it from you!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Corkus Accipientis" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-17", + "lineInfo": { + "dialogue": "Congratulations on defeating the Corkus Accipientis and completing the Bronze tier! If you win the next fight, you can start getting Silver tokens.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-18", + "lineInfo": { + "dialogue": "My expedition, which was sponsored by Corkus, by the way, eventually lead me to the jungles of Wynn, where I heard rumors of an ancient idol.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-19", + "lineInfo": { + "dialogue": "Though its name is rather hard to pronounce, I eventually managed to find and study the Matryoshka Idol.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-20", + "lineInfo": { + "dialogue": "And now you can fight one of my most resilient creations, the Matrojan Idol!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-21", + "lineInfo": { + "dialogue": "You can give it a shot now, or forfeit for a reward to your right, as usual.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-22", + "lineInfo": { + "dialogue": "What a breathtaking fight! The Matrojan Idol, defeated! You're almost halfway there.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-23", + "lineInfo": { + "dialogue": "During my travels, made possible by Corkus, I eventually stumbled into the Light Forest of Gavel, where I had a strange vision...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-24", + "lineInfo": { + "dialogue": "I saw... a villager, in his ultimate form, surrounded by mushrooms. The vision inspired me to create the next challenger.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-25", + "lineInfo": { + "dialogue": "I call this robot... YahyaBot V4.04!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-26", + "lineInfo": { + "dialogue": "As always, you can forfeit to your right, or you can continue up ahead!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-27", + "lineInfo": { + "dialogue": "Good grief, what is that thing?! And... YahyaBot! Wrecked! This is a disaster! Oh dear, what am I to do now...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-28", + "lineInfo": { + "dialogue": "Oh- Traveler! It seems we've had a slight change in plans! Though this challenger is in pieces, if you can defeat this beast, I'll count it as a victory! Quickly, before it causes any more damage!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-29", + "lineInfo": { + "dialogue": "What a breathtaking fight! You've done it again! The Matrojan Idol, defeated! You're almost halfway there.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-30", + "lineInfo": { + "dialogue": "Now. Ahem. As you will remember, this next challenger was intended as YahyaBot V4.04.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-31", + "lineInfo": { + "dialogue": "But after your encounter with that beast last time, I got to thinking! What good is a fight without proper stakes? Wherein a single blow decides the match?!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-32", + "lineInfo": { + "dialogue": "No, no, such a fight will not do for Legendary Island! As such, I have decided to scrap the previous inhabitant of middle Silver, and have replaced it with...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-33", + "lineInfo": { + "dialogue": "The Titanium R.A.T. R-4X! All fixed up and ready for a rematch!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-34", + "lineInfo": { + "dialogue": "As always, if once was enough, you can forfeit to your right! Otherwise, continue up ahead!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-35", + "lineInfo": { + "dialogue": "My word, that was certainly unexpected! A shame YahyaBot was destroyed, and yet... What a fight that was! Astounding.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-36", + "lineInfo": { + "dialogue": "...Ahem. Anyways, during my Corkus-sponsored expedition, I eventually found and scaled the legendary Tower of Ascension.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-37", + "lineInfo": { + "dialogue": "Up there, I met a peculiar creature, dressed up as the spirit of Death itself! Despite being an impostor, its strength was still formidable.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-38", + "lineInfo": { + "dialogue": "So the final fight of the Silver tier will be... Death Metal!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-39", + "lineInfo": { + "dialogue": "As I'm legally obligated to remind you, you can forfeit to your right if you want.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-40", + "lineInfo": { + "dialogue": "Ladies and gentlemen, performing you live from Legendary Stadium... it's Death Metal and the Ascendant Bosses!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-41", + "lineInfo": { + "dialogue": "Just as before, an astounding victory against the Titanium R.A.T. R-4X! We'll, ah, have to sort out damages to the arena later.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-42", + "lineInfo": { + "dialogue": "Anyways, during my Corkus-sponsored expedition, I eventually found and scaled the legendary Tower of Ascension.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-43", + "lineInfo": { + "dialogue": "Drat! And those mechs were so expe- Oh! Great job defeating Death Metal!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-44", + "lineInfo": { + "dialogue": "But this next one might be the end of you. The jungles of Wynn also spoke of a creature far more powerful and dangerous than the Idol.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-45", + "lineInfo": { + "dialogue": "While I was unable to approach it myself, a man outside of a temple told me all about the monster in question.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-46", + "lineInfo": { + "dialogue": "Which is why I am proud to present you the Mechorrupter of Worlds, the first enemy of the Gold Tier!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-47", + "lineInfo": { + "dialogue": "The reward for forfeit, to your right, isn't too bad. You can stop now if you want, or risk it all and keep going!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-48", + "lineInfo": { + "dialogue": "Congratulations! You've defeated your first challenger of the Gold tier! That's more than most can say.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-49", + "lineInfo": { + "dialogue": "But you're bound to have heard of the next challenger. During my Corkus-funded travels, I heard every story of Bob known to man.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-50", + "lineInfo": { + "dialogue": "I amassed all of my research into one of my finest creations! So I wish you good luck in defeating the one and only...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-51", + "lineInfo": { + "dialogue": "Robob's Reinvention!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-52", + "lineInfo": { + "dialogue": "While I applaud you for getting this far, there's never any shame in forfeitting off to the side. But the choice is still yours.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "legendaryisland-robob-1", + "lineInfo": { + "dialogue": "Only the most powerful warriors are worthy to face me. And by the looks of it, you barely made the cut.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Robob" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-53", + "lineInfo": { + "dialogue": "Astounding! Very few have ever slain Robob. But this next challenger is known to very few, and still remains undefeated.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-54", + "lineInfo": { + "dialogue": "You've likely heard of Wybels. Have you heard stories of an orange one? They say an orange wybel is very intelligent and powerful.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-55", + "lineInfo": { + "dialogue": "I was unable to match its strength with electromagic alone, so I took a live Orange Wybel and... \"upgraded\" it into...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-56", + "lineInfo": { + "dialogue": "The Orange Cybel, the final challenger of the Gold tier. If you defeat it, you'll even be able to challenge the Diamond tier.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-57", + "lineInfo": { + "dialogue": "If you truly believe in your strength, continue. If not, I'd advise you to forfeit now. Your reward is already sizable.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "legendaryisland-orangecybel-1", + "lineInfo": { + "dialogue": "You've wasted every chance you had to turn back. And you're really not going to like what happens now.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Orange Cybel" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-58", + "lineInfo": { + "dialogue": "Amazing! You even defeated the Cybel, my strongest creation. Well, except for one thing...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-59", + "lineInfo": { + "dialogue": "With the help of Corkus, I travelled to the Hive, where I sought to model the final challenger after the legendary sorceress.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-60", + "lineInfo": { + "dialogue": "But... Qira declined. She said that if I tried anyway, she'd, erm... well, let's just say killing me was putting it too lightly.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-61", + "lineInfo": { + "dialogue": "It might be for the best, anyways. If the stories about her are true, her immense skill might be impossible to replicate.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-62", + "lineInfo": { + "dialogue": "So instead, I made something else, something entirely new...", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-63", + "lineInfo": { + "dialogue": "A mech suit that will be piloted by me, Doctor Legendary! With it, I might be one of the toughest foes you'll ever face!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-64", + "lineInfo": { + "dialogue": "But if you can defeat me, you'll get 1 Diamond Token, 7 Gold Tokens, 15 Silver Tokens, and 25 Bronze Tokens!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-65", + "lineInfo": { + "dialogue": "It's not too late to forfeit, if you want. But I have a feeling you've got one more fight in you.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-66", + "lineInfo": { + "dialogue": "So, you decided to come, then? Then let's see how you fare against the Champion of Legendary Island...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-67", + "lineInfo": { + "dialogue": "Doctor Herbert von Legendary!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "legendaryisland-drlegendary-68", + "lineInfo": { + "dialogue": "I'm still in shock. I, the creator and controller of the strongest mechs in the world, have been defeated!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-69", + "lineInfo": { + "dialogue": "All of my research, sponsored by Corkus, of course, was still not enough. You have truly bested me.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-70", + "lineInfo": { + "dialogue": "I trust that you have received all of your tokens. You can make yourself a powerful accessory with all of those.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-71", + "lineInfo": { + "dialogue": "You've earned those tokens, but they might not be enough to maximize the power of an accessory.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Dr. Legendary" + } + }, + { + "fileOverride": "legendaryisland-drlegendary-72", + "lineInfo": { + "dialogue": "You'll have to go through the challenge all over again if you want more tokens. And I'm ready for a rematch any time!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Dr. Legendary" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "legendaryisland-legendaryattendant3-1", + "lineInfo": { + "dialogue": "Hello, are you here to forfeit? If you quit now you will receive...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant3-2", + "lineInfo": { + "dialogue": "1 Bronze Token.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Legendary Attendant" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "legendaryisland-legendaryattendant3-3", + "lineInfo": { + "dialogue": "3 Bronze Tokens.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Legendary Attendant" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "legendaryisland-legendaryattendant3-4", + "lineInfo": { + "dialogue": "5 Bronze Tokens.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Legendary Attendant" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "legendaryisland-legendaryattendant3-5", + "lineInfo": { + "dialogue": "1 Silver Token and 7 Bronze Tokens.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Legendary Attendant" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "legendaryisland-legendaryattendant3-6", + "lineInfo": { + "dialogue": "3 Silver Tokens and 9 Bronze Tokens.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Legendary Attendant" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "legendaryisland-legendaryattendant3-7", + "lineInfo": { + "dialogue": "5 Silver Tokens and 12 Bronze Tokens.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Legendary Attendant" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "legendaryisland-legendaryattendant3-8", + "lineInfo": { + "dialogue": "1 Gold Token, 7 Silver Tokens, and 15 Bronze Tokens.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Legendary Attendant" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "legendaryisland-legendaryattendant3-9", + "lineInfo": { + "dialogue": "3 Gold Tokens, 9 Silver Tokens, and 18 Bronze Tokens.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant3-10", + "lineInfo": { + "dialogue": "You may either go through this door to claim your reward and turn back and continue the challenge.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Legendary Attendant" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "legendaryisland-legendaryattendant3-11", + "lineInfo": { + "dialogue": "Hello, are you here to forfeit? If you quit now you will receive...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant3-12", + "lineInfo": { + "dialogue": "5 Gold Tokens, 12 Silver Tokens, and 21 Bronze Tokens.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant3-13", + "lineInfo": { + "dialogue": "You may either go through this door to claim your reward and turn back and continue the challenge.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Legendary Attendant" + } + }, + { + "fileOverride": "legendaryisland-legendaryattendant3-14", + "lineInfo": { + "dialogue": "Dr. Legendary will inform you of your rewards for defeating him.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Legendary Attendant" + } + } + ] + } + } + }, + "Lexdale Witch Trials": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "lexdalewitchtrials-themayor-1", + "lineInfo": { + "dialogue": "We have an enemy amongst our own in Lexdale! This witch's illegal practice of dark magic threatens us!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "The Mayor" + } + }, + { + "fileOverride": "lexdalewitchtrials-themayor-2", + "lineInfo": { + "dialogue": "Ms. Amira's home was found to be plagued with spreading Decay! We must kill the witch to protect our sanctity!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "The Mayor" + } + }, + { + "fileOverride": "lexdalewitchtrials-amira-1", + "lineInfo": { + "dialogue": "WAIT! Let me GO already! I told you what was happening!!", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Amira" + } + }, + { + "fileOverride": "lexdalewitchtrials-themayor-3", + "lineInfo": { + "dialogue": "The deceit of your dark magic won't work, Ms. Amira. Go quietly- leave us in peace!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "The Mayor" + } + }, + { + "fileOverride": "lexdalewitchtrials-amira-2", + "lineInfo": { + "dialogue": "SHUT UP ALREADY! You can't just single people out like this!!", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Amira" + } + }, + { + "fileOverride": "lexdalewitchtrials-amira-3", + "lineInfo": { + "dialogue": "Just hear me out for a second! It's not me, something infected my home! That's the reason it was so dark!!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Amira" + } + }, + { + "fileOverride": "lexdalewitchtrials-amira-4", + "lineInfo": { + "dialogue": "My basement, some outlandish thing dug into it! Wherever it went, the area withered and decayed!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Amira" + } + }, + { + "fileOverride": "lexdalewitchtrials-amira-5", + "lineInfo": { + "dialogue": "There's proof in my house that it wasn't me! It's the one that's decayed and barren! You'll see if you LOOK, you gorehound!!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Amira" + } + }, + { + "fileOverride": "lexdalewitchtrials-themayor-4", + "lineInfo": { + "dialogue": "Quit with the insults! We'll delay for now- If there's no proof of the witch's innocence she will be executed!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "The Mayor" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "lexdalewitchtrials-tunneldwellerchieftain-1", + "lineInfo": { + "dialogue": "Further...intruders...? You are not of the worms...the parasites?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Tunnel Dweller Chieftain" + } + }, + { + "fileOverride": "lexdalewitchtrials-tunneldwellerchieftain-2", + "lineInfo": { + "dialogue": "Another stranger... You must have witnessed the tunnels. They blight the stone, wither the roots, make lifeless the land...", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Tunnel Dweller Chieftain" + } + }, + { + "fileOverride": "lexdalewitchtrials-tunneldwellerchieftain-3", + "lineInfo": { + "dialogue": "And here, we starve in isolation. My people are lost, as the very earth itself warps and shifts.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Tunnel Dweller Chieftain" + } + }, + { + "fileOverride": "lexdalewitchtrials-tunneldwellerchieftain-4", + "lineInfo": { + "dialogue": "The water, stagnant and gray. Nothing but those horrid magic scourges, and the worms themselves to sustain ourselves.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Tunnel Dweller Chieftain" + } + }, + { + "fileOverride": "lexdalewitchtrials-tunneldwellerchieftain-5", + "lineInfo": { + "dialogue": "We cannot escape, for the sun scorches us. There is no place to go, no place we can burrow that they do not wait.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Tunnel Dweller Chieftain" + } + }, + { + "fileOverride": "lexdalewitchtrials-tunneldwellerchieftain-6", + "lineInfo": { + "dialogue": "You... You... You have life. You have a heart, and muscle, and meat... To survive till this torture ends...", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Tunnel Dweller Chieftain" + } + }, + { + "fileOverride": "lexdalewitchtrials-tunneldwellerchieftain-7", + "lineInfo": { + "dialogue": "Stranger, you must perish.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Tunnel Dweller Chieftain" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "lexdalewitchtrials-tunneldwellerchieftain-8", + "lineInfo": { + "dialogue": "Wait... These earthquakes! IT'S THEM! AGHHHHHHHHHHH!!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tunnel Dweller Chieftain" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "lexdalewitchtrials-themayor-5", + "lineInfo": { + "dialogue": "You're back. Did- Wait, what in the nine hells is THAT?!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "The Mayor" + } + }, + { + "fileOverride": "lexdalewitchtrials-amira-6", + "lineInfo": { + "dialogue": "That! That was the thing in my basement!! I knew that human could find it! Thank you!!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Amira" + } + }, + { + "fileOverride": "lexdalewitchtrials-amira-7", + "lineInfo": { + "dialogue": "That thing was spreading the decay through my house! It's NOT witches or magic like you suddenly DECIDED one day!!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Amira" + } + }, + { + "fileOverride": "lexdalewitchtrials-themayor-6", + "lineInfo": { + "dialogue": "...Fine then. This...creature...bug...leech? This whatever-it-is... I'll accept your explanation.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "The Mayor" + } + }, + { + "fileOverride": "lexdalewitchtrials-themayor-7", + "lineInfo": { + "dialogue": "Step off the podium, Ms. Amira. You're innocent.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "The Mayor" + } + }, + { + "fileOverride": "lexdalewitchtrials-amira-8", + "lineInfo": { + "dialogue": "Gah, finally! You're seeing sense! It's almost like something just...took you over one day and never left 'til now!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Amira" + } + }, + { + "fileOverride": "lexdalewitchtrials-themayor-8", + "lineInfo": { + "dialogue": "...hm. That... Mmh. Regardless. Human, you've proven yourself to be trustworthy. We'll keep our doors open for you.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "The Mayor" + } + }, + { + "fileOverride": "lexdalewitchtrials-themayor-9", + "lineInfo": { + "dialogue": "As for the...THING... Well... I'll be sure to inform the Gavel government.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "The Mayor" + } + } + ] + } + } + }, + "Light Forest": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "lightforest-lari-1", + "lineInfo": { + "dialogue": "W-why... Why won't you open..? I know what's back there!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-lari-2", + "lineInfo": { + "dialogue": "WHY...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-lari-3", + "lineInfo": { + "dialogue": "WON'T...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-lari-4", + "lineInfo": { + "dialogue": "YOU...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-lari-5", + "lineInfo": { + "dialogue": "OPEN!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "lightforest-vaeli-1", + "lineInfo": { + "dialogue": "ⓑⓛⓔⓢⓢⓔⓓ ⓑⓔ ⓣⓗⓔ ⓦⓐⓣⓔⓡ ⓞⓕ ⓞⓤⓡ ⓛⓞⓡⓓ. ⓜⓐⓨ ⓘⓣ ⓟⓡⓞⓣⓔⓒⓣ ⓤⓢ ⓕⓡⓞⓜ ⓣⓗⓔ ⓓⓐⓡⓚ ⓕⓤⓣⓤⓡⓔ ⓐⓗⓔⓐⓓ ⓞⓕ ⓤⓢ.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Vaeli" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-vaeli-2", + "lineInfo": { + "dialogue": "ⓑⓛⓔⓢⓢⓔⓓ ⓑⓔ ⓣⓗⓔ ⓡⓘⓥⓔⓡⓢ, ⓛⓐⓚⓔⓢ, ⓐⓝⓓ ⓟⓞⓝⓓⓢ ⓐⓒⓡⓞⓢⓢ ⓣⓗⓔⓢⓔ ⓛⓐⓝⓓⓢ.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Vaeli" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-tyana-1", + "lineInfo": { + "dialogue": "What are you doing, sister?", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Tyana" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-vaeli-3", + "lineInfo": { + "dialogue": "Praying. How is the situation?", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Vaeli" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-tyana-2", + "lineInfo": { + "dialogue": "They aren't letting us back in.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Tyana" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-tyana-3", + "lineInfo": { + "dialogue": "We have been sleeping outside the gates for weeks.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Tyana" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-vaeli-4", + "lineInfo": { + "dialogue": "Our ancestors lived in the trees for thousands of years before Aldorei.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Vaeli" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-tyana-4", + "lineInfo": { + "dialogue": "We live in the present. The high elves are not going to let us back in.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Tyana" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-vaeli-5", + "lineInfo": { + "dialogue": "Send the white birds. Go tell the others.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Vaeli" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-vaeli-6", + "lineInfo": { + "dialogue": "We have found our new home.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Vaeli" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "lightforest-dernbeast-1", + "lineInfo": { + "dialogue": "The scales have been tipped.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-dernbeast-2", + "lineInfo": { + "dialogue": "The influence of shadow casts ever further.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-dernbeast-3", + "lineInfo": { + "dialogue": "Balance shall become a thing of the past.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-dernbeast-4", + "lineInfo": { + "dialogue": "Soon enough... The eye shall see all.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "lightforest-orphion-1", + "lineInfo": { + "dialogue": "It has been a while.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-dernbeast-5", + "lineInfo": { + "dialogue": "The world is crumbling from imbalance. Soon I shall bring it to the path of purity.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-orphion-2", + "lineInfo": { + "dialogue": "Do you not fear for your actions? For what they could cause?", + "line": { + "current": 3, + "max": 10 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-dernbeast-6", + "lineInfo": { + "dialogue": "The power that I have gained... It has made me stronger.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-orphion-3", + "lineInfo": { + "dialogue": "It means nothing. Your insufferable desires bring no good to this world.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-dernbeast-7", + "lineInfo": { + "dialogue": "This fight... This war... It has torn us apart from what we were.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-orphion-4", + "lineInfo": { + "dialogue": "Our paths were never the same. And they never will be. This war shall face the end soon enough.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-dernbeast-8", + "lineInfo": { + "dialogue": "No... You are blind, my friend. Let me show you what this war has become.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-dernbeast-9", + "lineInfo": { + "dialogue": "As the war of the realms...", + "line": { + "current": 9, + "max": 10 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "lightforest-dernbeast-10", + "lineInfo": { + "dialogue": "...is endless.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + } + ], + "settings": { + "followPlayer": true + } + }, + "5": { + "dialogues": [ + { + "fileOverride": "lightforest-strangefrog-1", + "lineInfo": { + "dialogue": "Uh... You aren't supposed to be here..! ", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Strange Frog" + }, + "settings": { + "falloff": 200 + } + } + ] + } + } + }, + "Llevigar Plains": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "llevigarplains-fisherman-1", + "lineInfo": { + "dialogue": "Why is cooking so boring and difficult?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-fisherman-2", + "lineInfo": { + "dialogue": "I should do something abou-", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-fisherman-3", + "lineInfo": { + "dialogue": "Who the heck are you? Why did you just break into my house?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-fisherman-4", + "lineInfo": { + "dialogue": "A-Are you... CHALLENGING ME!!?? Into a fishing competition!?", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-fisherman-5", + "lineInfo": { + "dialogue": "No one can win ME in a fishing competition!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-fisherman-6", + "lineInfo": { + "dialogue": "You buffoon! Get yourself a fishing rod too and we'll settle this outside!!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "llevigarplains-fisherman-7", + "lineInfo": { + "dialogue": "Huh, did you finish already? Ahaa! Let's see then...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-fisherman-8", + "lineInfo": { + "dialogue": "What!? You actually managed to fish eight or more fish? And I only got seven! How pitiful of me...", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-fisherman-9", + "lineInfo": { + "dialogue": "Man, you really won me. I can't believe it!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-fisherman-10", + "lineInfo": { + "dialogue": "Hold on, what is that? In the river? It looks like...", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-fisherman-11", + "lineInfo": { + "dialogue": "That thing sure does look weird... Never seen anything like it before!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-fisherman-12", + "lineInfo": { + "dialogue": "Argh, can't people just leave this river alone already?", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-fisherman-13", + "lineInfo": { + "dialogue": "They just keep throwing trash into this river... Hasn't the decay already done enough work? Even the kappas don't bother fishing here.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-fisherman-14", + "lineInfo": { + "dialogue": "Whatever man, you won. I hope this thingamajig can deal as a prize. I got nothing better and it looks cool enough.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "llevigarplains-fisherman-15", + "lineInfo": { + "dialogue": "Huh, did you finish already? Ahaa! Let's see then...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-fisherman-16", + "lineInfo": { + "dialogue": "Ahhah, you didn't even get a single fish! Hilarious.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-fisherman-17", + "lineInfo": { + "dialogue": "Whatever. You lost, and nobody can beat me anyways!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "llevigarplains-fisherman-18", + "lineInfo": { + "dialogue": "Ahhah, I can see that you haven't managed to beat me.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "llevigarplains-fisherman-19", + "lineInfo": { + "dialogue": "Now come on! Get yourself a fishing rod from the inside!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "llevigarplains-fisherman-20", + "lineInfo": { + "dialogue": "Now come on! Get on that rock and let's begin!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "llevigarplains-fisherman-21", + "lineInfo": { + "dialogue": "Hey, hey! No jumping in the water!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "llevigarplains-fisherman-22", + "lineInfo": { + "dialogue": "Can you catch at least [8 Fish] and beat my score? Just don't catch the pufferfish or I'll minus it off!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-fisherman-23", + "lineInfo": { + "dialogue": "Ahaa! And so we begin...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "llevigarplains-fisherman-24", + "lineInfo": { + "dialogue": "Hah! I knew that you would run away! No one can beat the greatest fisher that has ever lived!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Fisherman" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "llevigarplains-lari-1", + "lineInfo": { + "dialogue": "I could stare at this map for hours, you know. It's like staring into the past.", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-lari-2", + "lineInfo": { + "dialogue": "It's a few centuries out of date. You see how green this place once was?", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-lari-3", + "lineInfo": { + "dialogue": "Look at it now. It's become so barren and... Lifeless.", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-lari-4", + "lineInfo": { + "dialogue": "I've watched much of this land fall in a similar way...", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-lari-5", + "lineInfo": { + "dialogue": "It's been spreading faster as the years have gone by. I-I don't believe there's much time left.", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-lari-6", + "lineInfo": { + "dialogue": "People have been calling it the ''Decay''... Truth is, there is so much more to it.", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-lari-7", + "lineInfo": { + "dialogue": "I've managed to hold it back and keep it to the north, but there is only one of me.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-lari-8", + "lineInfo": { + "dialogue": "Just look at all of this rot. And I was always told that nature could manage on its own.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-lari-9", + "lineInfo": { + "dialogue": "But, alas, not even the loveliest pieces of light are safe from its looming shadow.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-lari-10", + "lineInfo": { + "dialogue": "I hope you can enjoy what Olux can offer. There is still beauty there, if you look closely.", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-lari-11", + "lineInfo": { + "dialogue": "You may think there's still something to be done here, but... I'm not sure if there is anymore.", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "llevigarplains-llevigararchivist-1", + "lineInfo": { + "dialogue": "Ahem. Here to return a book, are you? Let me see that.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-2", + "lineInfo": { + "dialogue": "Wealth or Knowledge... Yes, I remember this book. Sixteen years overdue.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-3", + "lineInfo": { + "dialogue": "Well, seeing as you certainly aren't the fellow who borrowed it, I suppose I won't fine you for it. Where did you find this, anyway?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-4", + "lineInfo": { + "dialogue": "...A dragon in the clouds? Certainly sounds like somewhere he would go. Well, regardless, welcome to Llevigar's Library!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-5", + "lineInfo": { + "dialogue": "If you need me for anything, I'll be around. Otherwise, feel free to peruse our literature.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "llevigarplains-llevigararchivist-6", + "lineInfo": { + "dialogue": "Hm... Yes, hello. Do you need anything?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "llevigarplains-llevigararchivist-7", + "lineInfo": { + "dialogue": "Well, I suppose I'm something of an expert on history. You likely wouldn't find someone more knowledgeable than me... Unless they lived through it, of course!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-8", + "lineInfo": { + "dialogue": "Ah, that aside. Is there a region you're particularly interested in?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "llevigarplains-llevigararchivist-9", + "lineInfo": { + "dialogue": "Wynn... Yes, yes, of course. You know, the humans in Wynn have never held history in as high regard as us Gavellians. As such, most of the information we have is... shall I say, incomplete.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-10", + "lineInfo": { + "dialogue": "You humans instead choose to focus more on the present, rather than the past. That thousand-year war of yours has kept your people uniquely invested in the now.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-11", + "lineInfo": { + "dialogue": "And, well... I think that's quite an admirable quality of your people. That you have survived a millenia of constant onslaught from the Corruption, and you still have hope for the present. For the future.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-12", + "lineInfo": { + "dialogue": "So much of what we know of your history is directly tied to your war - from the event that started it all, to the modern politics of your cities. The Corruption is a constant all throughout, in a way that's unique to your province.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-13", + "lineInfo": { + "dialogue": "And so, despite my interest in the history of the rest of the world, it is Wynn alone that fascinates me in this way.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "llevigarplains-llevigararchivist-14", + "lineInfo": { + "dialogue": "Gavel... Let's see here. I suppose a rather interesting period in our history which is relatively unknown is the time after Remikas' rule... And the Wars of the Cousins.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-15", + "lineInfo": { + "dialogue": "After the death of Gavel's first king, the province saw a time of relative peace. His eldest daughter, Marika the Admired, had a long and peaceful rule until her passing in 463 BP.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-16", + "lineInfo": { + "dialogue": "The crown was thus given to her son, Emil I. However, following the assassination of an advisor in his court, his legitimacy as king came into question.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-17", + "lineInfo": { + "dialogue": "His two cousins, Alhard and Sivelle, claimed that Emil I was unfit to rule. Being children of Remikas' eldest son, Aramis, they believed they had a claim to the throne themselves.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-18", + "lineInfo": { + "dialogue": "Alhard rebelled first, and later his children followed in his footsteps. The kingdom was split, with Alhard and Sivelle presiding in Kander Forest, and Emil I holding the citadel of Cinfras.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-19", + "lineInfo": { + "dialogue": "Over the following decades, these civil wars would continue. Many times would these two factions come into conflict over who truly deserved the crown, prolonging the split of the monarchy.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-20", + "lineInfo": { + "dialogue": "Eventually, in 431 BP, this conflict would finally come to an end. Sivelle's daughter, Raemin, took the crown, and finalized her victory by having her enemies beheaded. And thus, this period of history came to a close.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "llevigarplains-llevigararchivist-21", + "lineInfo": { + "dialogue": "Very well. I'll return to my work.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "llevigarplains-llevigararchivist-22", + "lineInfo": { + "dialogue": "Oh. I'll have to think on that question for a moment.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-23", + "lineInfo": { + "dialogue": "...Don't tell anyone this, but one of my favorites is a book titled 'The Long-Winded and Painful Death of Sweeney S. Greenville.'", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-24", + "lineInfo": { + "dialogue": "It is, as the title states, rather long... But it keeps a good sense of humor throughout. And humor is something I don't often find with this job of mine.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-25", + "lineInfo": { + "dialogue": "I've worked here for nearly fourty years, myself. It's quiet work, but that's something I take solace in.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "llevigarplains-llevigararchivist-26", + "lineInfo": { + "dialogue": "Oh, don't get me started. He was a nice enough fellow, I suppose. Didn't cause many problems while he was here.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-27", + "lineInfo": { + "dialogue": "He seemed interested in a variety of topics, and he read through many books while he frequented our library.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-28", + "lineInfo": { + "dialogue": "I'm unsure he ever found what he was looking for, though. We have history, yes, but what he was looking for was more... exotic.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-29", + "lineInfo": { + "dialogue": "Then, of course, he took one of our books and never returned it. For that, he has lost my respect.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "llevigarplains-llevigararchivist-30", + "lineInfo": { + "dialogue": "Oh! Chapter five, is it? Yes, it's certainly an oddity in comparison to the rest of the set.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-31", + "lineInfo": { + "dialogue": "As for the reasoning for its removal... It's forbidden knowledge, you see. Ever since that Decay has taken hold, well...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-llevigararchivist-32", + "lineInfo": { + "dialogue": "Let's just say our government does not look kindly upon talk of dark magic, and leave it at that.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "llevigarplains-llevigararchivist-33", + "lineInfo": { + "dialogue": "Well, hello then, fellow library-goer. If you don't mind, I'll get back to work now.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Llevigar Archivist" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "llevigarplains-mother-1", + "lineInfo": { + "dialogue": "The Decay just keeps on getting worse and worse in the north.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Mother" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-sailor-1", + "lineInfo": { + "dialogue": "Aye, I've 'eard that Gelibord isn't doin' good at all. Sure wouldn't want to live there as we speak.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Sailor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-citizen-1", + "lineInfo": { + "dialogue": "But do you really think the sea is going to give us any help?", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Citizen" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-citizen-2", + "lineInfo": { + "dialogue": "I just... There ain't anything over there. It's only endless waves of water.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Citizen" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-mother-2", + "lineInfo": { + "dialogue": "You're talking about that legend? The guy who once sailed on to see what's ahead and never came back?", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Mother" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-citizen-3", + "lineInfo": { + "dialogue": "Yeah, who knows? Maybe the ship falls off the world's edge!?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Citizen" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-sailor-2", + "lineInfo": { + "dialogue": "Shut yer mouth. This here be the only chance we got, 'mm?", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Sailor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-sailor-3", + "lineInfo": { + "dialogue": "Them men over there be ready to die fer their land. Fer Gavel!! No stupid legend be goin' to stop them.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Sailor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-child-1", + "lineInfo": { + "dialogue": "The ship! The ship's getting ready to leave the dock!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Child" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "llevigarplains-captain-1", + "lineInfo": { + "dialogue": "Alright boys, it's time to move on! We have quite a big journey ahead of us!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Captain" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-captain-2", + "lineInfo": { + "dialogue": "We have no idea what we'll find, but I'm sure all of this chaos will end with it!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Captain" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-captain-3", + "lineInfo": { + "dialogue": "Are you ready to go!? Are you ready to risk your lives for Gavel!?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Captain" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-gavelsailors-1", + "lineInfo": { + "dialogue": "Aye, aye captain!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Gavel Sailors" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-captain-4", + "lineInfo": { + "dialogue": "Drop the sails!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Captain" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "llevigarplains-captain-5", + "lineInfo": { + "dialogue": "And so we shall leave for the future!!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Captain" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "llevigarplains-captain-6", + "lineInfo": { + "dialogue": "Goodbye Gavel...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Captain" + }, + "settings": { + "falloff": 200 + } + } + ] + } + } + }, + "Lost Royalty": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "lostroyalty-yavlis-1", + "lineInfo": { + "dialogue": "Oh, hello there! I had hoped not to bother you, adventurer, but this is urgent.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Yavlis" + } + }, + { + "fileOverride": "lostroyalty-yavlis-2", + "lineInfo": { + "dialogue": "You see, the king is very...erm, distracted, and you are just the kind of willing, able-bodied person I need.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Yavlis" + } + }, + { + "fileOverride": "lostroyalty-yavlis-3", + "lineInfo": { + "dialogue": "You see, the king's son has gone missing, and with him worrying so much, the problems of the city have festered unsolved.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Yavlis" + } + }, + { + "fileOverride": "lostroyalty-yavlis-4", + "lineInfo": { + "dialogue": "We believe he was kidnapped by the splinter cell mercenaries in the jungle... Unfortunate, too. They used to be quite honourable.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Yavlis" + } + }, + { + "fileOverride": "lostroyalty-yavlis-5", + "lineInfo": { + "dialogue": "Well, anyway, they're usually spotted outside the run-down farm outside of town. Go there and see what they want in return for the young prince.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Yavlis" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "lostroyalty-mercenaryleader-1", + "lineInfo": { + "dialogue": "Excuse me?! What are you doing here, how did you find our secret hideout?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Mercenary Leader" + } + }, + { + "fileOverride": "lostroyalty-mercenaryleader-2", + "lineInfo": { + "dialogue": "Oh, you're here for the boy? A mighty fine steal, that one! The boy won't be leaving this establishment for free. I'll need some nice loot for him.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Mercenary Leader" + } + }, + { + "fileOverride": "lostroyalty-mercenaryleader-3", + "lineInfo": { + "dialogue": "Ah, but what to have you fetch... oh, haha! This would be a perfect opportunity to obtain that... Alright, ears open!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Mercenary Leader" + } + }, + { + "fileOverride": "lostroyalty-mercenaryleader-4", + "lineInfo": { + "dialogue": "There's a certain talisman that we aren't able to get to in the temple not far from here. It has special abilities that allow my men to be strengthened, see.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Mercenary Leader" + } + }, + { + "fileOverride": "lostroyalty-mercenaryleader-5", + "lineInfo": { + "dialogue": "The guardians there pack quite the punch, and there's some nasty mechanism in the way that we just can't crack.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Mercenary Leader" + } + }, + { + "fileOverride": "lostroyalty-mercenaryleader-6", + "lineInfo": { + "dialogue": "The temple is found just across the waterway, in a crevice in the mountain. It used to be blocked until those WynnExcavation fellows tried digging there.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Mercenary Leader" + } + }, + { + "fileOverride": "lostroyalty-mercenaryleader-7", + "lineInfo": { + "dialogue": "You get that talisman in my hands, and the king's boy is yours. Now off you pip! I'm a very busy man.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Mercenary Leader" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "lostroyalty-mercenaryleader-8", + "lineInfo": { + "dialogue": "You've gotten the talisman! I can't believe you actually got through that puzzle!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Mercenary Leader" + } + }, + { + "fileOverride": "lostroyalty-mercenaryleader-9", + "lineInfo": { + "dialogue": "At this point I would usually keep the kid and throw you out of here, but since you've done what I've asked in such a timely fashion, he's all yours.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Mercenary Leader" + } + }, + { + "fileOverride": "lostroyalty-mercenaryleader-10", + "lineInfo": { + "dialogue": "When you get back to whoever asked you to do this, tell him to leave my men and I alone! We guildsmen lay down our lives every day, we don't need any more hostile onlookers!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Mercenary Leader" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "lostroyalty-kingsson-1", + "lineInfo": { + "dialogue": "Uh... Hi? Err, why did you free me? I'm trying to run away, I hate being the son of the king.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Prince of Troms" + } + }, + { + "fileOverride": "lostroyalty-kingsson-2", + "lineInfo": { + "dialogue": "He expects too much of me! I hate politics, and I want to be a great mercenary like Tisaun, to help protect people that can't protect themselves!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Prince of Troms" + } + }, + { + "fileOverride": "lostroyalty-kingsson-3", + "lineInfo": { + "dialogue": "It's not like my father ever listened to me when I told him. He wouldn't even let me out of the castle.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Prince of Troms" + } + }, + { + "fileOverride": "lostroyalty-kingsson-4", + "lineInfo": { + "dialogue": "Could you please tell Yavlis that I want to be free? I would be grateful if you could.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Prince of Troms" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "lostroyalty-yavlis-6", + "lineInfo": { + "dialogue": "Ah, finally! You're back. Did they let you bring him back? Those mercenaries have an awful habit of failing to honour their deals.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Yavlis" + } + }, + { + "fileOverride": "lostroyalty-yavlis-7", + "lineInfo": { + "dialogue": "Wait, the prince said what? He truly wants to be a mercenary? Oh my... then he must have escaped on his own.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Yavlis" + } + }, + { + "fileOverride": "lostroyalty-yavlis-8", + "lineInfo": { + "dialogue": "Alright then, if that's the path the king's son chooses to walk, then there's nothing we can do.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Yavlis" + } + }, + { + "fileOverride": "lostroyalty-yavlis-9", + "lineInfo": { + "dialogue": "I can only hope that he chose to join them out of a will to protect the people, rather than simply brutishness or money.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Yavlis" + } + }, + { + "fileOverride": "lostroyalty-yavlis-10", + "lineInfo": { + "dialogue": "Such a shame that old guild has stooped to such a level. Well, we must thank you for your help. You can have the emerald ransom we had intended to pay.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Yavlis" + } + } + ] + } + } + }, + "Lost Sanctuary": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "lostsanctuary-garoth-1", + "lineInfo": { + "dialogue": "Ahhh.. Good timing. I needed someone to test my defenses.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "lostsanctuary-garoth-2", + "lineInfo": { + "dialogue": "I think you know who I am. The second human ever to be liberated by the portal. I now seek to purify this world.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garoth" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "lostsanctuary-garoth-3", + "lineInfo": { + "dialogue": "There is still a lot to be done it seems.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garoth" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "lostsanctuary-garoth-4", + "lineInfo": { + "dialogue": "I keep a lot of creatures here to conduct my experiments on, to test their vulnerabilities. I can't wait to find yours.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garoth" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "lostsanctuary-garoth-5", + "lineInfo": { + "dialogue": "Species are nothing to me. Thousands of creepers used to live here, I decimated them like it was nothing.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garoth" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "lostsanctuary-garoth-6", + "lineInfo": { + "dialogue": "Well, looks like I get to finally find out what humans are made of.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garoth" + } + } + ] + } + }, + "settings": { + "followPlayer": true + } + }, + "Lost Soles": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "lostsoles-ferndor-1", + "lineInfo": { + "dialogue": "Have you seen boots called Abysso Galoshes on your journey? A pirate stole them from us years ago! I could reward you if you could bring me the [Abysso Galoshes] and help us!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ferndor" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "lostsoles-ferndor-2", + "lineInfo": { + "dialogue": "I see you have the infamous galoshes with you. But do you know even half of the story of them?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Ferndor" + } + }, + { + "fileOverride": "lostsoles-ferndor-3", + "lineInfo": { + "dialogue": "The boots were once owned by my ancestors, who decided to lock it away in this manor years ago.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Ferndor" + } + }, + { + "fileOverride": "lostsoles-ferndor-4", + "lineInfo": { + "dialogue": "Nobody knows why they decided to hide the boots just after they got into my family's hands. I was told they were acquired from a strange man with pale grey skin.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Ferndor" + } + }, + { + "fileOverride": "lostsoles-ferndor-5", + "lineInfo": { + "dialogue": "We think they hid the boots in some kind of basement in the manor. You can get to it by following the river to the waterfall, but you will need some kind of code to open it...", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Ferndor" + } + }, + { + "fileOverride": "lostsoles-ferndor-6", + "lineInfo": { + "dialogue": "I remember Grandon saying that he found a book which is apparently a diary from one of my ancestors. Ever since that filthy pirate raided our home and stole our treasures, weird things have been happening.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Ferndor" + } + }, + { + "fileOverride": "lostsoles-ferndor-7", + "lineInfo": { + "dialogue": "Grandon should already have finished reading it. If I allow you to enter my home, would you talk to him?", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Ferndor" + } + }, + { + "fileOverride": "lostsoles-ferndor-8", + "lineInfo": { + "dialogue": "There are strange things going on in this mansion and I hope that book reveals everything we need to know...", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Ferndor" + } + }, + { + "fileOverride": "lostsoles-ferndor-9", + "lineInfo": { + "dialogue": "I almost forgot to give you your boots back, I am not sure if I want to have them near me. Remember, it is imperative you find the 4 digit code to the basement.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Ferndor" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "lostsoles-grandon-1", + "lineInfo": { + "dialogue": "Ferndor sent you here, correct? That must mean you’re here to help find the hidden 4 digit code in the manor.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-2", + "lineInfo": { + "dialogue": "The book is actually a diary written by our ancestors decades ago. It is actually very interesting, how they remodeled almost the whole house.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-3", + "lineInfo": { + "dialogue": "Ferndor probably told you about the boots, right? The diary has some information about them...ah, here, on this page.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-4", + "lineInfo": { + "dialogue": "Here...our family bought them from \"a dark and mysterious humanoid creature\" a long time ago.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-5", + "lineInfo": { + "dialogue": "The boots were apparently so valuable that the creature as part of the deal, said they put some kind of spell on them, but that was a lie.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-6", + "lineInfo": { + "dialogue": "It was found that the boots themselves were horrendously powerful, imbued with dark magic that will deteriorate and decay everything around it over time.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-7", + "lineInfo": { + "dialogue": "They were given a special boot container with similar effects, but when the Galoshes are within the Container, they cancel each others' effects out.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-8", + "lineInfo": { + "dialogue": "They hid the boots in the mansion, along with the case. The writer of this diary wrote down some hints as to how to get to them, maybe you can find out what they mean. Here, try this one:", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-9", + "lineInfo": { + "dialogue": "\"The face above the hall owns the nose that needs to be heavier to open the way\".", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-10", + "lineInfo": { + "dialogue": "Hmm, all the hints appear in a chapter about this room, the dining hall. Any idea what this meant? It feels like it should be obvious, but I can't for the life of me figure this out.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Grandon" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "lostsoles-grandon-11", + "lineInfo": { + "dialogue": "\"Throw something behind the map on the wall to uncover a piece of the code\"? Wait, that probably means the code to the basement!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Grandon" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "lostsoles-grandon-12", + "lineInfo": { + "dialogue": "A room hidden underneath the big head? Why didn't I think of that!? I always wondered how self-centered they had to be to put that in, but who knew it actually had a valid purpose!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-13", + "lineInfo": { + "dialogue": "So, there was a sign telling you to look for stone in the corner? Hm...intriguing!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-14", + "lineInfo": { + "dialogue": "Whoever placed down that sign might have meant a secret way up to the second floor. It hasn't been accessible for a fairly long while, not since the stairs collapsed. Except for Leacen, but she's a bit crazy...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-15", + "lineInfo": { + "dialogue": "Anyway, seems they guessed that we would have to search for a way to return the boots, and made preparations. Good thing, that.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-16", + "lineInfo": { + "dialogue": "As I said, the stairs are all broken. I mean, I certainly couldn't climb up those rotten scraps of wood. Suppose it might be best to look for that stone, hm?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-17", + "lineInfo": { + "dialogue": "But where could it be...oh? Is this a hint? I just noticed this on the next page.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-18", + "lineInfo": { + "dialogue": "\"The carpet of different colour will show you the stone to reveal the tables secret\".", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Grandon" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "lostsoles-grandon-19", + "lineInfo": { + "dialogue": "Sheesh! Quite the engineers, these old fellows! Never would've imagined any of this in the house. Anyway, was there a message? What did it say?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-20", + "lineInfo": { + "dialogue": "The hole nobody wanted? He can only mean the little rat hole in the back part of this hall. Though, it's more just a hole anymore, all the rats are gone.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-21", + "lineInfo": { + "dialogue": "Well, details, details. We never checked it any more than just laying mouse traps, so I suppose there could be something in there given how complex these contraptions have been.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-22", + "lineInfo": { + "dialogue": "I would say, you look into the hole and then search on top of the blue flags!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-23", + "lineInfo": { + "dialogue": "But if that's the way up to the second floor, what does the diary mean by this?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-24", + "lineInfo": { + "dialogue": "\"Throw something behind the map on the wall to uncover a piece of the code\"? Wait, that probably means the code to the basement! Come back to me at once when you've done that, I have more to tell you!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Grandon" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "lostsoles-grandon-25", + "lineInfo": { + "dialogue": "You found a piece of the code!? Hahah, excellent! I must say, you've made more progress in a few minutes than I have in a few years! You humans really are something!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-26", + "lineInfo": { + "dialogue": "Now, the diary now says you must make your way to the second floor to find the other 3 digits of the code.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-27", + "lineInfo": { + "dialogue": "Remember, to get up to the second floor you need to use the button in the rat hole to open the passage above the blue flags hanging from the ceiling.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-28", + "lineInfo": { + "dialogue": "It doesn't say where they are, just that they're well hidden and that there are additional clues around the house. The other 3 digits should all be up there on the second floor! Maybe Leacen has seen something about them while she's been up there, as well.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-29", + "lineInfo": { + "dialogue": "Once you've found the whole code, head to the basement. Just follow the path and signs outside the manor once you have it.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Grandon" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "lostsoles-ferndor-10", + "lineInfo": { + "dialogue": "So you have the container and the boots! I wish I would have gone with you...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Ferndor" + } + }, + { + "fileOverride": "lostsoles-ferndor-11", + "lineInfo": { + "dialogue": "At least we can stop the manor's slow decay! Let me just put the boots into the container...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Ferndor" + } + }, + { + "fileOverride": "lostsoles-ferndor-12", + "lineInfo": { + "dialogue": "That was easy. I still can not believe that such a small thing can cause so much trouble.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ferndor" + } + }, + { + "fileOverride": "lostsoles-ferndor-13", + "lineInfo": { + "dialogue": "Well, I can not just let you stand there without a reward, right?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ferndor" + } + }, + { + "fileOverride": "lostsoles-ferndor-14", + "lineInfo": { + "dialogue": "Here, how about some emeralds, and these boots? They're heirlooms given to my family by the Sodeta Guild who once owned this mansion. I promise they aren’t evil! Feel free to visit us at any time!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Ferndor" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "lostsoles-ferndor-15", + "lineInfo": { + "dialogue": "Now that the boots are back in place, we only need to repair the mansion, and we can live normally again!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ferndor" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "lostsoles-grandon-30", + "lineInfo": { + "dialogue": "This building has such rich history, it would've been an absolute shame to have lost it over just a pair of silly old boots.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Grandon" + } + }, + { + "fileOverride": "lostsoles-grandon-31", + "lineInfo": { + "dialogue": "I mean, what would the Sodetas have thought? Well, I guess they probably wouldn't come all the way over from the Guild Hall to check anymore, but...still.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Grandon" + } + } + ] + } + } + }, + "Lost Tower": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "losttower-laen-1", + "lineInfo": { + "dialogue": "Hey, adventurer! Would you mind helping me for a second? I have a bit of a problem on my hands.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Laen" + } + }, + { + "fileOverride": "losttower-laen-2", + "lineInfo": { + "dialogue": "A long time ago, before Ancient Nemract was destroyed, my family used to own quite an interesting book, that held knowledge of places and beings of great power.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Laen" + } + }, + { + "fileOverride": "losttower-laen-3", + "lineInfo": { + "dialogue": "Unfortunately, a creature stole it from them during the attack that led to the destruction of Ancient Nemract, and no one has seen it since.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Laen" + } + }, + { + "fileOverride": "losttower-laen-4", + "lineInfo": { + "dialogue": "If you are willing to help, bring me [1 Book of the Bones], I believe this book is now between the hands of skeletons, in an old tower in Ancient Nemract.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Laen" + } + }, + { + "fileOverride": "losttower-laen-5", + "lineInfo": { + "dialogue": "See if you can find this tower, one of the skeletons probably has the book somewhere in there.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Laen" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "losttower-laen-6", + "lineInfo": { + "dialogue": "Great! This will be very interesting to read, thank you!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Laen" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "losttower-laen-7", + "lineInfo": { + "dialogue": "I have a task for you, but you are...perhaps a bit ill-equipped? Come back when you are level 26.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Laen" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "losttower-laen-8", + "lineInfo": { + "dialogue": "Thank you for your help!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Laen" + } + } + ] + } + } + }, + "Lost in the Jungle": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "lostinthejungle-gracen-1", + "lineInfo": { + "dialogue": "Excuse me, traveller... I am dreadfully sorry to ask this of you, but I need your help.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Gracen" + } + }, + { + "fileOverride": "lostinthejungle-gracen-2", + "lineInfo": { + "dialogue": "You see, my son, Aryn. Very recently, he underwent a traditional coming-of-age ceremony from our tribe.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Gracen" + } + }, + { + "fileOverride": "lostinthejungle-gracen-3", + "lineInfo": { + "dialogue": "He was tasked to enter the dangerous Dernel Jungle, just south of here, and brave the wilderness for three days. He returned a true man, successful.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Gracen" + } + }, + { + "fileOverride": "lostinthejungle-gracen-4", + "lineInfo": { + "dialogue": "However... He also brought with him an odd purple gemstone. Our shaman saw it as a bad omen, but I was so caught up in the celebrations, I brushed it off.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Gracen" + } + }, + { + "fileOverride": "lostinthejungle-gracen-5", + "lineInfo": { + "dialogue": "Strange happenings began around the village. Aryn walked about at night, talking to someone, but no one else was there with him.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Gracen" + } + }, + { + "fileOverride": "lostinthejungle-gracen-6", + "lineInfo": { + "dialogue": "Just last sunrise, he vanished entirely. We sent out a search for him, but even our hardiest warriors could not venture deep into the jungle.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Gracen" + } + }, + { + "fileOverride": "lostinthejungle-gracen-7", + "lineInfo": { + "dialogue": "We returned empty-handed, having lost our newest tribesman. The village is in terrible spirits, and I feel as though I am responsible.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Gracen" + } + }, + { + "fileOverride": "lostinthejungle-gracen-8", + "lineInfo": { + "dialogue": "You Wynn warriors, however... Great stories are told of your exploits. Surely, you will be able to brave the jungle, yes?", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Gracen" + } + }, + { + "fileOverride": "lostinthejungle-gracen-9", + "lineInfo": { + "dialogue": "I beg of you, please, find my son. I do not know quite where he is, but undoubtedly he has been taken quite a ways in...", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Gracen" + } + }, + { + "fileOverride": "lostinthejungle-gracen-10", + "lineInfo": { + "dialogue": "Hm, I just now am seeing a strange trail on the ground... it matches the color of the gemstone! It may take you to him, please, follow it!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Gracen" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "lostinthejungle-aryn-1", + "lineInfo": { + "dialogue": "P-please, I beg of you spirit, let me go free! The tribesmen must be so worried-", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Aryn" + }, + "settings": { + "falloff": 50, + "position": { + "x": -699.0, + "y": 8.0, + "z": -354.0 + } + } + }, + { + "fileOverride": "lostinthejungle-possessedaryn-1", + "lineInfo": { + "dialogue": "DO NOT RESIST, BOY! YOUR BODY IS MINE. I WAS TRAPPED IN THAT STONE FOR MILLENIA, AND NOW I AM FREE.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Aryn?" + }, + "settings": { + "falloff": 40, + "position": { + "x": -699.0, + "y": 8.0, + "z": -354.0 + } + } + }, + { + "fileOverride": "lostinthejungle-aryn-2", + "lineInfo": { + "dialogue": "Aha, I hear someone coming! Surely a tribesman here to rescue me!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Aryn" + }, + "settings": { + "falloff": 30, + "position": { + "x": -699.0, + "y": 8.0, + "z": -354.0 + } + } + }, + { + "fileOverride": "lostinthejungle-possessedaryn-2", + "lineInfo": { + "dialogue": "Oh! If so, the body of this warrior will be far better suited to my needs! Grant me your power, boy! I need to thrash them first to possess them!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Aryn?" + }, + "settings": { + "position": { + "x": -2398.0, + "y": 8.0, + "z": -821.0 + } + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "lostinthejungle-aryn-3", + "lineInfo": { + "dialogue": "Hahah, take that, evil wraith! You'll never match the power of our tribe-", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Aryn" + } + }, + { + "fileOverride": "lostinthejungle-aryn-4", + "lineInfo": { + "dialogue": "W-wait, you aren't part of our tribe! Who are you, why did you come here?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Aryn" + } + }, + { + "fileOverride": "lostinthejungle-aryn-5", + "lineInfo": { + "dialogue": "Oh... My father sent you? Well, I am very impressed, Wynn warrior. You fight with the ferocity of our own!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Aryn" + } + }, + { + "fileOverride": "lostinthejungle-aryn-6", + "lineInfo": { + "dialogue": "I...can't say the same for myself. That spirit completely overtook me, I still can't move right now...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Aryn" + } + }, + { + "fileOverride": "lostinthejungle-aryn-7", + "lineInfo": { + "dialogue": "For now, please. Take away this gemstone. It caused all this, I don't want to be near such a bad luck charm.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Aryn" + } + }, + { + "fileOverride": "lostinthejungle-aryn-8", + "lineInfo": { + "dialogue": "Tell the tribe that I will return on my own. I made it back once, I can do it again once I am prepared.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Aryn" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "lostinthejungle-gracen-11", + "lineInfo": { + "dialogue": "Oh my... Aryn was possessed by a spirit residing within the gemstone?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Gracen" + } + }, + { + "fileOverride": "lostinthejungle-gracen-12", + "lineInfo": { + "dialogue": "How shameful... Our shaman has never been wrong before, why did I disregard his warning...", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Gracen" + } + }, + { + "fileOverride": "lostinthejungle-gracen-13", + "lineInfo": { + "dialogue": "But that is beside the point. You say you have destroyed the spirit, and it does not feel tainted any longer, so I will trust you.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Gracen" + } + }, + { + "fileOverride": "lostinthejungle-gracen-14", + "lineInfo": { + "dialogue": "Looking at it now, this is actually quite a valuable stone. If crushed to dust, it can be used in special charms we make.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Gracen" + } + }, + { + "fileOverride": "lostinthejungle-gracen-15", + "lineInfo": { + "dialogue": "Here, allow me to grind this down for you. You can keep the shards for whatever purposes you may find for them in the future.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Gracen" + } + }, + { + "fileOverride": "lostinthejungle-gracen-16", + "lineInfo": { + "dialogue": "Our tribe, and especially myself... We thank you for your service. We shall consider you one of our own, from this day forward.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Gracen" + } + }, + { + "fileOverride": "lostinthejungle-gracen-17", + "lineInfo": { + "dialogue": "In fact, if you'd like, you may even enter my house here whenever you'd like.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Gracen" + } + } + ] + } + } + }, + "Macabre Masquerade": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "macabremasquerade-masksalesman-1", + "lineInfo": { + "dialogue": "Hmm... Let's see, wha- Ah! Oh, pardon me, I was distracted. Luckily you're here, because I require some assistance.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Mask Salesman" + } + }, + { + "fileOverride": "macabremasquerade-masksalesman-2", + "lineInfo": { + "dialogue": "You see, I was just on my way back from that large mansion near Nesaak, where I went to acquire some antiques from an old business partner.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Mask Salesman" + } + }, + { + "fileOverride": "macabremasquerade-masksalesman-3", + "lineInfo": { + "dialogue": "However, along the way, a valuable cursed mask escaped from my caravan and somehow made its way into the dark mine over there!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Mask Salesman" + } + }, + { + "fileOverride": "macabremasquerade-masksalesman-4", + "lineInfo": { + "dialogue": "I would've gone after it, but the things I have in this caravan are too important to leave by themselves. Not to mention that the cave seemed to corrupt from the inside out...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Mask Salesman" + } + }, + { + "fileOverride": "macabremasquerade-masksalesman-5", + "lineInfo": { + "dialogue": "You must help me retrieve the mask, for I must depart in 3 days! Could you brave the shadowy cave and bring it back?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Mask Salesman" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "macabremasquerade-masksalesman-6", + "lineInfo": { + "dialogue": "You've met a terrible fate, haven't you? I was just about to run the whole way to Nemract to get help.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Mask Salesman" + } + }, + { + "fileOverride": "macabremasquerade-masksalesman-7", + "lineInfo": { + "dialogue": "I would really like to hear what you encountered in that cave, but I must prepare to leave, for I have many masks to sell on a far away continent.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Mask Salesman" + } + }, + { + "fileOverride": "macabremasquerade-masksalesman-8", + "lineInfo": { + "dialogue": "Maybe you can visit me at some point, if our paths were to ever cross again. Then we could talk about your journey.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Mask Salesman" + } + }, + { + "fileOverride": "macabremasquerade-masksalesman-9", + "lineInfo": { + "dialogue": "To thank you for your help, I wanted to give you a special mask, but I'm out of it. Maybe next year?", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Mask Salesman" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "macabremasquerade-masksalesman-10", + "lineInfo": { + "dialogue": "If you ever need something in the future, you should visit me in my homeland.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mask Salesman" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "macabremasquerade-masksalesman-11", + "lineInfo": { + "dialogue": "I can't talk right now. I've lost something rather valuable, and I need to get it back quickly, because I'm only staying here for a couple of weeks. Please come back when you're level 21.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mask Salesman" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "macabremasquerade-masksalesman-12", + "lineInfo": { + "dialogue": "Please help me find that mask! It's very valuable.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mask Salesman" + } + } + ] + } + } + }, + "Maltic's Well": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "malticwell-rynend-1", + "lineInfo": { + "dialogue": "Please help us! We called for a Ragni guard days ago, but Humans tend to forget this little village.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Rynend" + } + }, + { + "fileOverride": "malticwell-rynend-2", + "lineInfo": { + "dialogue": "Last week, an evil witch found refuge in our old well. Normally this wouldn't be a problem...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Rynend" + } + }, + { + "fileOverride": "malticwell-rynend-3", + "lineInfo": { + "dialogue": "But she's lured my child into the well! My only child! He was born in Wynn, that makes him a Wynn citizen!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Rynend" + } + }, + { + "fileOverride": "malticwell-rynend-4", + "lineInfo": { + "dialogue": "Please do something! I know Maltic isn't of importance to you humans, being a Villager settlement, but...my son!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Rynend" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "malticwell-child-1", + "lineInfo": { + "dialogue": "Help me! Someone! The witch is being mean!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Child" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "malticwell-witch-1", + "lineInfo": { + "dialogue": "I wondered when they'd send the famous Ragni guards. You'll never get me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Witch" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "malticwell-witch-2", + "lineInfo": { + "dialogue": "I don't know why they call me a witch. Magic is everywhere, you know. This one's father made fun of my looks, so I'll turn his son into a Grook!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Witch" + } + }, + { + "fileOverride": "malticwell-witch-3", + "lineInfo": { + "dialogue": "Treat me like a witch, I'll act like one, darn it! You'll have to pass through my dastardly magical defenses to find me!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Witch" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "malticwell-witch-4", + "lineInfo": { + "dialogue": "Oh...drat. I never could get that spell right. Well, now you'll have to guess the way, um, you fool! Turn back now, for, uh...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Witch" + } + }, + { + "fileOverride": "malticwell-witch-5", + "lineInfo": { + "dialogue": "...for if you choose the wrong door, you'll be sent to a beast, a beast most foul! The, um...the Beast-What-Eats-Ragni-Guards-For-Brunch!! Totally!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Witch" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "malticwell-witch-6", + "lineInfo": { + "dialogue": "Oh...didn't think that'd fool you. You know, I'm really not all that good at magic. I just like wearing pointy hats, and have warts.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Witch" + } + }, + { + "fileOverride": "malticwell-witch-7", + "lineInfo": { + "dialogue": "Maybe if the people of this village weren't so mean to me, I wouldn't have been forced to live here.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Witch" + } + }, + { + "fileOverride": "malticwell-witch-8", + "lineInfo": { + "dialogue": "I know it's a crime, but his father and the rest of the villagers here hunt me like I'm a rabid dog!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Witch" + } + }, + { + "fileOverride": "malticwell-witch-9", + "lineInfo": { + "dialogue": "I wasn't really going to turn this boy into a Grook. I doubt I could even make him grow one feather. I mean, watch...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Witch" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "malticwell-child-2", + "lineInfo": { + "dialogue": "Thank you for saving me from the witch... She was nice at first and made me cookies, but I want to go home now.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Child" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "malticwell-rynend-5", + "lineInfo": { + "dialogue": "Oh my son! What happened down there? Erh, not a witch, you say?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Rynend" + } + }, + { + "fileOverride": "malticwell-rynend-6", + "lineInfo": { + "dialogue": "Preposterous! She wore a hat and had warts! I guess it's too late now... Thank you so much for your help.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Rynend" + } + }, + { + "fileOverride": "malticwell-rynend-7", + "lineInfo": { + "dialogue": "Please take this [1 Maltic Recommendation Letter], I am sure it will help you someday!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Rynend" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "malticwell-rynend-8", + "lineInfo": { + "dialogue": "Come back to me when you're level 16, we need a strong hero to help our town!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Rynend" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "malticwell-rynend-9", + "lineInfo": { + "dialogue": "Please save my son! Bring me proof of the dead witch too.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Rynend" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "malticwell-rynend-10", + "lineInfo": { + "dialogue": "I cannot thank you enough for your help!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Rynend" + } + } + ] + } + } + }, + "Master Piece": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "masterpiece-caissop-1", + "lineInfo": { + "dialogue": "...hm...mh!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-2", + "lineInfo": { + "dialogue": "Oh sorry, I didn't notice you. Did you want an autograph?", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-3", + "lineInfo": { + "dialogue": "Wait, no? Don't you know who I am?! It seems like you have no taste in art... I am Caissop, the legendary artist!", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-4", + "lineInfo": { + "dialogue": "Though, since you are not a fan... Perhaps you can help me? I am looking for a new assistant.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-5", + "lineInfo": { + "dialogue": "Excellent... I need your help to find three legendary creatures that are hiding in caves around the swamp.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-6", + "lineInfo": { + "dialogue": "I actually know their location, but unfortunately, I am...blind.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-7", + "lineInfo": { + "dialogue": "For me to do my work I need to imagine them! That's where you come in. I need you to find them and describe them to me!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-8", + "lineInfo": { + "dialogue": "Would you turn your back on a blind man?! I need you to give me an accurate description of them! Once you have found one, come back and describe it to me exactly!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-9", + "lineInfo": { + "dialogue": "The first cave is up a hill with tall, thin-leafed flowers. They smell pink to me, and of this I am certain.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Caissop" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "masterpiece-caissop-10", + "lineInfo": { + "dialogue": "Quick! Describe it to me! Go on!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Caissop" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "masterpiece-caissop-32", + "lineInfo": { + "dialogue": "Quick! Describe it to me! Go on!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-11", + "lineInfo": { + "dialogue": "Brown...big-nosed... A Villager Cow, you say!?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-12", + "lineInfo": { + "dialogue": "...OH, YES! ......... INSPIRED.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-13", + "lineInfo": { + "dialogue": "...MH, NO, A LITTLE MORE RED!..... YES!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-14", + "lineInfo": { + "dialogue": "Haha! This is WONDERFUL! I'm not going to show it to you before it is finished!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-15", + "lineInfo": { + "dialogue": "Savor the ideas! So now, I need you to go to the second cave...", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-16", + "lineInfo": { + "dialogue": "It is down a road, with short, round-cupped flowers. Those ones smell orange to me!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-17", + "lineInfo": { + "dialogue": "Hurry! I'll finish this animal while you are gone. OH, YES. MUY MACHO.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Caissop" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "masterpiece-caissop-18", + "lineInfo": { + "dialogue": "You're here! Quick! Don't look at me, describe it!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-19", + "lineInfo": { + "dialogue": "Snowy white, a large horn... A Unicorn Sheep, you say?!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-20", + "lineInfo": { + "dialogue": "...OH YES, THE WOOL IS REAL... MORE SWIPING... OH YES, BIEN!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-21", + "lineInfo": { + "dialogue": "... THIS IS UNIQUE, REMARKABLE, YES. SUPERNATURAL!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-22", + "lineInfo": { + "dialogue": "The last creature! Red-smelling flowers, prickly thorns, hurry, mucho inspired!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-23", + "lineInfo": { + "dialogue": "...OH, NO, NO. YES! MORE COLOUR, MORE PAINT! I'M OUT OF RED!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-24", + "lineInfo": { + "dialogue": "I'LL JUST USE MY BLOOD! OH! YES! ...INSPIRED! REMARKABLE! Huh? Why are you still here? Go! I need that last description!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Caissop" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "masterpiece-caissop-25", + "lineInfo": { + "dialogue": "You're finally back! I just finished the last one. Go! Describe it!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-26", + "lineInfo": { + "dialogue": "...Oh, yes... YES. I LOVE IT.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-27", + "lineInfo": { + "dialogue": "It's...A Pigasus! WHAT A NAME!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-28", + "lineInfo": { + "dialogue": "...OH YES, WINGS! EYES FROM HEAVEN! OH, YES.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-29", + "lineInfo": { + "dialogue": "Och, perfect. The final touch and, done! You were so inspiring that I made two! One for you, and one for me!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-30", + "lineInfo": { + "dialogue": "You might want to hold onto that, big-town upper class Villagers pay through the roof for Caissop's work!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Caissop" + } + }, + { + "fileOverride": "masterpiece-caissop-31", + "lineInfo": { + "dialogue": "Thank you for your assistance, what a rush! Good luck on your Gavel adventure!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Caissop" + } + } + ] + } + } + }, + "Meaningful Holiday": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-haily-1", + "lineInfo": { + "dialogue": "Hello, dear. My name is Haily. Nice to meet you.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Haily" + } + }, + { + "fileOverride": "meaningfulholiday-haily-2", + "lineInfo": { + "dialogue": "This is the Almuj charity center. We're looking for volunteers to help the homeless this year.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Haily" + } + }, + { + "fileOverride": "meaningfulholiday-haily-3", + "lineInfo": { + "dialogue": "If you want to help someone else this year, our boss Nick is already out in the thick of it.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Haily" + } + }, + { + "fileOverride": "meaningfulholiday-haily-4", + "lineInfo": { + "dialogue": "He's a really special man. I'll write his location down for you in your book. Oh, remember this is charity work, so hopefully gratitude is a good enough reward for you.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Haily" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-haily-5", + "lineInfo": { + "dialogue": "The world needs more people like you, so selfless.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Haily" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-haily-6", + "lineInfo": { + "dialogue": "We're looking for volunteers for the holiday season.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Haily" + } + }, + { + "fileOverride": "meaningfulholiday-haily-7", + "lineInfo": { + "dialogue": "Come back when you're level 33.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Haily" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-haily-8", + "lineInfo": { + "dialogue": "So, how is it going? Did you find Nick in the slum?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Haily" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-nick-1", + "lineInfo": { + "dialogue": "Oh. Oh... Oh dear. There's more people here than ever.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-2", + "lineInfo": { + "dialogue": "Hm, are you just passing through? Oh! A volunteer!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-3", + "lineInfo": { + "dialogue": "You're the only one this year. Things have really changed. We used to have hundreds of volunteers this time of year.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-4", + "lineInfo": { + "dialogue": "The people here are starving. There's no two ways about it.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-5", + "lineInfo": { + "dialogue": "I don't know how we're going to feed everyone this year.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-6", + "lineInfo": { + "dialogue": "The man who runs the budget store used to be homeless... He knows the struggles they face.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-7", + "lineInfo": { + "dialogue": "I'll look after things here. Can you go to the budget store? It's really close. Any food is gratefully received.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Nick" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-flodur-1", + "lineInfo": { + "dialogue": "'ello young soldier.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Flodur" + } + }, + { + "fileOverride": "meaningfulholiday-flodur-2", + "lineInfo": { + "dialogue": "What can I do fer ye?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Flodur" + } + }, + { + "fileOverride": "meaningfulholiday-flodur-3", + "lineInfo": { + "dialogue": "A food donation fer the 'omless?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Flodur" + } + }, + { + "fileOverride": "meaningfulholiday-flodur-4", + "lineInfo": { + "dialogue": "I'm sorry but everyfin is sold out, everyone is preparing for Craftmas.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Flodur" + } + }, + { + "fileOverride": "meaningfulholiday-flodur-5", + "lineInfo": { + "dialogue": "I might have something on the attic, if you find anyfin, you can 'ave it. I know how difficult it gets.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Flodur" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-flodur-6", + "lineInfo": { + "dialogue": "Hm... This apple has seen betta days...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Flodur" + } + }, + { + "fileOverride": "meaningfulholiday-flodur-7", + "lineInfo": { + "dialogue": "Looks like I'm fresh outta food. Barely got enough to feed meself.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Flodur" + } + }, + { + "fileOverride": "meaningfulholiday-flodur-8", + "lineInfo": { + "dialogue": "I wish I had something to give this year. I guess people are having a feast in the city.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Flodur" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-nick-8", + "lineInfo": { + "dialogue": "Any news?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-9", + "lineInfo": { + "dialogue": "I see. I was counting on him.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-10", + "lineInfo": { + "dialogue": "I can't be too upset. He donates so much the rest of the year.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-11", + "lineInfo": { + "dialogue": "We may have to ask the farmers directly...", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-12", + "lineInfo": { + "dialogue": "I know someone in Ternaves with a kind heart.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-13", + "lineInfo": { + "dialogue": "We've fallen out before, seems he didn't understand what a donation was.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-14", + "lineInfo": { + "dialogue": "There is a shortcut south from here, in a cave. Go through there.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-15", + "lineInfo": { + "dialogue": "Oh, also, can you give this blanket to Margaret while you're down in the tunnel? Just follow the road behind me.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Nick" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-margaret-1", + "lineInfo": { + "dialogue": "Oh, please don't move me along. I have no where else to go!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Margaret" + } + }, + { + "fileOverride": "meaningfulholiday-margaret-2", + "lineInfo": { + "dialogue": "Oh, a blanket for me? How sweet... From Nick, you say? He's always so kind... Thank you, as well.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Margaret" + } + }, + { + "fileOverride": "meaningfulholiday-margaret-3", + "lineInfo": { + "dialogue": "If you want to get to Ternaves quickly, just keep going through this tunnel. Some unfriendly homeless folks live around here too, so be careful. It's so sad, their state.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Margaret" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-reshad-1", + "lineInfo": { + "dialogue": "Welcome to my farm! Looking to buy some of my fresh crops?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Reshad" + } + }, + { + "fileOverride": "meaningfulholiday-reshad-2", + "lineInfo": { + "dialogue": "Well, it seems you're out of luck. I've just sold the last of them from this harvest.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Reshad" + } + }, + { + "fileOverride": "meaningfulholiday-reshad-3", + "lineInfo": { + "dialogue": "It was all for that big Craftmas feast happening in Detlas. Wish I could help you out, but I'm fresh out of food to sell you.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Reshad" + } + }, + { + "fileOverride": "meaningfulholiday-reshad-4", + "lineInfo": { + "dialogue": "Wait, I bet Nick sent you, didn't he? Well, he's coming up on your left. Remind him that this isn't a charity.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Reshad" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-nick-16", + "lineInfo": { + "dialogue": "Hey, soldier! Any luck?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-17", + "lineInfo": { + "dialogue": "We can't get any food? We're running out of options here...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-18", + "lineInfo": { + "dialogue": "Well, there's only one person left that we can appeal to at this time of year.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-19", + "lineInfo": { + "dialogue": "Follow me.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Nick" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-santa-1", + "lineInfo": { + "dialogue": "Nick... You know the deal.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "meaningfulholiday-santa-2", + "lineInfo": { + "dialogue": "The council all have their areas to care for. Yours is Almuj. How you care for it is your responsibility.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "meaningfulholiday-nick-20", + "lineInfo": { + "dialogue": "There's five times more homeless and hungry than last year!", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-santa-3", + "lineInfo": { + "dialogue": "Nick, I know times are tough there, but-", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "meaningfulholiday-nick-21", + "lineInfo": { + "dialogue": "Tough?! It's impossible! What happened to people's good will? I had one volunteer this year! ONE!", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-santa-4", + "lineInfo": { + "dialogue": "I'm sorry Nick. You could go to Detlas and ask there, they have a feast big enough to feed an army!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "meaningfulholiday-nick-22", + "lineInfo": { + "dialogue": "Hmmm... Oh, sorry. I miscalculated your journey here. Good to see you.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-23", + "lineInfo": { + "dialogue": "I suppose you heard Santa and I. Our next location is Detlas.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-santa-5", + "lineInfo": { + "dialogue": "Alright, that's settled then. Leave through the fireplace behind me, it will bring you directly to Detlas. Good luck, Nick.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Santa" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-nick-24", + "lineInfo": { + "dialogue": "Wow. The people here live in such grandure. I wonder if they know people are starving to the east.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-25", + "lineInfo": { + "dialogue": "Let's ask around for some donations.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-26", + "lineInfo": { + "dialogue": "More importantly, let's hope they'll share a trifle of food.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Nick" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-server-1", + "lineInfo": { + "dialogue": "What are you doing here?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Server" + } + }, + { + "fileOverride": "meaningfulholiday-server-2", + "lineInfo": { + "dialogue": "This event is invite-only.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Server" + } + }, + { + "fileOverride": "meaningfulholiday-server-3", + "lineInfo": { + "dialogue": "You aren't even in a formal dress.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Server" + } + }, + { + "fileOverride": "meaningfulholiday-server-4", + "lineInfo": { + "dialogue": "What do you want?!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Server" + } + }, + { + "fileOverride": "meaningfulholiday-server-5", + "lineInfo": { + "dialogue": "Food? You want food? Does this look like a charity to you?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Server" + } + }, + { + "fileOverride": "meaningfulholiday-server-6", + "lineInfo": { + "dialogue": "Of course not! We have an obligation to feed our partygoers, not some poor scraps of men in the desert!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Server" + } + }, + { + "fileOverride": "meaningfulholiday-server-7", + "lineInfo": { + "dialogue": "Now get out of here before I call the security golems. And don't even think of stealing from the kitchen!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Server" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-server-8", + "lineInfo": { + "dialogue": "Hey! Don't you dare go stealing from the kitchen!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Server" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-server-9", + "lineInfo": { + "dialogue": "Get out before I call the guards!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Server" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-server-10", + "lineInfo": { + "dialogue": "Are you back here again?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Server" + } + }, + { + "fileOverride": "meaningfulholiday-server-11", + "lineInfo": { + "dialogue": "Nick really changed people's minds. Sorry about what I said.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Server" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-nick-27", + "lineInfo": { + "dialogue": "Were you able to get any food?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-28", + "lineInfo": { + "dialogue": "You do?! I didn't expect them to be so generous, a whole crate?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-29", + "lineInfo": { + "dialogue": "...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-30", + "lineInfo": { + "dialogue": "Oh...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-31", + "lineInfo": { + "dialogue": "Stealing is not in the Craftmas spirit... But I think I can make this work.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-32", + "lineInfo": { + "dialogue": "Go on ahead. I have a plan. Don't worry, I'll return all this food.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Nick" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-nick-33", + "lineInfo": { + "dialogue": "Listen up everyone!", + "line": { + "current": 1, + "max": 13 + }, + "npc": "Nick" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "meaningfulholiday-nick-34", + "lineInfo": { + "dialogue": "I know you are hungry. Because I am too.", + "line": { + "current": 2, + "max": 13 + }, + "npc": "Nick" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "meaningfulholiday-nick-35", + "lineInfo": { + "dialogue": "But your dinner will not be served tonight.", + "line": { + "current": 3, + "max": 13 + }, + "npc": "Nick" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "meaningfulholiday-nick-36", + "lineInfo": { + "dialogue": "There will be no Craftmas feast this year!", + "line": { + "current": 4, + "max": 13 + }, + "npc": "Nick" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "meaningfulholiday-nick-37", + "lineInfo": { + "dialogue": "This one night, this one missed meal.", + "line": { + "current": 5, + "max": 13 + }, + "npc": "Nick" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "meaningfulholiday-nick-38", + "lineInfo": { + "dialogue": "This is how thousands of people live every day.", + "line": { + "current": 6, + "max": 13 + }, + "npc": "Nick" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "meaningfulholiday-nick-39", + "lineInfo": { + "dialogue": "Hungry, wondering when the food will be available.", + "line": { + "current": 7, + "max": 13 + }, + "npc": "Nick" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "meaningfulholiday-nick-40", + "lineInfo": { + "dialogue": "And while you sit there with empty stomachs be thankful for what you have. Spare a thought for those who have not.", + "line": { + "current": 8, + "max": 13 + }, + "npc": "Nick" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "meaningfulholiday-nick-41", + "lineInfo": { + "dialogue": "Hundreds of men, women and children, just like you, will not eat tonight, at all.", + "line": { + "current": 9, + "max": 13 + }, + "npc": "Nick" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "meaningfulholiday-nick-42", + "lineInfo": { + "dialogue": "All because this enormous feast was not enough. Detlas bought all the food, cheap or expensive.", + "line": { + "current": 10, + "max": 13 + }, + "npc": "Nick" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "meaningfulholiday-nick-43", + "lineInfo": { + "dialogue": "I'm here to remind you the real meaning of this day. To think of others..", + "line": { + "current": 11, + "max": 13 + }, + "npc": "Nick" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "meaningfulholiday-nick-44", + "lineInfo": { + "dialogue": "I will return your meal tonight, but while you eat it... I want you to remember every empty mouth it could have fed.", + "line": { + "current": 12, + "max": 13 + }, + "npc": "Nick" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "meaningfulholiday-nick-45", + "lineInfo": { + "dialogue": "Share what you have, be thankful for what you are given.", + "line": { + "current": 13, + "max": 13 + }, + "npc": "Nick" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-guest-1", + "lineInfo": { + "dialogue": "You can't do that!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Guest" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-guest-2", + "lineInfo": { + "dialogue": "The food on the table isn't enough to feed everyone here!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Guest" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-santa-6", + "lineInfo": { + "dialogue": "Well, looks like you came through yet again Nick.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "???" + } + }, + { + "fileOverride": "meaningfulholiday-santa-7", + "lineInfo": { + "dialogue": "I came to see if I could help out. But it looks like you've done it.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "meaningfulholiday-santa-8", + "lineInfo": { + "dialogue": "Well, I guess there is only one thing left to do to complete this scene.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Santa" + } + }, + { + "fileOverride": "meaningfulholiday-santa-9", + "lineInfo": { + "dialogue": "Hope you all have a merry craftmas. Ho-ho!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Santa" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-nick-46", + "lineInfo": { + "dialogue": "It looks like my little speech brought the rich back down to earth.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-47", + "lineInfo": { + "dialogue": "They gave us half of their feast. Can you believe they still had leftovers?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-48", + "lineInfo": { + "dialogue": "All of that food, going straight to waste.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-49", + "lineInfo": { + "dialogue": "They have no idea what they have, compared to these poor folks.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-50", + "lineInfo": { + "dialogue": "You might be wondering why I know Santa. Well, he's my brother.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-51", + "lineInfo": { + "dialogue": "My siblings and I take care of people at Craftmas. My area is the Almuj desert. I guess you could call me Sanda Claus, heh.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Nick" + } + }, + { + "fileOverride": "meaningfulholiday-nick-52", + "lineInfo": { + "dialogue": "It's people like you that keep the real meaning of this holiday alive. It gets harder every year as the meaning is distorted. Here is a personal gift from me. Thank you.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Nick" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-nick-53", + "lineInfo": { + "dialogue": "Have you found any food?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Nick" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-nick-54", + "lineInfo": { + "dialogue": "Sigh... This isn't looking good...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Nick" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-nick-55", + "lineInfo": { + "dialogue": "Thank you so much! I couldn't have done it without you.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Nick" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "meaningfulholiday-nick-56", + "lineInfo": { + "dialogue": "Hey! Don't go down there, it's dangerous!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Nick" + } + } + ] + } + } + }, + "Memory Paranoia": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-atisun-1", + "lineInfo": { + "dialogue": "Oh, a human? If I could beg your pardon a moment... could I talk to you about the mansion here?", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Atisun" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-atisun-2", + "lineInfo": { + "dialogue": "All you have to do, is go in there and find answers. I'm sure the past won't haunt us both. Something happened here all those years ago... I want to know what.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Atisun" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "3": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-servant-1", + "lineInfo": { + "dialogue": "Mr. Caritat is always writing so intensely in that book... I do wonder what he could be saying.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Servant" + } + }, + { + "fileOverride": "memoryparanoia-timmy-1", + "lineInfo": { + "dialogue": "He won't even tell me what he's writing. ", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Timmy" + } + }, + { + "fileOverride": "memoryparanoia-maid-1", + "lineInfo": { + "dialogue": "I'll bet he's writing insults about us or something. He can't be as nice as he appears, no one is!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Maid" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "4": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-timmy-2", + "lineInfo": { + "dialogue": "I accidentally dropped my Library Key down the drain, do you think my dad will be angry?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Timmy" + } + }, + { + "fileOverride": "memoryparanoia-maid-2", + "lineInfo": { + "dialogue": "Come on, Timmy. Mr. Caritat is crazily sweet. I doubt he'd be upset, even if you'd thrown it down there on purpose.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Maid" + } + }, + { + "fileOverride": "memoryparanoia-timmy-3", + "lineInfo": { + "dialogue": "I still want to find the key though, do you know where I should look?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Timmy" + } + }, + { + "fileOverride": "memoryparanoia-servant-6", + "lineInfo": { + "dialogue": "Well, the drainage pipes have probably taken the key to the basement in the southeast corner of the mansion by now, that's most likely where it is. ", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Servant" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "5": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-maid-3", + "lineInfo": { + "dialogue": "I've heard about weird things happening around the house. People are saying the mansion might be haunted!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Maid" + } + }, + { + "fileOverride": "memoryparanoia-servant-2", + "lineInfo": { + "dialogue": "Ghosts? Preposterous! This mansion isn't haunted, don't believe those silly rumors!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Servant" + } + }, + { + "fileOverride": "memoryparanoia-timmy-4", + "lineInfo": { + "dialogue": "G-g-ghosts?!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Timmy" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "6": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-maid-4", + "lineInfo": { + "dialogue": "It's so kind of the Caritats to donate these supplies to the struggling people in the forest.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Maid" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "7": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-timmy-5", + "lineInfo": { + "dialogue": "I've forgotten, where should I look for my Library Key?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Timmy" + } + }, + { + "fileOverride": "memoryparanoia-servant-3", + "lineInfo": { + "dialogue": "The drainage pipes have probably taken the key to the basement in the southeast corner of the mansion by now, you should check there.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Servant" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "8": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-page-1", + "lineInfo": { + "dialogue": "Today was my first day as the butler for the Caritat family. They gave me quite a warm welcome. I think I'm going to like it here.", + "npc": "Page 1" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "9": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-page-2", + "lineInfo": { + "dialogue": "The Caritats are as nice as people say. They're some of the kindest people I've ever met, let alone work for.", + "npc": "Page 2" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "10": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-page-3", + "lineInfo": { + "dialogue": "That Timmy boy has been acting rather unusual lately... Uncharacteristically hostile. I wonder what's come over him.", + "npc": "Page 3" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "11": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-page-4", + "lineInfo": { + "dialogue": "I've been hearing strange noises at night. Scratching, and sometimes yelling... I do hope nothing bad is going on.", + "npc": "Page 4" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "12": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-page-5", + "lineInfo": { + "dialogue": "I don't even know how this happened, but Timmy performed dark magic. He shot a fireball! The north wall of the library was wrecked!", + "npc": "Page 5" + } + }, + { + "fileOverride": "memoryparanoia-mistercaritat-1", + "lineInfo": { + "dialogue": "Timmy, is something bothering you? You have been acting so weird lately.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Mister Caritat" + } + }, + { + "fileOverride": "memoryparanoia-timmy-6", + "lineInfo": { + "dialogue": "You cannot command me, mortal! You and all of your inferior species will bow to the darkness!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Timmy" + } + }, + { + "fileOverride": "memoryparanoia-mistercaritat-2", + "lineInfo": { + "dialogue": "I don’t know what game you are playing, Timmy. But I will not stand for it any longer, snap out of it!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Mister Caritat" + } + }, + { + "fileOverride": "memoryparanoia-timmy-7", + "lineInfo": { + "dialogue": "You shall pay for your insolence, mortal!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Timmy" + } + }, + { + "fileOverride": "memoryparanoia-mistercaritat-3", + "lineInfo": { + "dialogue": "Dark magic? What foul books have you been reading? And what's that in your hand?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Mister Caritat" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "13": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-timmy-8", + "lineInfo": { + "dialogue": "That is an item beyond you, mortal. Give it back to me this instant!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Timmy" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "14": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-mistercaritat-5", + "lineInfo": { + "dialogue": "Attention, attention everyone! I have an announcement I'd like to make!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Mister Caritat" + } + }, + { + "fileOverride": "memoryparanoia-mistercaritat-6", + "lineInfo": { + "dialogue": "My son, Timothy, has just turned eighteen today.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Mister Caritat" + } + }, + { + "fileOverride": "memoryparanoia-mistercaritat-7", + "lineInfo": { + "dialogue": "Now, there have been a few slight hiccups over the years, but we've made it through mostly in one piece.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Mister Caritat" + } + }, + { + "fileOverride": "memoryparanoia-mistercaritat-8", + "lineInfo": { + "dialogue": "And I'd like to say, I'm very proud of him. To Timothy, a new man!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Mister Caritat" + } + }, + { + "fileOverride": "memoryparanoia-timothy-1", + "lineInfo": { + "dialogue": "Thank you very much, Father, and everyone here. Here's to more years of health-", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Timothy" + } + }, + { + "fileOverride": "memoryparanoia-mistercaritat-9", + "lineInfo": { + "dialogue": "Please, everyone stay calm. I'm sure it's just the cooks spilling something...", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Mister Caritat" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "15": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-baker-1", + "lineInfo": { + "dialogue": "Oh my god... what is that thing?!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Baker" + } + }, + { + "fileOverride": "memoryparanoia-chef-1", + "lineInfo": { + "dialogue": "Everyone out, now! We can't fight these things!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Chef" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "16": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-mr.caritat-1", + "lineInfo": { + "dialogue": "My god... What is wrong with this place? No matter what I do, what I try...", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Mr. Caritat" + } + }, + { + "fileOverride": "memoryparanoia-timothy-2", + "lineInfo": { + "dialogue": "How was any of that even possible? What are we going to tell their families?", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Timothy" + } + }, + { + "fileOverride": "memoryparanoia-mr.caritat-2", + "lineInfo": { + "dialogue": "...Timothy, I'm going to ask you something, and I need you to answer me honestly. Were you... Were you responsible for this?", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Mr. Caritat" + } + }, + { + "fileOverride": "memoryparanoia-timothy-3", + "lineInfo": { + "dialogue": "No, of course not! I overcame that years ago, you know that, I can't believe you still suspect me of-", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Timothy" + } + }, + { + "fileOverride": "memoryparanoia-servant-4", + "lineInfo": { + "dialogue": "Ah, sir, we did find something rather unusual in the kitchen that might interest you? Maybe?", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Servant" + } + }, + { + "fileOverride": "memoryparanoia-mr.caritat-3", + "lineInfo": { + "dialogue": "What- Out with it! What did you find?! Please, please tell me I'm wrong!!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Mr. Caritat" + } + }, + { + "fileOverride": "memoryparanoia-servant-5", + "lineInfo": { + "dialogue": "We found this charred-looking black spoon. I've worked here for years, and I've never seen any spoons of this style in the mansion.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Servant" + } + }, + { + "fileOverride": "memoryparanoia-timothy-4", + "lineInfo": { + "dialogue": "Wait, that spoon? I remember sneaking into your study that one time to get it, but how did it survive the fire?", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Timothy" + } + }, + { + "fileOverride": "memoryparanoia-mr.caritat-4", + "lineInfo": { + "dialogue": "Wait, you got it from my STUDY?! You... You idiot! Do you have any idea what you have done?! You must NEVER go in my study!!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Mr. Caritat" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "17": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-mr.caritat-5", + "lineInfo": { + "dialogue": "Dear Anton, the chandelier fell in the main hall. Please fix it as soon as possible." + } + } + ], + "settings": { + "followPlayer": true + } + }, + "18": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-mr.caritat-6", + "lineInfo": { + "dialogue": "DEATH DEATH DEATH DEATH DEATH DEATH DEATH DEATH DEATH DEATH DEATH.", + "npc": "Page 1" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "19": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-mistercaritat-10", + "lineInfo": { + "dialogue": "There is a dark power beyond our control within this mansion. There is no use trying to fight it.", + "npc": "Page 2" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "20": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-mistercaritat-11", + "lineInfo": { + "dialogue": "I felt like all of the skulls were watching me. I have had to turn them all towards the fireplace.", + "npc": "Page 3" + } + }, + { + "fileOverride": "memoryparanoia-mr.caritat-7", + "lineInfo": { + "dialogue": "THAT WHICH STARTED THIS WAR SHALL RISE ONCE MORE. FROM THE REALM OF SHADOWS, DECEIT AND PAIN.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Mr. Caritat" + } + }, + { + "fileOverride": "memoryparanoia-mr.caritat-8", + "lineInfo": { + "dialogue": "FOREVER TRAPPED, FROM WHENCE IT CAME. THROUGH THE WEAK POINT BETWEEN REALMS IT. SHALL. RISE. AGAIN! ", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Mr. Caritat" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "21": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-mrs.caritat-1", + "lineInfo": { + "dialogue": "Harold, please... ", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Mrs. Caritat" + } + }, + { + "fileOverride": "memoryparanoia-mrs.caritat-2", + "lineInfo": { + "dialogue": "Stop this madness...", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Mrs. Caritat" + } + }, + { + "fileOverride": "memoryparanoia-mrs.caritat-3", + "lineInfo": { + "dialogue": "Harold...?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Mrs. Caritat" + } + }, + { + "fileOverride": "memoryparanoia-mr.caritat-9", + "lineInfo": { + "dialogue": "FROM SOILS OF DOOM THE SERVANT LAID", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Mr. Caritat" + } + }, + { + "fileOverride": "memoryparanoia-mr.caritat-10", + "lineInfo": { + "dialogue": "BREAK THROUGH THE REALMS TO THE LAND OF TRADE.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Mr. Caritat" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "22": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-caritatsenior-1", + "lineInfo": { + "dialogue": "No, no! I said three feet left, you absolute...", + "line": { + "current": 1, + "max": 14 + }, + "npc": "Caritat Senior" + } + }, + { + "fileOverride": "memoryparanoia-lari-1", + "lineInfo": { + "dialogue": "Mr. Caritat! What are you doing?!", + "line": { + "current": 2, + "max": 14 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "memoryparanoia-caritatsenior-2", + "lineInfo": { + "dialogue": "What are you doing here, Elf? You need proper equipment to be on this site-", + "line": { + "current": 3, + "max": 14 + }, + "npc": "Caritat Senior" + } + }, + { + "fileOverride": "memoryparanoia-lari-2", + "lineInfo": { + "dialogue": "Mr Caritat, you can't build a house here!", + "line": { + "current": 4, + "max": 14 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "memoryparanoia-caritatsenior-3", + "lineInfo": { + "dialogue": "I can do whatever I like here, I bought the land.", + "line": { + "current": 5, + "max": 14 + }, + "npc": "Caritat Senior" + } + }, + { + "fileOverride": "memoryparanoia-lari-3", + "lineInfo": { + "dialogue": "You don't understand! This is where it came... this is where the darkness invaded!", + "line": { + "current": 6, + "max": 14 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "memoryparanoia-caritatsenior-4", + "lineInfo": { + "dialogue": "Don't be preposterous. I'm building here to show the people that there's simply nothing to worry about!", + "line": { + "current": 7, + "max": 14 + }, + "npc": "Caritat Senior" + } + }, + { + "fileOverride": "memoryparanoia-caritatsenior-5", + "lineInfo": { + "dialogue": "Besides, even if there was something, now that Dullahan's gone, it'll go too.", + "line": { + "current": 8, + "max": 14 + }, + "npc": "Caritat Senior" + } + }, + { + "fileOverride": "memoryparanoia-lari-4", + "lineInfo": { + "dialogue": "What?! He wasn't the one causing all this, it was-", + "line": { + "current": 9, + "max": 14 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "memoryparanoia-caritatsenior-6", + "lineInfo": { + "dialogue": "Well of course you would think that. You and him had some... history, didn't you?", + "line": { + "current": 10, + "max": 14 + }, + "npc": "Caritat Senior" + } + }, + { + "fileOverride": "memoryparanoia-lari-5", + "lineInfo": { + "dialogue": "I... Please, Mr Caritat. You don't understand what you're doing...", + "line": { + "current": 11, + "max": 14 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "memoryparanoia-caritatsenior-7", + "lineInfo": { + "dialogue": "I am securing some prime real-estate right here. Oh... Perhaps that is why you're here?", + "line": { + "current": 12, + "max": 14 + }, + "npc": "Caritat Senior" + } + }, + { + "fileOverride": "memoryparanoia-lari-6", + "lineInfo": { + "dialogue": "What? No, I-", + "line": { + "current": 13, + "max": 14 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "memoryparanoia-caritatsenior-8", + "lineInfo": { + "dialogue": "Trying to expand elven territories, are you?! Well, I'll be having none of that! Leave, before I have my men escort you!", + "line": { + "current": 14, + "max": 14 + }, + "npc": "Caritat Senior" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "23": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-atisun-3", + "lineInfo": { + "dialogue": "Hey! Human! Are you alright?! Please, calm down, quit flailing around, you're safe!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Atisun" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "24": { + "dialogues": [ + { + "fileOverride": "memoryparanoia-atisun-4", + "lineInfo": { + "dialogue": "Oh thank goodness, you're back to us. I was so worried... er, you might not recall. Let me explain...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Atisun" + } + } + ] + } + } + }, + "Misadventure on the Sea": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-barman-1", + "lineInfo": { + "dialogue": "Hello there soldier! What can I get you?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Barman" + } + }, + { + "fileOverride": "misadventureonthesea-honip-1", + "lineInfo": { + "dialogue": "I'll take 2 Nemract Whiskeys. One for me, one for this chap.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-barman-2", + "lineInfo": { + "dialogue": "You got it.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Barman" + } + }, + { + "fileOverride": "misadventureonthesea-honip-68", + "lineInfo": { + "dialogue": "So, I've seen ya around town. Ya even went to the ocean to help that chicken guy!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Honip" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-2", + "lineInfo": { + "dialogue": "So... I've seen ya around town. I saw how happy that guy was when you brought him some journal.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-barman-3", + "lineInfo": { + "dialogue": "2 Nemract Whiskeys, coming up!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Barman" + } + }, + { + "fileOverride": "misadventureonthesea-honip-3", + "lineInfo": { + "dialogue": "So... Soldier. Are ya up for sailin' the ocean with me? I got a fancier boat than that seaskipper! ", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-4", + "lineInfo": { + "dialogue": "I figured you'd be interested in explorin' the waters!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-5", + "lineInfo": { + "dialogue": "I'll wait for ya on the docks. Don't worry, ya can't miss the boat! ", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Honip" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-6", + "lineInfo": { + "dialogue": "There you are! Ready? Follow me, the boat's over here!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-7", + "lineInfo": { + "dialogue": "Look at this.. Magnificent! Much better than whatever the Seaskipper is using!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-8", + "lineInfo": { + "dialogue": "Well, what are you waiting for? Hop aboard!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Honip" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-9", + "lineInfo": { + "dialogue": "Then it's settled, we're goin' on an adventure!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-10", + "lineInfo": { + "dialogue": "Buckle up, we got waves to catch.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Honip" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-11", + "lineInfo": { + "dialogue": "So... I should warn ya', this is actually my first time sailing...", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-12", + "lineInfo": { + "dialogue": "It doesn't seem too difficult though, a little to the left...", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-13", + "lineInfo": { + "dialogue": "Hmm, looks like we're not the only ones out on the water today.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-14", + "lineInfo": { + "dialogue": "They're a bit too head on, don't you think?", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-15", + "lineInfo": { + "dialogue": "I'm tryin' to steer the ship but it's not budging...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-16", + "lineInfo": { + "dialogue": "That's unfortunate...", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-17", + "lineInfo": { + "dialogue": "Unfortunate... For YOU!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Honip" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-18", + "lineInfo": { + "dialogue": "Hey, you're finally awake.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Honip" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-19", + "lineInfo": { + "dialogue": "So, there's quite a few bodies in there, and we never bothered throwin' em out!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Honip" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-20", + "lineInfo": { + "dialogue": "Hey! The boat's lookin' real nice now!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-21", + "lineInfo": { + "dialogue": "I'll probably let you rest so- hold on.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-pirate-1", + "lineInfo": { + "dialogue": "Ho-Honip! One of the guys said he saw something really weird coming right for us!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Pirate" + } + }, + { + "fileOverride": "misadventureonthesea-honip-22", + "lineInfo": { + "dialogue": "Wait... What? Soldier, come!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Honip" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-23", + "lineInfo": { + "dialogue": "What's happening?!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-pirate-2", + "lineInfo": { + "dialogue": "We-we don't know! We can't exactly see it, but it seems huge!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Pirate" + } + }, + { + "fileOverride": "misadventureonthesea-honip-24", + "lineInfo": { + "dialogue": "I- Let me see.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-25", + "lineInfo": { + "dialogue": "Uh... Where am I supposed to be looking at, exactly?", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-pirate-3", + "lineInfo": { + "dialogue": "I swear, it felt like the whole ocean was getting crazy a second ago!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Pirate" + } + }, + { + "fileOverride": "misadventureonthesea-honip-26", + "lineInfo": { + "dialogue": "If this is another one of your jokes...", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-seth-1", + "lineInfo": { + "dialogue": "LOOK OUT!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Seth" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-seth-2", + "lineInfo": { + "dialogue": "What the hell is that??", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Seth" + } + }, + { + "fileOverride": "misadventureonthesea-honip-27", + "lineInfo": { + "dialogue": "I don't know, this wasn't planned!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Honip" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-28", + "lineInfo": { + "dialogue": "It's starting to panic!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-29", + "lineInfo": { + "dialogue": "That's right, get back!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-30", + "lineInfo": { + "dialogue": "I knew you had it in ya, haha!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-31", + "lineInfo": { + "dialogue": "What a show! Come, I've got some things to tell ya!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Honip" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-32", + "lineInfo": { + "dialogue": "I don't know where that creature came from, but thanks to you it's gone.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-33", + "lineInfo": { + "dialogue": "I've got somethin' else for you to tackle. It's about... the rats.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-34", + "lineInfo": { + "dialogue": "Come to the hold, I'll explain on the way.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-35", + "lineInfo": { + "dialogue": "I think we have quite a hellish problem on our hands.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-36", + "lineInfo": { + "dialogue": "I'm not sure what ya'll find there, but these are NOT normal rats.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-37", + "lineInfo": { + "dialogue": "So please, get in there... and kill everything, alright?", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-38", + "lineInfo": { + "dialogue": "I've got faith in ya. Here goes nothin'!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Honip" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "13": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-39", + "lineInfo": { + "dialogue": "Hey there! Ya bringin' me good news?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-40", + "lineInfo": { + "dialogue": "You took care of these damn thieving rodents? A... colossal rat you say?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-41", + "lineInfo": { + "dialogue": "Nicely done, I knew I could count on ya! C'mere, take these!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-42", + "lineInfo": { + "dialogue": "Anyway, for now, you can go rest and do whatever you want!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Honip" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "14": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-43", + "lineInfo": { + "dialogue": "What. ", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-44", + "lineInfo": { + "dialogue": "Well... That's a twist.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-45", + "lineInfo": { + "dialogue": "I expected you to do somethin', soldier, not him!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-46", + "lineInfo": { + "dialogue": "Anyways, come talk to me", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Honip" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "15": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-47", + "lineInfo": { + "dialogue": "I have another task for you. It's about... the rats.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-48", + "lineInfo": { + "dialogue": "See, I really don't think we have your usual type of problem.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Honip" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "16": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-49", + "lineInfo": { + "dialogue": "We sometimes hear unusually loud footsteps, along with some really eerie squeaking...", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-50", + "lineInfo": { + "dialogue": "That's why we're not too fond of goin' in... But our gunpowder there! We need it, as pirates!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-51", + "lineInfo": { + "dialogue": "So, I need you to get in... and kill everything, alright?", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-52", + "lineInfo": { + "dialogue": "Here goes nothing. Snoo, ya stay there!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Honip" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "17": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-53", + "lineInfo": { + "dialogue": "That sounds absolutely terrifying! And ya did that alone! You know what, her', take these.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Honip" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "18": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-54", + "lineInfo": { + "dialogue": "Just cast one of your fancy spells!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-55", + "lineInfo": { + "dialogue": "That was... Phew... That was something.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-56", + "lineInfo": { + "dialogue": "Now, for an even bigger surprise...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-57", + "lineInfo": { + "dialogue": "What the hell soldier?? What don't you get in the \"\"soldier\"\" part of your job?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-58", + "lineInfo": { + "dialogue": "Come, let's figure some things out.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Honip" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "19": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-59", + "lineInfo": { + "dialogue": "You've been a massive disappointment, y'know?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-60", + "lineInfo": { + "dialogue": "But you can still redeem yourself.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-61", + "lineInfo": { + "dialogue": "Follow me, I'll explain on the way.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-62", + "lineInfo": { + "dialogue": "I mentioned a rat problem earlier... It's, uh, not a small one.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-63", + "lineInfo": { + "dialogue": "We've got gunpowder to retrieve, so you're the one who's gonna clear the hold.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-64", + "lineInfo": { + "dialogue": "So get in there... and try to kill everything, alright?", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-honip-65", + "lineInfo": { + "dialogue": "Don't be as bad as earlier. You're a soldier.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Honip" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "20": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-66", + "lineInfo": { + "dialogue": "Well, shiver me timbers! You did redeem yourself soldier!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Honip" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "21": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-67", + "lineInfo": { + "dialogue": "...Seth? Have ya seen the soldier?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Honip" + } + }, + { + "fileOverride": "misadventureonthesea-seth-3", + "lineInfo": { + "dialogue": "No, but they did a great job in the hold! Some gunpowder went missing though.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Seth" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "22": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-seth-4", + "lineInfo": { + "dialogue": "Wait a minute.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Seth" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "23": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-seaskippercaptain-1", + "lineInfo": { + "dialogue": "'ey there soldier! Looks like ya're in a bit of a pickle! How 'bout ya hop on?'", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-seaskippercaptain-2", + "lineInfo": { + "dialogue": "Well... We're headed for Selchar, the heart of the ocean! Which is safer than wherever you were, heh!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Seaskipper Captain" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "25": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-69", + "lineInfo": { + "dialogue": "Soldier, now's your time to shine! Scare it off with one of your spells or somethin'!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Honip" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "26": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-70", + "lineInfo": { + "dialogue": "It's working! Do that again!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Honip" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "27": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-71", + "lineInfo": { + "dialogue": "One more...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Honip" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "28": { + "dialogues": [ + { + "fileOverride": "misadventureonthesea-honip-72", + "lineInfo": { + "dialogue": "Anyway, come talk to me.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Honip" + } + } + ], + "settings": { + "followPlayer": true + } + } + } + }, + "Mixed Feelings": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-javen-1", + "lineInfo": { + "dialogue": "Mo'in lad! We don't get many Wynn folks round 'ere.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Javen" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-rensa-1", + "lineInfo": { + "dialogue": "Seems like you are in luck today, adventurer.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "???" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-rensa-2", + "lineInfo": { + "dialogue": "Cheers!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-javen-2", + "lineInfo": { + "dialogue": "Everything alright, lad? Looking a bit pale...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Javen" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-javen-3", + "lineInfo": { + "dialogue": "Oh by the mighty founders, everything is ruined!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Javen" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-corkuscitycitizen-1", + "lineInfo": { + "dialogue": "The whole aqueduct is ruined! The city’s fresh water is just draining into the ocean...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Corkus City Citizen" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-corkuscitycitizen-2", + "lineInfo": { + "dialogue": "Hurry, please! Just head into the big trapdoor by the bushes, the controls are in there.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Corkus City Citizen" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-corkuscitycitizen-3", + "lineInfo": { + "dialogue": "You fixed it? Everything you broke? That's one hell of a twisted personality.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Corkus City Citizen" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-corkuscitycitizen-11", + "lineInfo": { + "dialogue": "You fixed it? Everything you broke? That's one hell of a twisted personality.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Corkus City Citizen" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-corkuscitycitizen-10", + "lineInfo": { + "dialogue": "It’s THEM! Someone call the authorities! It’s the one who set my house on fire.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Corkus City Citizen" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-corkuscitycitizen-5", + "lineInfo": { + "dialogue": "You did it! So you weren't lying? Ugh, I guess you might just be trustworthy.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Corkus City Citizen" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-corkuscitycitizen-9", + "lineInfo": { + "dialogue": "You did it! So you weren't lying? Ugh, I guess you might just be trustworthy.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Corkus City Citizen" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-corkuscitycitizen-6", + "lineInfo": { + "dialogue": "Came back to wreck the rest of my work have you? Why aren’t you all insane looking?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Corkus City Citizen" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-corkuscitycitizen-7", + "lineInfo": { + "dialogue": "You did it? ... -I mean, at last. Eh... I guess I was too fast with my judgement for once.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Corkus City Citizen" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-corkuscitycitizen-8", + "lineInfo": { + "dialogue": "You did it? ... -I mean, at last. Eh... I guess I was too fast with my judgement for once.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Corkus City Citizen" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-rensa-3", + "lineInfo": { + "dialogue": "Why are you here? I don't mean here and now, I mean why are you on our island?--", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Rensa" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "17": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-rensa-4", + "lineInfo": { + "dialogue": "You... Look at yourself. You fight in a war you did not cause. You come from a land you don’t even remember.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Rensa" + } + }, + { + "fileOverride": "mixedfeelings-rensa-5", + "lineInfo": { + "dialogue": "We ask ourselves why would we invite people from two lands of sin. Invite a nation of warring travellers and a nation of greedy merchants to our doors?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Rensa" + } + }, + { + "fileOverride": "mixedfeelings-rensa-6", + "lineInfo": { + "dialogue": "The Corkian people are above such mundane capitalism and brutality. We work as a nation to better all.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Rensa" + } + }, + { + "fileOverride": "mixedfeelings-rensa-7", + "lineInfo": { + "dialogue": " You have been a pawn your entire existence on this world. The worst part is you don’t even know it.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Rensa" + } + }, + { + "fileOverride": "mixedfeelings-rensa-8", + "lineInfo": { + "dialogue": "Do you, for example - Know the name of your ultimate enemy? The reason for the war on your land?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Rensa" + } + }, + { + "fileOverride": "mixedfeelings-rensa-9", + "lineInfo": { + "dialogue": "No? Didn’t think so. I have no time for this. You served your purpose, even if you did try and redeem your barbaric behaviour... Kill them!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Rensa" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-rensa-10", + "lineInfo": { + "dialogue": "1/12rensatougherthaniexpectedyoudontmindifiinterfereabitdoyou?" + } + }, + { + "fileOverride": "mixedfeelings-rensa-11", + "lineInfo": { + "dialogue": "Hmph.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Rensa" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-javen-4", + "lineInfo": { + "dialogue": "Now look who we got over ‘ere! We were all wondering if you’d ever wake up.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Javen" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "mixedfeelings-corkuscitycitizen-12", + "lineInfo": { + "dialogue": "mixedfeelingscorkuscitycitizen11" + } + }, + { + "fileOverride": "mixedfeelings-corkuscitycitizen-13", + "lineInfo": { + "dialogue": "mixedfeelingscorkuscitycitizen12" + } + }, + { + "fileOverride": "mixedfeelings-corkuscitycitizen-14", + "lineInfo": { + "dialogue": "mixedfeelingscorkuscitycitizen13" + } + }, + { + "fileOverride": "mixedfeelings-corkuscitycitizen-15", + "lineInfo": { + "dialogue": "mixedfeelingscorkuscitycitizen21" + } + }, + { + "fileOverride": "mixedfeelings-corkuscitycitizen-16", + "lineInfo": { + "dialogue": "mixedfeelingscorkuscitycitizen22" + } + }, + { + "fileOverride": "mixedfeelings-corkuscitycitizen-17", + "lineInfo": { + "dialogue": "mixedfeelingscorkuscitycitizen23" + } + }, + { + "fileOverride": "mixedfeelings-corkuscitycitizen-18", + "lineInfo": { + "dialogue": "mixedfeelingscorkuscitycitizen31" + } + }, + { + "fileOverride": "mixedfeelings-corkuscitycitizen-19", + "lineInfo": { + "dialogue": "mixedfeelingscorkuscitycitizen32" + } + }, + { + "fileOverride": "mixedfeelings-corkuscitycitizen-20", + "lineInfo": { + "dialogue": "mixedfeelingscorkuscitycitizen33" + } + } + ] + } + } + }, + "Molten Heights": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "moltenheights-phoenixpoacher-1", + "lineInfo": { + "dialogue": "Aha! There it is. A Phoenix Egg. This'll fetch a high price.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Phoenix Poacher" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-phoenixpoacher-2", + "lineInfo": { + "dialogue": "Got it! Gosh, that's heavy.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Phoenix Poacher" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-phoenixpoacher-3", + "lineInfo": { + "dialogue": "You there, back away and pretend like this never happened.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Phoenix Poacher" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-phoenixpoacher-4", + "lineInfo": { + "dialogue": "Hey, why are you following me?! Knock it off!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Phoenix Poacher" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-phoenixpoacher-5", + "lineInfo": { + "dialogue": "Seriously, creep, you need to go away.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Phoenix Poacher" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-phoenixpoacher-6", + "lineInfo": { + "dialogue": "GET THE HELL AWAY FROM ME!!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Phoenix Poacher" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-phoenixpoacher-7", + "lineInfo": { + "dialogue": "*pant* Aha! There! Can't get to me now, can you?", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Phoenix Poacher" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "moltenheights-phoenixpoacher-8", + "lineInfo": { + "dialogue": "Good, they didn't follow... I'll be back for more soon...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Phoenix Poacher" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "moltenheights-phoenixpoacher-9", + "lineInfo": { + "dialogue": "Ahah! I lost them!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Phoenix Poacher" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "moltenheights-shopkeeper-1", + "lineInfo": { + "dialogue": "I see you've come to my pottery shop. Feel free to browse, but our pottery classes are full.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Shopkeeper" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "moltenheights-shopkeeper-2", + "lineInfo": { + "dialogue": "Oh, that looks very valuable...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Shopkeeper" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-shopkeeper-3", + "lineInfo": { + "dialogue": "Actually, I just remembered, we have a slot open.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Shopkeeper" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-shopkeeper-4", + "lineInfo": { + "dialogue": "If you'd like to attend one of our *cough* ''Pottery classes'', head through the door behind me.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Shopkeeper" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "moltenheights-hitman-1", + "lineInfo": { + "dialogue": "The best assassin in Gavel comes at a price. So, how much are you willing to pay?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Hitman" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "moltenheights-organmerchant-1", + "lineInfo": { + "dialogue": "Perhaps you need it for some treatment... or a delectable cuisine! Harvested from our ''volunteers''.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Organ Merchant" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "moltenheights-brewmaster-1", + "lineInfo": { + "dialogue": "Nonono... these aren't normal brews. Deadlock Serum? Morta Maxima? You know what they say... pick your poison.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Brewmaster" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "moltenheights-dogunmerchant-1", + "lineInfo": { + "dialogue": "You see this fine selection of frozen Doguns behind me?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Dogun Merchant" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dogunmerchant-2", + "lineInfo": { + "dialogue": "That's what happens when you douse a Dogun in water. They're still alive, though. Just in exquisite agony.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Dogun Merchant" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dogunmerchant-3", + "lineInfo": { + "dialogue": "However, when we pour lava on them, they unfreeze. Well, they scream. Well, both, actually.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Dogun Merchant" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "moltenheights-phoenixpoacher-10", + "lineInfo": { + "dialogue": "Come get your genuine phoenix eggs! Gen-u-ine! Gen- NO, IT'S YOU AGAIN! GET AWAY!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Phoenix Poacher" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "moltenheights-darkartificer-1", + "lineInfo": { + "dialogue": "Hello, hello. I zee you ave come to zee my finest collection of priceless and rare dark artifacts.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Dark Artificer" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-darkartificer-2", + "lineInfo": { + "dialogue": "Come! Come and vonder at awe-inspiring relics!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Dark Artificer" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-darkartificer-3", + "lineInfo": { + "dialogue": "Oooo... I zee you have a keen eye. I am zure you ave noticed the weapon on the vall and its fine craftsmanship.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Dark Artificer" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-darkartificer-4", + "lineInfo": { + "dialogue": "Ze Kirschblute! Outlawed in zeventy zhree jurisdictions. Ze owners have a tendency to go... vell, to their not happy place.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Dark Artificer" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "moltenheights-hallucinogenmerchant-1", + "lineInfo": { + "dialogue": "Woah there, would you be interested in buying my totally gnar happy-juice?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Hallucinogen Merchant" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-hallucinogenmerchant-2", + "lineInfo": { + "dialogue": "You can say no, it's totally chill.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Hallucinogen Merchant" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-hallucinogenmerchant-3", + "lineInfo": { + "dialogue": "No need to be so harsh.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Hallucinogen Merchant" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-hallucinogenmerchant-4", + "lineInfo": { + "dialogue": "Chill out, brother. We're all one. Just swing by whenever you wanna have a group vibe session.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Hallucinogen Merchant" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "moltenheights-shopkeeper-5", + "lineInfo": { + "dialogue": "Stay quiet about this place, alright? If the guards find out, we're toast.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Shopkeeper" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "moltenheights-dogun1-1", + "lineInfo": { + "dialogue": "...Am I... alive...?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Dogun" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dogun1-2", + "lineInfo": { + "dialogue": "I feel... warm again...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Dogun" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dogun1-3", + "lineInfo": { + "dialogue": "Adventurer... Was it you who saved me...?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Dogun" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dogun1-4", + "lineInfo": { + "dialogue": "Thank you greatly... I shall seek refuge urgently... Goodbye...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Dogun" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "moltenheights-dwarvencommander-1", + "lineInfo": { + "dialogue": "Troops! Advance!", + "line": { + "current": 1, + "max": 26 + }, + "npc": "Dwarven Commander" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dwarvencommander-2", + "lineInfo": { + "dialogue": "Ready the cannons!", + "line": { + "current": 2, + "max": 26 + }, + "npc": "Dwarven Commander" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dwarvencaptain-1", + "lineInfo": { + "dialogue": "Sir, I have just been informed that the final Dogun settlement has been raided.", + "line": { + "current": 3, + "max": 26 + }, + "npc": "Dwarven Captain" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dwarvencaptain-2", + "lineInfo": { + "dialogue": "All of our forces will now focus on attacking the Dogun Capital!", + "line": { + "current": 4, + "max": 26 + }, + "npc": "Dwarven Captain" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dwarvencommander-3", + "lineInfo": { + "dialogue": "Excellent. You must tell Algard at once.", + "line": { + "current": 5, + "max": 26 + }, + "npc": "Dwarven Commander" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-generalalgard-1", + "lineInfo": { + "dialogue": "Division 3, defend the barrier! Division 4, assist the wounded!", + "line": { + "current": 6, + "max": 26 + }, + "npc": "General Algard" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-generalalgard-2", + "lineInfo": { + "dialogue": "We cannot afford to lose this battle!", + "line": { + "current": 7, + "max": 26 + }, + "npc": "General Algard" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dwarvensoldier-1", + "lineInfo": { + "dialogue": "BRING IT ON!", + "line": { + "current": 8, + "max": 26 + }, + "npc": "Dwarven Soldier" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dogun2-1", + "lineInfo": { + "dialogue": "Charging...at us? Don't be...silly.", + "line": { + "current": 9, + "max": 26 + }, + "npc": "Dogun" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dogun2-2", + "lineInfo": { + "dialogue": "Urgh... I won't...let you win...so easily.", + "line": { + "current": 10, + "max": 26 + }, + "npc": "Dogun" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-generalalgard-3", + "lineInfo": { + "dialogue": "It appears we have gained the upper hand.", + "line": { + "current": 11, + "max": 26 + }, + "npc": "General Algard" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-generalalgard-4", + "lineInfo": { + "dialogue": "If we can maintain our current position, victory is within our grasp.", + "line": { + "current": 12, + "max": 26 + }, + "npc": "General Algard" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dwarvencaptain-3", + "lineInfo": { + "dialogue": "It's too early to come to that conclusion, sir. The enemy may have hidden forces.", + "line": { + "current": 13, + "max": 26 + }, + "npc": "Dwarven Captain" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dwarvenlieutenant-1", + "lineInfo": { + "dialogue": "Sir! Enemy reinforcements approaching from the upper level!", + "line": { + "current": 14, + "max": 26 + }, + "npc": "Dwarven Lieutenant" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dwarvencaptain-4", + "lineInfo": { + "dialogue": "There's too many of them, Algard!", + "line": { + "current": 15, + "max": 26 + }, + "npc": "Dwarven Captain" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-dwarvencaptain-5", + "lineInfo": { + "dialogue": "We may not be able to hold our current position for much longer!", + "line": { + "current": 16, + "max": 26 + }, + "npc": "Dwarven Captain" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-generalalgard-5", + "lineInfo": { + "dialogue": "I see.", + "line": { + "current": 17, + "max": 26 + }, + "npc": "General Algard" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-generalalgard-6", + "lineInfo": { + "dialogue": "Then there is only one thing left to-", + "line": { + "current": 18, + "max": 26 + }, + "npc": "General Algard" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-generalalgard-7", + "lineInfo": { + "dialogue": "It's... General Osseus?! But that means...", + "line": { + "current": 19, + "max": 26 + }, + "npc": "General Algard" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-generalosseus-1", + "lineInfo": { + "dialogue": "Garaheth has been slain!", + "line": { + "current": 20, + "max": 26 + }, + "npc": "General Osseus" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-generalosseus-2", + "lineInfo": { + "dialogue": "You Doguns have no choice but to surrender!", + "line": { + "current": 21, + "max": 26 + }, + "npc": "General Osseus" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-astal-1", + "lineInfo": { + "dialogue": "Impossible... How could... No...", + "line": { + "current": 22, + "max": 26 + }, + "npc": "Dogun Elder Astal" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-astal-2", + "lineInfo": { + "dialogue": "Very well... We will surrender...on one condition.", + "line": { + "current": 23, + "max": 26 + }, + "npc": "Dogun Elder Astal" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-astal-3", + "lineInfo": { + "dialogue": "You must never...bother us...ever again.", + "line": { + "current": 24, + "max": 26 + }, + "npc": "Dogun Elder Astal" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-generalalgard-8", + "lineInfo": { + "dialogue": "Then it is settled.", + "line": { + "current": 25, + "max": 26 + }, + "npc": "General Algard" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "moltenheights-generalalgard-9", + "lineInfo": { + "dialogue": "...Now, while they're vulnerable!", + "line": { + "current": 26, + "max": 26 + }, + "npc": "General Algard" + }, + "settings": { + "falloff": 200 + } + } + ] + } + } + }, + "Murder Mystery": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "murdermystery-captainlorias-1", + "lineInfo": { + "dialogue": "Stand back! This is a crime scene, under my authority. I cannot let you inside, not while you're this inexperienced, at least.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Detective Lorias" + } + }, + { + "fileOverride": "murdermystery-captainlorias-2", + "lineInfo": { + "dialogue": "Come talk to me again when you're level 73, and we may have need of you...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Detective Lorias" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "murdermystery-captainlorias-3", + "lineInfo": { + "dialogue": "Stand back, human! This is a crime scene, under my authority. I cannot let you inside.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Detective Lorias" + } + }, + { + "fileOverride": "murdermystery-captainlorias-4", + "lineInfo": { + "dialogue": "Although we are in need of some... assistance... and you are fairly experienced, are you not?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Detective Lorias" + } + }, + { + "fileOverride": "murdermystery-captainlorias-5", + "lineInfo": { + "dialogue": "Well, straight to the point... do you think I might be able to hire you as a private investigator?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Detective Lorias" + } + }, + { + "fileOverride": "murdermystery-captainlorias-6", + "lineInfo": { + "dialogue": "To put it bluntly, the owner of this house, Eminar, was murdered a few days ago, and what few leads we had have all gone cold.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Detective Lorias" + } + }, + { + "fileOverride": "murdermystery-captainlorias-7", + "lineInfo": { + "dialogue": "This is acting outside protocol, of course... but if you manage to catch the killer, I'm sure I could pull some strings and pay you for your work!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Detective Lorias" + } + }, + { + "fileOverride": "murdermystery-captainlorias-8", + "lineInfo": { + "dialogue": "I'll make sure no one stops you inside the crime scene. Head inside the house and see if you can find anything helpful.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Detective Lorias" + } + }, + { + "fileOverride": "murdermystery-captainlorias-9", + "lineInfo": { + "dialogue": "My soldiers and I will keep watch outside the house, and make sure you're not disturbed. Be careful in there!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Detective Lorias" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "murdermystery-captainlorias-10", + "lineInfo": { + "dialogue": "Have you made any progress? There was a smashed window in there, it might be a good place to start.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Detective Lorias" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "murdermystery-captainlorias-11", + "lineInfo": { + "dialogue": "If you find any more leads remember to come to me - and if you find the murder weapon, make sure to bring it to us immediately!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Detective Lorias" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "murdermystery-captainlorias-12", + "lineInfo": { + "dialogue": "Thank you for your help in catching the perpetrator!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Lorias" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "murdermystery-blackjackdealer-1", + "lineInfo": { + "dialogue": "Heya there! Fancy a quick game of blackjack?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Blackjack Dealer" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "murdermystery-blackjackdealer-2", + "lineInfo": { + "dialogue": "Ah, new to the game huh? No worries, lemme tell ya all about it!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Blackjack Dealer" + } + }, + { + "fileOverride": "murdermystery-blackjackdealer-3", + "lineInfo": { + "dialogue": "The rules are simple! I deal two cards face up to ya both face down, and two cards to me, one face up and one face down.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Blackjack Dealer" + } + }, + { + "fileOverride": "murdermystery-blackjackdealer-4", + "lineInfo": { + "dialogue": "Ya can then hit and get another card as many times as ya want, or stand and end ya turn. The aim is to get the value of your hand as close to 21 as possible!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Blackjack Dealer" + } + }, + { + "fileOverride": "murdermystery-blackjackdealer-5", + "lineInfo": { + "dialogue": "Number cards are worth what they say, all picture cards are worth 10, and an ace can be worth either 1 or 11, whichever works best for ya hand.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Blackjack Dealer" + } + }, + { + "fileOverride": "murdermystery-blackjackdealer-6", + "lineInfo": { + "dialogue": "Go over 21 and that's it - you're bust! Stand with your current hand and it's my turn to hit or stand to try and beat your hand.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Blackjack Dealer" + } + }, + { + "fileOverride": "murdermystery-blackjackdealer-7", + "lineInfo": { + "dialogue": "And if ya get a blackjack - that's an ace and a picture card or a ten - ya automatically get double ya money back!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Blackjack Dealer" + } + }, + { + "fileOverride": "murdermystery-blackjackdealer-8", + "lineInfo": { + "dialogue": "Sound fair enough? Alrighty, just right-click me again to play!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Blackjack Dealer" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "murdermystery-blackjackdealer-9", + "lineInfo": { + "dialogue": "Not right now? No worries - come back another time!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Blackjack Dealer" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "murdermystery-blackjackdealer-10", + "lineInfo": { + "dialogue": "Alrighty, let's play some blackjack!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Blackjack Dealer" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "murdermystery-blackjackdealer-11", + "lineInfo": { + "dialogue": "Not feelin' up to playin' right now? No worries, just drop by later!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Blackjack Dealer" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "murdermystery-blackjackdealer-12", + "lineInfo": { + "dialogue": "Good stuff! Put ya money in the pot and I'll start the deal.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Blackjack Dealer" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "murdermystery-blackjackdealer-13", + "lineInfo": { + "dialogue": "Woah! That's a whole lotta emeralds on one hand - a bit over our house limit. Try something smaller.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Blackjack Dealer" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "murdermystery-blackjackdealer-14", + "lineInfo": { + "dialogue": "Come on pal, you can't go that low! Bet something proper, yeah?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Blackjack Dealer" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "murdermystery-blackjackdealer-15", + "lineInfo": { + "dialogue": "Hey, pal, you gotta have the money in your inventory if you wanna place a bet!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Blackjack Dealer" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "murdermystery-captainlorias-13", + "lineInfo": { + "dialogue": "That's enough, Rohem! Stand down, or the guards will attack.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Detective Lorias" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "murdermystery-captainlorias-14", + "lineInfo": { + "dialogue": "Whatever, you pale-faced walking cowlick. You're headed to Lexdale Penitentiary with a charge of first-class murder. Guards, take him away.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Detective Lorias" + } + }, + { + "fileOverride": "murdermystery-captainlorias-15", + "lineInfo": { + "dialogue": "As for you, human, please accept my immense gratitude. We probably wouldn't have caught that rat without you.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Detective Lorias" + } + }, + { + "fileOverride": "murdermystery-captainlorias-16", + "lineInfo": { + "dialogue": "On behalf of the city of Cinfras, please accept these emeralds as compensation for your services. You were a fine detective today!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Detective Lorias" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "murdermystery-valimare-1", + "lineInfo": { + "dialogue": "How did ya find us down 'ere? I don't remember you... you're with the police, aren't ya? Here after Eminar, I suppose? ", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Valimare" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "murdermystery-rohem-1", + "lineInfo": { + "dialogue": "What brings you here today, human?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Rohem" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "murdermystery-rohem-2", + "lineInfo": { + "dialogue": "Ah, a human! A refreshing sight these days. You've come to see me, I presume? What brings you here?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Rohem" + } + }, + { + "fileOverride": "murdermystery-rohem-3", + "lineInfo": { + "dialogue": "An investigation!? Eminar? That's... that's absurd. I've done nothing wrong.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Rohem" + } + }, + { + "fileOverride": "murdermystery-rohem-4", + "lineInfo": { + "dialogue": "Still, the poor man. Eminar and I were good friends, you know. If it could help find his killer, I may have some information for you... strictly off-record, of course...", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Rohem" + } + }, + { + "fileOverride": "murdermystery-rohem-5", + "lineInfo": { + "dialogue": "Well. You see, there's an underground gambling den hidden in the city's sewers. Only the elite can get in, and Eminar happened to be a frequent visitor.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Rohem" + } + }, + { + "fileOverride": "murdermystery-rohem-6", + "lineInfo": { + "dialogue": "Once, he even brought me along with him.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Rohem" + } + }, + { + "fileOverride": "murdermystery-rohem-7", + "lineInfo": { + "dialogue": "Eminar, though, he often tried to cheat the other gamblers. I suppose it was only a matter of time before they had enough; most do not take cheating lightly.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Rohem" + } + }, + { + "fileOverride": "murdermystery-rohem-8", + "lineInfo": { + "dialogue": "Back to the point, many of them, including poor Eminar, had a symbol built into the sides of their homes, shaped like a snake. A proof of membership, you could say.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Rohem" + } + }, + { + "fileOverride": "murdermystery-rohem-9", + "lineInfo": { + "dialogue": "If you can find it, it will show you the way to get into the sewers. I'm sorry, I would tell you more if I knew more. But good luck with your investigation.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Rohem" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "murdermystery-rohem-10", + "lineInfo": { + "dialogue": "Some of those gamblers had a symbol built into their homes, shaped like a snake. If you find it, it'll show you the way into the sewers. Good luck, officer.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Rohem" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "murdermystery-rohem-11", + "lineInfo": { + "dialogue": "Ah... you again! You're back. I see that. I must admit, I did not expect you to return... so soon...", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Rohem" + } + }, + { + "fileOverride": "murdermystery-rohem-12", + "lineInfo": { + "dialogue": "You really did find your way down there? Oh, that's... excellent... I hope the investigation is going well. Now if you'll just leave me be-", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Rohem" + } + }, + { + "fileOverride": "murdermystery-rohem-13", + "lineInfo": { + "dialogue": "Valimare? Bah! Why would you trust anything he says? He's a criminal! A scam artist! I mean, I did direct you to him, but...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Rohem" + } + }, + { + "fileOverride": "murdermystery-rohem-14", + "lineInfo": { + "dialogue": "He- He's the one you should be arresting. Eminar was a danger to society, got what he deserved, the fool-", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Rohem" + } + }, + { + "fileOverride": "murdermystery-rohem-15", + "lineInfo": { + "dialogue": "Wait! No! Don't turn me in! Can't you let me finish my drink in peace? Get out, get out, you can't prove anything!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Rohem" + } + }, + { + "fileOverride": "murdermystery-rohem-16", + "lineInfo": { + "dialogue": "Besides, have you ever heard of a little thing called evidence? You don't have any proof!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Rohem" + } + }, + { + "fileOverride": "murdermystery-rohem-17", + "lineInfo": { + "dialogue": "Now, officer, if you don't have a proper warrant, I expect you to vacate my property immediately!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Rohem" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "murdermystery-rohem-18", + "lineInfo": { + "dialogue": "Get out of my house, officer, and don't you dare go rooting around in my property!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Rohem" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "murdermystery-rohem-19", + "lineInfo": { + "dialogue": "For the last time officer, would you either show me a warrant or get out of my- what are you doing in my garden?!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Rohem" + } + }, + { + "fileOverride": "murdermystery-rohem-20", + "lineInfo": { + "dialogue": "A... a hatchet? I don't know what you mean, I- I've never seen that before in my life!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Rohem" + } + }, + { + "fileOverride": "murdermystery-rohem-21", + "lineInfo": { + "dialogue": "Gah! Curse you, human! I might be headed to jail, but I can send you straight to hell!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Rohem" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "murdermystery-rohem-22", + "lineInfo": { + "dialogue": "Augh! Fine, you've got me. But mark my words, this won't be the last you hear of me, human!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Rohem" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "murdermystery-child-1", + "lineInfo": { + "dialogue": "Hi! I'm digging a hole in my garden, just like Mr. Rohem did last night!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Child" + } + } + ] + } + } + }, + "Mushroom Man": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "mushroomman-tasim-1", + "lineInfo": { + "dialogue": "soldier, hello! This place really is nice, isn't it? I'd like to stay a while longer before moving on towards Detlas, but I'll be ready soon.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-tasim-2", + "lineInfo": { + "dialogue": "In the meantime, I've been thinking about what we could do to help this place... I've maybe got something.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-tasim-3", + "lineInfo": { + "dialogue": "Take a look at that villager over there. He's acting a little off, like he's got something going on. I wonder...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-tasim-4", + "lineInfo": { + "dialogue": "Alright, I've decided. I'm feeling a little restless, so let's go over there and see if there's anything we can help with!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-tasim-5", + "lineInfo": { + "dialogue": "Maybe we can leave this place better off than it was when we got here!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Tasim" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "mushroomman-yahya-1", + "lineInfo": { + "dialogue": "G-... Hi! H-how can I help you on this... this p-perfectly fine and n-n-normal day!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "mushroomman-tasim-6", + "lineInfo": { + "dialogue": "Sorry to interrupt- we're soldiers traveling through this town, and you looked like the sort of person who might need the kind of help soldiers can provide. Anything we can help with?", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-yahya-2", + "lineInfo": { + "dialogue": "O-oh! No, t-there's nothing going on. Not a th-thing. My m-m-mushrooms are... they're fine. Why are you a-asking? Ev-... everything is g-great. W-why wouldn't it b-be?", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "mushroomman-yahya-3", + "lineInfo": { + "dialogue": "...O-okay, fine, y-you caught me! My mushrooms... my m-mushrooms aren't fine! T-they're bad, even! A-are you hap-... happy now?", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "mushroomman-tasim-7", + "lineInfo": { + "dialogue": "Ehm- no, but that's why we're here! Is there anything we can do to help your... uh. Your mushrooms?", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-yahya-4", + "lineInfo": { + "dialogue": "Hm. One soldier, two s-soldier... Y-you look weak. I've s-seen str-... stronger. B-but- eheh, the- the s-stronger soldiers are... not here. Y-you'll be good enough. Maybe.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "mushroomman-yahya-5", + "lineInfo": { + "dialogue": "I- my favorite mushroom spot. I c-can't use it any-... anymore. Spiders. L-lots of spiders. They've t-t-taken over it... I can't get... mushrooms. Can y-you kill the s-s-spiders? Mushrooms.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "mushroomman-tasim-8", + "lineInfo": { + "dialogue": "We can kill spiders! Right, soldier? Come on, this is what we're here to do! We became soldiers to help the people of Wynn, didn't we? We'll help you get your mushrooms back, sir.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-yahya-6", + "lineInfo": { + "dialogue": "H-hm. Good. I can't m-make my soup without... mushrooms. F-follow me, I'll take you to the-... the spiders. B-bad spiders.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Yahya" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "mushroomman-yahya-7", + "lineInfo": { + "dialogue": "H-here we are. I- I can f-feel the m-m-mushrooms... from here. And the s-spiders! No-... no good.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "mushroomman-yahya-8", + "lineInfo": { + "dialogue": "S-so! Mushrooms. Those-... those bad c-creepy c-crawly s-s-spiders... Kill them. P-please?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "mushroomman-tasim-9", + "lineInfo": { + "dialogue": "We wouldn't have come here if we weren't planning to. Alright, soldier, let's clear out some spiders!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Tasim" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "mushroomman-tasim-10", + "lineInfo": { + "dialogue": "You know... I'm starting to wonder what I've gotten us into.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-tasim-11", + "lineInfo": { + "dialogue": "I'm just hoping this all works out in the end.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "mushroomman-yahya-9", + "lineInfo": { + "dialogue": "C-come on! Keep up!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Yahya" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "mushroomman-yahya-10", + "lineInfo": { + "dialogue": "Soon... s-soon I will have my m-mushrooms again...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "mushroomman-yahya-11", + "lineInfo": { + "dialogue": "G-gah! D-don't you know it's rude to-... to e-eavesdrop?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Yahya" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "mushroomman-yahya-12", + "lineInfo": { + "dialogue": "I-is it done? S-s-spiders... No m-more spiders? Is my m-m-mushroom patch cl-... cleared?", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "mushroomman-tasim-12", + "lineInfo": { + "dialogue": "Looks cleared to me. These are... uh... some fine mushrooms!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-yahya-13", + "lineInfo": { + "dialogue": "Th-thank you soldiers! Th-that was-... I mean. I-it was f-fine, I g-... guess.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "mushroomman-yahya-14", + "lineInfo": { + "dialogue": "...O-oh. Do I n-need to pay you... now? Heh. Is- is [2 Emeralds] fine with y-you..?", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "mushroomman-tasim-13", + "lineInfo": { + "dialogue": "...Come on.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-yahya-15", + "lineInfo": { + "dialogue": "Oho okay, ok-... okay! It was a joke, don't get all ex-... ex-... excited. Here, just take-", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "mushroomman-yahya-16", + "lineInfo": { + "dialogue": "G-gah! C-creepy! C-c-crawly! S-s-s-spiders!!!", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Yahya" + } + }, + { + "fileOverride": "mushroomman-tasim-14", + "lineInfo": { + "dialogue": "Yahya! No!", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Tasim" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "mushroomman-tasim-15", + "lineInfo": { + "dialogue": "I-... this is bad. This is really bad. We need to tell the Mayor, now.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Tasim" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "mushroomman-tasim-16", + "lineInfo": { + "dialogue": "Come on, we need to tell the mayor what happened!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "mushroomman-mayoralvin-1", + "lineInfo": { + "dialogue": "Ah, hello travelers. You seem to be in a rush- has something happened?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "mushroomman-tasim-17", + "lineInfo": { + "dialogue": "Yes! Yes, something- something has happened. We went with Yahya to help him with a problem he was having with spiders-", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-mayoralvin-2", + "lineInfo": { + "dialogue": "Yes, yes, I know of Yahya's antics... He doesn't seem to be with you. Has he ran off on you, just as Ope did?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "mushroomman-tasim-18", + "lineInfo": { + "dialogue": "No- no. When we finished clearing out the spiders, we were swarmed- and they took him!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-mayoralvin-3", + "lineInfo": { + "dialogue": "...Oh. Oh, dear. That isn't good at all. If they're making moves such as this, unprovoked...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "mushroomman-mayoralvin-4", + "lineInfo": { + "dialogue": "You two are soldiers, yes? I would ask you to continue your travels to Detlas. Find an Admiral Aegis- tell him our little village needs aid.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "mushroomman-tasim-19", + "lineInfo": { + "dialogue": "I-... of course. We'll set out immediately. Come on, soldier.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Tasim" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "mushroomman-tasim-20", + "lineInfo": { + "dialogue": "So we're finally going to Detlas... Not the circumstances I would have liked to be traveling under, though.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-tasim-21", + "lineInfo": { + "dialogue": "Detlas' military will be able to sort this out. Surely...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "mushroomman-aledar-1", + "lineInfo": { + "dialogue": "...and that's how we managed to defeat that undead swarm, sir!", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "mushroomman-admiralaegis-1", + "lineInfo": { + "dialogue": "That's good to hear. Thank you for your work, Aledar. I'll speak to Lieutenant Van and see if he'd be willing to take you into his squad.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "mushroomman-aledar-2", + "lineInfo": { + "dialogue": "Thank you for the opportunity, sir. I won't let you down-... Wait, is that- Tasim and soldier?", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "mushroomman-tasim-22", + "lineInfo": { + "dialogue": "Aledar! We've finally made it to Detlas. We've had... something of an adventure, getting here.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-admiralaegis-2", + "lineInfo": { + "dialogue": "Ah, you two must be the the recruits Aledar has been telling us all about. It's good to finally meet you, though I can't help but notice you seem to have arrived in a rush.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "mushroomman-tasim-23", + "lineInfo": { + "dialogue": "Right! Right. We've arrived from Alekin Village, with bad news and a request for aid. The spiders of the forest have grown hostile, and threaten the town.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-tasim-24", + "lineInfo": { + "dialogue": "One of their townsfolk was captured and taken away in front of our eyes. Mayor Alvin sent us here to request the aid of Detlas' army.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-admiralaegis-3", + "lineInfo": { + "dialogue": "Bad news, indeed. Very well, we will make preparations. For the time being, the two of you should rest and hone your skills. Captain Ragon here in the barracks would gladly offer some training.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "mushroomman-tasim-25", + "lineInfo": { + "dialogue": "Thank you, sir. But is there anything we could do to actually help?", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "mushroomman-admiralaegis-4", + "lineInfo": { + "dialogue": "Enthusiastic, aren't you! Let me think... I believe Captain Fenor out by the west gate was looking for aid. If you're willing, I'd suggest you speak with him.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Admiral Aegis" + } + }, + { + "fileOverride": "mushroomman-aledar-3", + "lineInfo": { + "dialogue": "And Lieutenant Van is planning a raid on a corrupt stronghold! I'm sure he'd be glad to have more forces with him.", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "mushroomman-admiralaegis-5", + "lineInfo": { + "dialogue": "Yes, yes. Well, I must be off. If the threat of Nivla's spiders is growing... we must prepare accordingly. I hope to hear of your future endeavors, all three of you.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Admiral Aegis" + } + } + ] + } + } + }, + "Nesaak Plains": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "nesaakplains-malecitizen-1", + "lineInfo": { + "dialogue": "Sir Theorick, if you, um...if you have a moment? Your tribute is here...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Citizen" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-1", + "lineInfo": { + "dialogue": "...good. Thank you. Good to see some who honestly respect what I’m trying to do for all of you. Was there anyone else?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-femalecitizen-1", + "lineInfo": { + "dialogue": "Ah...no. There...there wasn’t. Not this time. They feel like you’re taking too much from them, which I don’t agree with, but-", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Citizen" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-2", + "lineInfo": { + "dialogue": "...ask them, if they would prefer their money, or their lives. Am I not protecting them? Is it really so much to ask that I get something in return?", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-malecitizen-2", + "lineInfo": { + "dialogue": "We...we know. We told them that, too...we’re sorry.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Citizen" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-3", + "lineInfo": { + "dialogue": "You aren’t the ones who need to apologize! I'm aware it's a voluntary contribution, but do they have any idea how difficult it is to cast magic like this regularly?!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "nesaakplains-theorick-4", + "lineInfo": { + "dialogue": "This is absolutely ridiculous! You know it is! You can’t say it isn’t!", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-5", + "lineInfo": { + "dialogue": "The people can’t defend themselves, you’ve seen them try. All it ends up doing is making our lives harder!", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-6", + "lineInfo": { + "dialogue": "Why SHOULDN'T I ask for just a tiny bit of compensation in return? A mere pittance more than gratitude?", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-7", + "lineInfo": { + "dialogue": "You can't fill someone’s stomach with kind words, father!", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-marius-1", + "lineInfo": { + "dialogue": "Theorick, listen-", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Marius" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-8", + "lineInfo": { + "dialogue": "Don’t you DARE change the topic! I’ve listened to what you’ve said, and it’s all nonsense!", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-9", + "lineInfo": { + "dialogue": "Platitudes and non-answers, never any straight conversations with you. Never, not once!", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-marius-2", + "lineInfo": { + "dialogue": "I can only warn you, Theorick. Leaving us will be the province's end. I brought you all together for a reason. Think of the consequences of your actions.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Marius" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-10", + "lineInfo": { + "dialogue": "Pah! As though you are! I’m out in the thick of it, saving this province! What have YOU done, except put a roof above our heads?", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-11", + "lineInfo": { + "dialogue": "You hardly taught me anything! Dwendle hardly taught me anything! Rickeo hardly taught me anything! And Mael actively makes me stupider every time he opens his mouth!", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-12", + "lineInfo": { + "dialogue": "Open your eyes and knock the wax out of your ears! This can’t continue as it is!", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "nesaakplains-rickeo-1", + "lineInfo": { + "dialogue": "Surprise, surprise, Theo. You’re late.", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Rickeo" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-13", + "lineInfo": { + "dialogue": "Don't even start, Ricke.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-rickeo-2", + "lineInfo": { + "dialogue": "You're really into being cold, huh?", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Rickeo" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-dwendle-1", + "lineInfo": { + "dialogue": "Look, we’re all here for the same reason-", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Dwendle" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-14", + "lineInfo": { + "dialogue": "Don't touch me.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-mael-1", + "lineInfo": { + "dialogue": "Are you alright?", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Mael" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-rickeo-3", + "lineInfo": { + "dialogue": "You shouldn't have done that.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Rickeo" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-15", + "lineInfo": { + "dialogue": "Now you've done it, Rickeo.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-dwendle-2", + "lineInfo": { + "dialogue": "Theo, stop.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Dwendle" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-dwendle-3", + "lineInfo": { + "dialogue": "Just this once.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Dwendle" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-dwendle-4", + "lineInfo": { + "dialogue": "Stop.", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Dwendle" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-16", + "lineInfo": { + "dialogue": "Make me.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "nesaakplains-dwendle-5", + "lineInfo": { + "dialogue": "Thanks, Ricke...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Dwendle" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-rickeo-4", + "lineInfo": { + "dialogue": "Don't worry about it... Let's finish this, shall we?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Rickeo" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-dwendle-6", + "lineInfo": { + "dialogue": "Yeah. Dad should have done this a long time ago.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Dwendle" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "nesaakplains-mael-2", + "lineInfo": { + "dialogue": "ENOUGH.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mael" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "nesaakplains-mael-3", + "lineInfo": { + "dialogue": "Are you out of your minds?? You were about to kill your brother!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Mael" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-dwendle-7", + "lineInfo": { + "dialogue": "I... You're... right. We...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Dwendle" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-mael-4", + "lineInfo": { + "dialogue": "You should leave. All of you. This isn’t what being a Twain was about...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Mael" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-theorick-17", + "lineInfo": { + "dialogue": "Mph. None of us are Twains. Not me. Not you. We’re an old man's delusion.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Theorick" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-rickeo-5", + "lineInfo": { + "dialogue": "Mael... I...", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Rickeo" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-mael-5", + "lineInfo": { + "dialogue": "I know, Ricke. Just go.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Mael" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "nesaakplains-mael-6", + "lineInfo": { + "dialogue": "Dad... I'm sorry...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Mael" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-marius-3", + "lineInfo": { + "dialogue": "Well... At least you can’t say my funeral was boring.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-mael-7", + "lineInfo": { + "dialogue": "What does all this mean? The Twains are over?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Mael" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "nesaakplains-marius-4", + "lineInfo": { + "dialogue": "The Twains ended the day Theorick left us. You should stay here though, there is one who will one day need your help...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + } + ] + } + } + }, + "Nexus of Light": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "nexusoflight-orphion-1", + "lineInfo": { + "dialogue": "My pulse... Your brilliance is blinding- Your power so much more than I expected.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Orphion" + } + }, + { + "fileOverride": "nexusoflight-orphion-2", + "lineInfo": { + "dialogue": "The dark aberration... It brought shadows to me- And from me, to my land, then to yours.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Orphion" + } + }, + { + "fileOverride": "nexusoflight-orphion-3", + "lineInfo": { + "dialogue": "Gavel's decline will end, with my freedom... Slowly. I am still left dim, but ever brightening.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Orphion" + } + }, + { + "fileOverride": "nexusoflight-orphion-4", + "lineInfo": { + "dialogue": "Its brood are sterile. As the dark burns away, so too will they- And the land will recover.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Orphion" + } + }, + { + "fileOverride": "nexusoflight-orphion-5", + "lineInfo": { + "dialogue": "Yet... A problem beyond my pale yet persists. Dawn has broken, but in time another dusk will arrive.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Orphion" + } + }, + { + "fileOverride": "nexusoflight-orphion-6", + "lineInfo": { + "dialogue": "Lari... Achara. She seeks to illuminate the dark. You must shine your light as she...but elsewhere.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Orphion" + } + }, + { + "fileOverride": "nexusoflight-orphion-7", + "lineInfo": { + "dialogue": "The dark has power unknown- It did not before. Through this power, its shadows reached to me.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Orphion" + } + }, + { + "fileOverride": "nexusoflight-orphion-8", + "lineInfo": { + "dialogue": "The delicate stasis was disrupted... And it cannot be blamed solely on the dark itself.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Orphion" + } + }, + { + "fileOverride": "nexusoflight-orphion-9", + "lineInfo": { + "dialogue": "Rest now, my pulse, and prepare, for there is another force who you must bring to peace.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Orphion" + } + }, + { + "fileOverride": "nexusoflight-orphion-10", + "lineInfo": { + "dialogue": "ⓢⓗⓔ ⓜⓤⓢⓣ ⓑⓔ ⓢⓝⓤⓕⓕⓔⓓ ⓞⓤⓣ. ⓗⓔⓡ ⓘⓝⓕⓛⓤⓔⓝⓒⓔ ⓕⓔⓔⓓⓢ ⓣⓗⓘⓢ ⓢⓔⓝⓢⓔⓛⓔⓢⓢ ⓦⓐⓡ.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Orphion" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "2": { + "dialogues": [ + { + "fileOverride": "nexusoflight-orphion-11", + "lineInfo": { + "dialogue": "Enough. My gratefulness does not exceed my patience. Let this act as a warning, my pulse.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Orphion" + } + } + ] + } + } + }, + "Non-Quest NPC": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "nonquestnpc-vanguardvan-1", + "lineInfo": { + "dialogue": "Oh, a Ragni soldier. It's been awhile since I've seen one of you out here.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Vagrant Van" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "nonquestnpc-mainragniguard-1", + "lineInfo": { + "dialogue": "Welcome to Ragni, new recruit. How's Fruma these days? Ah right, directions.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ragni Guard" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "nonquestnpc-mainragniguard-2", + "lineInfo": { + "dialogue": "Welcome back, I suppose you're a Wynn citizen now. I've heard quite a few things about your deeds throughout the province.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ragni Guard" + } + } + ] + } + } + }, + "Olux Swamp": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "oluxswamp-golem-1", + "lineInfo": { + "dialogue": "COMMAND RECEIVED - REMOVE OBJECT.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olux Guard Golem" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "oluxswamp-golem-2", + "lineInfo": { + "dialogue": "OBJECTIVE FOUND. REMOVING BOULDER.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olux Guard Golem" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "oluxswamp-golem-3", + "lineInfo": { + "dialogue": "OBJECTIVE COMPLETED. RETURNING TO POST.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Olux Guard Golem" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "oluxswamp-mayor-1", + "lineInfo": { + "dialogue": "A-are you here?", + "line": { + "current": 1, + "max": 17 + }, + "npc": "Mayor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-urelix-1", + "lineInfo": { + "dialogue": "Good to see you again, Mayor. Glad you found the place.", + "line": { + "current": 2, + "max": 17 + }, + "npc": "Mysterious Figure" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-mayor-2", + "lineInfo": { + "dialogue": "I've lived here my whole life, this used to be a nice building.", + "line": { + "current": 3, + "max": 17 + }, + "npc": "Mayor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-urelix-2", + "lineInfo": { + "dialogue": "Mmm. I assume the golems are working, as I said they would?", + "line": { + "current": 4, + "max": 17 + }, + "npc": "Mysterious Figure" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-mayor-3", + "lineInfo": { + "dialogue": "Yes... They are. But—", + "line": { + "current": 5, + "max": 17 + }, + "npc": "Mayor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-urelix-3", + "lineInfo": { + "dialogue": "Excellent, then we can move onto why we're here.", + "line": { + "current": 6, + "max": 17 + }, + "npc": "Mysterious Figure" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-mayor-4", + "lineInfo": { + "dialogue": "W-what's that?", + "line": { + "current": 7, + "max": 17 + }, + "npc": "Mayor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-urelix-4", + "lineInfo": { + "dialogue": "My fee.", + "line": { + "current": 8, + "max": 17 + }, + "npc": "Mysterious Figure" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-mayor-5", + "lineInfo": { + "dialogue": "Right, of course. I can take some emeralds from the city vault, just give me a week.", + "line": { + "current": 9, + "max": 17 + }, + "npc": "Mayor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-urelix-5", + "lineInfo": { + "dialogue": "We both know Olux has not a single emerald to its name.", + "line": { + "current": 10, + "max": 17 + }, + "npc": "Mysterious Figure" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-urelix-6", + "lineInfo": { + "dialogue": "Besides, you very well know that we agreed on another form of payment.", + "line": { + "current": 11, + "max": 17 + }, + "npc": "Mysterious Figure" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-mayor-6", + "lineInfo": { + "dialogue": "I was hoping that you might reconsider in favour of emeralds?", + "line": { + "current": 12, + "max": 17 + }, + "npc": "Mayor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-urelix-7", + "lineInfo": { + "dialogue": "Are you trying to go back on our deal?", + "line": { + "current": 13, + "max": 17 + }, + "npc": "Mysterious Figure" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-mayor-7", + "lineInfo": { + "dialogue": "No, I just—", + "line": { + "current": 14, + "max": 17 + }, + "npc": "Mayor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-urelix-8", + "lineInfo": { + "dialogue": "Hit him.", + "line": { + "current": 15, + "max": 17 + }, + "npc": "Mysterious Figure" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-mayor-8", + "lineInfo": { + "dialogue": "Stop! STOP! OK, I'll get you what you need.", + "line": { + "current": 16, + "max": 17 + }, + "npc": "Mayor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "oluxswamp-urelix-9", + "lineInfo": { + "dialogue": "Good. I need four brought to me by midnight. Alive.", + "line": { + "current": 17, + "max": 17 + }, + "npc": "Mysterious Figure" + }, + "settings": { + "falloff": 200 + } + } + ] + } + } + }, + "One Thousand Meters Under": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-thesecretary-1", + "lineInfo": { + "dialogue": "Hello, welcome to Ynnos’ facility.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "The Secretary" + } + }, + { + "fileOverride": "onethousandmetersunder-thesecretary-2", + "lineInfo": { + "dialogue": "Oh, you're here about the job vacancy? Well, you’re a little late.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "The Secretary" + } + }, + { + "fileOverride": "onethousandmetersunder-thesecretary-3", + "lineInfo": { + "dialogue": "There might still be time, just sneak in to the conference room behind me.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "The Secretary" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-thesecretary-4", + "lineInfo": { + "dialogue": "How's the mission going?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "The Secretary" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-scientistynnos-1", + "lineInfo": { + "dialogue": "*Ahem* Welcome, everyone.", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Scientist Ynnos" + } + }, + { + "fileOverride": "onethousandmetersunder-scientistynnos-2", + "lineInfo": { + "dialogue": "I am Ynnos, one of the leading scientists in Gavel. You’re here because.. Well you read the help wanted sign.", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Scientist Ynnos" + } + }, + { + "fileOverride": "onethousandmetersunder-scientistynnos-3", + "lineInfo": { + "dialogue": "Allow me to explain the situation we’re in. It’s a series of unfortunate events. I study the amazing properties of crystals and other geodes.", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Scientist Ynnos" + } + }, + { + "fileOverride": "onethousandmetersunder-scientistynnos-4", + "lineInfo": { + "dialogue": "I was funded by a private organisation, however that seems to have stopped. So.. We had to make cuts in the budget.", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Scientist Ynnos" + } + }, + { + "fileOverride": "onethousandmetersunder-scientistynnos-5", + "lineInfo": { + "dialogue": "One of those, was using cheaper rope. While moving the crystal across Ahmsord, well, it snapped. The crystal fell.", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Scientist Ynnos" + } + }, + { + "fileOverride": "onethousandmetersunder-scientistynnos-6", + "lineInfo": { + "dialogue": "I can not stress the value of that crystal. It had many unique properties that are allowing me to understand why the sky islands float the way they do.", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Scientist Ynnos" + } + }, + { + "fileOverride": "onethousandmetersunder-scientistynnos-7", + "lineInfo": { + "dialogue": "They hold the very key to restoring this land to being whole once more... But it’s gone.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Scientist Ynnos" + } + }, + { + "fileOverride": "onethousandmetersunder-scientistynnos-8", + "lineInfo": { + "dialogue": "Fortunately, I detected an impact. It’s hit something down in the void. We’re not sure what, however or how deep.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Scientist Ynnos" + } + }, + { + "fileOverride": "onethousandmetersunder-scientistynnos-9", + "lineInfo": { + "dialogue": "Your mission will be to retrieve the crystal in a specially designed ship to withstand the void. We barely scraped it out of the budget, so try to bring it back in one piece.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Scientist Ynnos" + } + }, + { + "fileOverride": "onethousandmetersunder-scientistynnos-10", + "lineInfo": { + "dialogue": "If you think you are not up for the challenge, leave now...", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Scientist Ynnos" + } + }, + { + "fileOverride": "onethousandmetersunder-scientistynnos-11", + "lineInfo": { + "dialogue": "When you think you are ready, exit the room behind me and meet me at the dock as soon as possible.", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Scientist Ynnos" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-kantor-1", + "lineInfo": { + "dialogue": "Attention crew members.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Kantor" + } + }, + { + "fileOverride": "onethousandmetersunder-kantor-2", + "lineInfo": { + "dialogue": "This is the ship's mechanic. There appears to be a fault on the lower deck. I request urgent assistance.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Kantor" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "5": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-arlene-1", + "lineInfo": { + "dialogue": "I wonder what the mechanic is doing?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Arlene" + } + }, + { + "fileOverride": "onethousandmetersunder-arlene-2", + "lineInfo": { + "dialogue": "He has been screaming and crying for a while now. I hope everything is alright down there.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Arlene" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-kantor-3", + "lineInfo": { + "dialogue": "Ah finally! One of the air pipes has shattered, we need to patch it up ASAP!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Kantor" + } + }, + { + "fileOverride": "onethousandmetersunder-kantor-4", + "lineInfo": { + "dialogue": "Quick, head into the room behind me and line up the white glass with the blue blocks. I'll control things from here!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Kantor" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-kantor-5", + "lineInfo": { + "dialogue": "Oh wow, thanks for the help! You should head up to the resting room and take a nap before we arrive at the first island.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kantor" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-burne-1", + "lineInfo": { + "dialogue": "Did you just come up from the basement?! There were some pretty worrying sounds down there!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Burne" + } + }, + { + "fileOverride": "onethousandmetersunder-burne-2", + "lineInfo": { + "dialogue": "You should probably check with the mechanic if you haven't already.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Burne" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-captainolof-1", + "lineInfo": { + "dialogue": "We have encountered out first island, 100m down. Crew members, climb up the ladder and search the island for the crystal.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Olof" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "10": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-manny-1", + "lineInfo": { + "dialogue": "Who would've thought that the crystal fell that far...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Manny" + } + }, + { + "fileOverride": "onethousandmetersunder-manny-2", + "lineInfo": { + "dialogue": "But after all, there's still a lot ahead of us!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Manny" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-captainolof-2", + "lineInfo": { + "dialogue": "We've arrived at the next void island.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Captain Olof" + } + }, + { + "fileOverride": "onethousandmetersunder-captainolof-3", + "lineInfo": { + "dialogue": "The void islands are really different from Gavel... Or are we still even in Gavel?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Captain Olof" + } + }, + { + "fileOverride": "onethousandmetersunder-captainolof-4", + "lineInfo": { + "dialogue": "Anyway, let's explore the island, look for the crystal, and return to Ahmsord!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Captain Olof" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-rex-1", + "lineInfo": { + "dialogue": "Hmm. Strange, I didn't think plants could grow down here.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Rex" + } + }, + { + "fileOverride": "onethousandmetersunder-rex-2", + "lineInfo": { + "dialogue": "Apparently I was wrong. They look rather sickly, though.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Rex" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-jesp-1", + "lineInfo": { + "dialogue": "This is just trash!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Jesp" + } + }, + { + "fileOverride": "onethousandmetersunder-jesp-2", + "lineInfo": { + "dialogue": "Do the people of Ahmsord just throw their garbage out the window or what?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Jesp" + } + }, + { + "fileOverride": "onethousandmetersunder-jesp-3", + "lineInfo": { + "dialogue": "Have you found the crystal? Because I haven't.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Jesp" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-captainolof-5", + "lineInfo": { + "dialogue": "Have you looked around for the island for the crystal yet?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Captain Olof" + } + }, + { + "fileOverride": "onethousandmetersunder-captainolof-6", + "lineInfo": { + "dialogue": "If you haven't found anything, jump back in the submarine and I'll take us down to the next one.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Captain Olof" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-captainolof-7", + "lineInfo": { + "dialogue": "Oh my, what are these creatures!?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Captain Olof" + } + }, + { + "fileOverride": "onethousandmetersunder-captainolof-8", + "lineInfo": { + "dialogue": "They are attacking the windshield in the front room, it looks like it's about to break any moment!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Captain Olof" + } + }, + { + "fileOverride": "onethousandmetersunder-captainolof-9", + "lineInfo": { + "dialogue": "Quick, you! Come to the cockpit and press on the window to scare them off!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Captain Olof" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "16": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-captainolof-10", + "lineInfo": { + "dialogue": "Get out of here and try again!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Olof" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-captainolof-11", + "lineInfo": { + "dialogue": "This is not good, the creatures destroyed part of the windshield.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Captain Olof" + } + }, + { + "fileOverride": "onethousandmetersunder-captainolof-12", + "lineInfo": { + "dialogue": "We can't continue much longer with a broken windshield, we'll have to repair it at another island.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Captain Olof" + } + }, + { + "fileOverride": "onethousandmetersunder-captainolof-13", + "lineInfo": { + "dialogue": "Ynnos said the void has pockets of toxic gas... Go take a nap, I'll wake you up when we're there.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Captain Olof" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-jesp-4", + "lineInfo": { + "dialogue": "Pfft. I would've done a better job saving the windshield.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Jesp" + } + }, + { + "fileOverride": "onethousandmetersunder-jesp-5", + "lineInfo": { + "dialogue": "Too bad I was in another room.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Jesp" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-captainolof-14", + "lineInfo": { + "dialogue": "Attention crew. We have arrived at the second island, 300m down. We cannot progress without making some emergency repairs.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Captain Olof" + } + }, + { + "fileOverride": "onethousandmetersunder-captainolof-15", + "lineInfo": { + "dialogue": "Crew, please disembark and search resources to help repair the ship. We need glass and some kind of glue.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Captain Olof" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "20": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-burne-3", + "lineInfo": { + "dialogue": "I'm bored, I want to go back home.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Burne" + } + }, + { + "fileOverride": "onethousandmetersunder-burne-4", + "lineInfo": { + "dialogue": "I just came because I wanted the reward, I'm not planning on helping.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Burne" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-captainolof-16", + "lineInfo": { + "dialogue": "The void creatures did heavy damage to our craft, we need to repair the submarine.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Captain Olof" + } + }, + { + "fileOverride": "onethousandmetersunder-captainolof-17", + "lineInfo": { + "dialogue": "I'm not sure what we'll find here, but we'll need some glue and glass...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Captain Olof" + } + }, + { + "fileOverride": "onethousandmetersunder-captainolof-18", + "lineInfo": { + "dialogue": "I doubt we'll find those exact things, so get resourceful!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Captain Olof" + } + }, + { + "fileOverride": "onethousandmetersunder-captainolof-19", + "lineInfo": { + "dialogue": "Bring me 5 Sand Substitutes and 10 Glue Substitutes, that should be enough.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Captain Olof" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-captainolof-20", + "lineInfo": { + "dialogue": "We'll need 5 Sand Substitutes and 10 Glue Substitutes to repair the ship.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Olof" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-kantor-6", + "lineInfo": { + "dialogue": "Oh no, this isn't good. The windshield is destroyed...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Kantor" + } + }, + { + "fileOverride": "onethousandmetersunder-kantor-7", + "lineInfo": { + "dialogue": "I thought this trip was going to be easy.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Kantor" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-manny-3", + "lineInfo": { + "dialogue": "Huh, sand?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Manny" + } + }, + { + "fileOverride": "onethousandmetersunder-manny-4", + "lineInfo": { + "dialogue": "This sand must've fallen from the sky islands, but why is it red?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Manny" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-captainolof-21", + "lineInfo": { + "dialogue": "Ech! What is this stuff? Well, this should do the trick.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Captain Olof" + } + }, + { + "fileOverride": "onethousandmetersunder-captainolof-22", + "lineInfo": { + "dialogue": "The mechanic and I will start repairing. It'll take a while, so enter the submarine and rest up.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Captain Olof" + } + }, + { + "fileOverride": "onethousandmetersunder-captainolof-23", + "lineInfo": { + "dialogue": "We'll continue the trip when we've repaired the ship.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Captain Olof" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-captainolof-24", + "lineInfo": { + "dialogue": "Go rest up; The mechanic and I can take care of this ourselves.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Captain Olof" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-jesp-6", + "lineInfo": { + "dialogue": "This is the mechanic, requesting urgent assistance in the basement!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Jesp" + } + }, + { + "fileOverride": "onethousandmetersunder-jesp-7", + "lineInfo": { + "dialogue": "Toxic gas has leaked in through the submarine's vents, someone will have to manually close them.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Jesp" + } + }, + { + "fileOverride": "onethousandmetersunder-jesp-8", + "lineInfo": { + "dialogue": "I'll control things from here, someone get down to the lowest level and close those vents!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Jesp" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "28": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-kantor-8", + "lineInfo": { + "dialogue": "What's that smell?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Kantor" + } + }, + { + "fileOverride": "onethousandmetersunder-kantor-9", + "lineInfo": { + "dialogue": "It smells really...sterile? Does this mean I have to work...?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Kantor" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-captainolof-25", + "lineInfo": { + "dialogue": "Attention crew. We have arrived at the next island 700m down.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Captain Olof" + } + }, + { + "fileOverride": "onethousandmetersunder-captainolof-26", + "lineInfo": { + "dialogue": "Disembark and start the search for the crystal.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Captain Olof" + } + }, + { + "fileOverride": "onethousandmetersunder-captainolof-27", + "lineInfo": { + "dialogue": "Let's hope it's here... I don't know how much more void my body can handle.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Captain Olof" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "30": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-rex-3", + "lineInfo": { + "dialogue": "Look out! soldier, we'll build a bridge to the other island whilst you defend us from the mobs!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Rex" + }, + "settings": { + "falloff": 150, + "position": { + "x": 11993.0, + "y": 70.0, + "z": -3218.0 + } + } + }, + { + "fileOverride": "onethousandmetersunder-manny-5", + "lineInfo": { + "dialogue": "Don't die back there!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Manny" + }, + "settings": { + "falloff": 150, + "position": { + "x": 11993.0, + "y": 70.0, + "z": -3218.0 + } + } + }, + { + "fileOverride": "onethousandmetersunder-jesp-9", + "lineInfo": { + "dialogue": "Keep fighting! We're almost halfway to the other side!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Jesp" + }, + "settings": { + "falloff": 150, + "position": { + "x": 11993.0, + "y": 70.0, + "z": -3218.0 + } + } + }, + { + "fileOverride": "onethousandmetersunder-arlene-3", + "lineInfo": { + "dialogue": "Almost done!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Arlene" + }, + "settings": { + "falloff": 150, + "position": { + "x": 11993.0, + "y": 70.0, + "z": -3218.0 + } + } + }, + { + "fileOverride": "onethousandmetersunder-manny-6", + "lineInfo": { + "dialogue": "Hey, the bridge is ready!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Manny" + }, + "settings": { + "falloff": 150, + "position": { + "x": 11993.0, + "y": 70.0, + "z": -3218.0 + } + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-rex-4", + "lineInfo": { + "dialogue": "We didn't find the crystal here either. Maybe it just fell in the void?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Rex" + } + }, + { + "fileOverride": "onethousandmetersunder-manny-7", + "lineInfo": { + "dialogue": "No, it must have hit an island. The scientist said he detected a collision.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Manny" + } + }, + { + "fileOverride": "onethousandmetersunder-rex-5", + "lineInfo": { + "dialogue": "Wait... What's that sound?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Rex" + } + }, + { + "fileOverride": "onethousandmetersunder-manny-8", + "lineInfo": { + "dialogue": "The ropes are snapping! Quick! Abandon ship!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Many" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-antrus-1", + "lineInfo": { + "dialogue": "The void does strange things toooo our bodies. Just look at us! We've lived down here for one thousand years without dying.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Antrus" + } + }, + { + "fileOverride": "onethousandmetersunder-antrus-2", + "lineInfo": { + "dialogue": "It's like we haven't even aged.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Antrus" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-celuuse-1", + "lineInfo": { + "dialogue": "Whoooooooo are you!?", + "line": { + "current": 1, + "max": 13 + }, + "npc": "Celuuse" + } + }, + { + "fileOverride": "onethousandmetersunder-celuuse-2", + "lineInfo": { + "dialogue": "A...HUUUUUUMAN!? In the void?", + "line": { + "current": 2, + "max": 13 + }, + "npc": "Celuuse" + } + }, + { + "fileOverride": "onethousandmetersunder-celuuse-3", + "lineInfo": { + "dialogue": "Someone dropped a boooook about you people! Warriors! Workers!", + "line": { + "current": 3, + "max": 13 + }, + "npc": "Celuuse" + } + }, + { + "fileOverride": "onethousandmetersunder-celuuse-4", + "lineInfo": { + "dialogue": "Ah. Yoooou want to know about this place?", + "line": { + "current": 4, + "max": 13 + }, + "npc": "Celuuse" + } + }, + { + "fileOverride": "onethousandmetersunder-celuuse-5", + "lineInfo": { + "dialogue": "Well... We were once Villagers. I think we still are, a bit.", + "line": { + "current": 5, + "max": 13 + }, + "npc": "Celuuse" + } + }, + { + "fileOverride": "onethousandmetersunder-celuuse-6", + "lineInfo": { + "dialogue": "For some reason, 1000 years agoooo. The sky islands ruptured.", + "line": { + "current": 6, + "max": 13 + }, + "npc": "Celuuse" + } + }, + { + "fileOverride": "onethousandmetersunder-celuuse-7", + "lineInfo": { + "dialogue": "Some stayed. Others fell. We somehow survived the fall into the vooooid.", + "line": { + "current": 7, + "max": 13 + }, + "npc": "Celuuse" + } + }, + { + "fileOverride": "onethousandmetersunder-celuuse-8", + "lineInfo": { + "dialogue": "How we have lived for so long, I doooo not know. But one thing we know for sure. The void provides.", + "line": { + "current": 8, + "max": 13 + }, + "npc": "Celuuse" + } + }, + { + "fileOverride": "onethousandmetersunder-celuuse-9", + "lineInfo": { + "dialogue": "We are stuck here now. The void has forever changed our physiology.", + "line": { + "current": 9, + "max": 13 + }, + "npc": "Celuuse" + } + }, + { + "fileOverride": "onethousandmetersunder-celuuse-10", + "lineInfo": { + "dialogue": "The crystal yoooou are looking for fell on this island. But...", + "line": { + "current": 10, + "max": 13 + }, + "npc": "Celuuse" + } + }, + { + "fileOverride": "onethousandmetersunder-celuuse-11", + "lineInfo": { + "dialogue": "We need it. It will aid us for years.", + "line": { + "current": 11, + "max": 13 + }, + "npc": "Celuuse" + } + }, + { + "fileOverride": "onethousandmetersunder-celuuse-12", + "lineInfo": { + "dialogue": "We have very limited resources here. That’s why a power source like this is soooo valuable.", + "line": { + "current": 12, + "max": 13 + }, + "npc": "Celuuse" + } + }, + { + "fileOverride": "onethousandmetersunder-celuuse-13", + "lineInfo": { + "dialogue": "If you go to the east, you will find Rontaid, our chief scientist. He'll know what to doooo.", + "line": { + "current": 13, + "max": 13 + }, + "npc": "Celuuse" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-vonlus-1", + "lineInfo": { + "dialogue": "The crops didn't adapt like we did.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Vonlus" + } + }, + { + "fileOverride": "onethousandmetersunder-vonlus-2", + "lineInfo": { + "dialogue": "Let's hope the kitchen keeps throwing out all that food. The void always provides...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Vonlus" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-rontaid-1", + "lineInfo": { + "dialogue": "WHAT...WHO...Humans in the void!?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Rontaid" + } + }, + { + "fileOverride": "onethousandmetersunder-rontaid-2", + "lineInfo": { + "dialogue": "Well, looks like the book we found wasn't fiction after all!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Rontaid" + } + }, + { + "fileOverride": "onethousandmetersunder-rontaid-3", + "lineInfo": { + "dialogue": "This crystal is going toooo be our saviour. I was trying to create one of my own, you know.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Rontaid" + } + }, + { + "fileOverride": "onethousandmetersunder-rontaid-4", + "lineInfo": { + "dialogue": "I think I have the formula, but we don't have what we need to make it.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Rontaid" + } + }, + { + "fileOverride": "onethousandmetersunder-rontaid-5", + "lineInfo": { + "dialogue": "Instead of taking this crystal back, why don't I exchange it for the recipe?", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Rontaid" + } + }, + { + "fileOverride": "onethousandmetersunder-rontaid-6", + "lineInfo": { + "dialogue": "That way, you can make however many crystals youuuu want, and we can keep this one.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Rontaid" + } + }, + { + "fileOverride": "onethousandmetersunder-rontaid-7", + "lineInfo": { + "dialogue": "Here's the recipe, give it to a scientist or someone a bit...smarter than yourself. No offense.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Rontaid" + } + }, + { + "fileOverride": "onethousandmetersunder-rontaid-8", + "lineInfo": { + "dialogue": "A platform was lowered from the surface a while ago at your crash site, as well. If youuuu wish to return, follow this path, I made a shortcut.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Rontaid" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-rontaid-9", + "lineInfo": { + "dialogue": "I hope you make use of our science.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Rontaid" + } + }, + { + "fileOverride": "onethousandmetersunder-rontaid-10", + "lineInfo": { + "dialogue": "We don't want another village to fall down here... I'm not sure we could provide for even more people.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Rontaid" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-scientistynnos-12", + "lineInfo": { + "dialogue": "You survived! Where is everyone else?", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Scientist Ynnos" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-scientistynnos-13", + "lineInfo": { + "dialogue": "I knew some must have died... But all of them?", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Scientist Ynnos" + } + }, + { + "fileOverride": "onethousandmetersunder-scientistynnos-14", + "lineInfo": { + "dialogue": "Well... At least I don't have to pay them! Hah!", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Scientist Ynnos" + } + }, + { + "fileOverride": "onethousandmetersunder-scientistynnos-15", + "lineInfo": { + "dialogue": "...That was heartless of me, I'm sorry. The rope we used was too weak to hold you down there.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Scientist Ynnos" + } + }, + { + "fileOverride": "onethousandmetersunder-scientistynnos-16", + "lineInfo": { + "dialogue": "My calculations didn't account for the void's physics, it seems.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Scientist Ynnos" + } + }, + { + "fileOverride": "onethousandmetersunder-scientistynnos-17", + "lineInfo": { + "dialogue": "At least we got you back in one piece. You can tell us what happened.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Scientist Ynnos" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-scientistynnos-18", + "lineInfo": { + "dialogue": "Well I'll be damned. I'll start sending post down there! We can work together.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Scientist Ynnos" + } + }, + { + "fileOverride": "onethousandmetersunder-scientistynnos-19", + "lineInfo": { + "dialogue": "Better to keep everything that happened here a secret. I don't want to lose what little funding I have. This recipe is genius! Here, take this, as well as your money.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Scientist Ynnos" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-thesecretary-5", + "lineInfo": { + "dialogue": "Welcome back, I know what happened... Don't blame yourself, it's not your fault that your crewmates are gone.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "The Secretary" + } + }, + { + "fileOverride": "onethousandmetersunder-thesecretary-6", + "lineInfo": { + "dialogue": "Actually, Ynnos didn't think there would be any survivors...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "The Secretary" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-thesecretary-7", + "lineInfo": { + "dialogue": "Hey! Get away from there!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Secretary" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-rontaid-11", + "lineInfo": { + "dialogue": "Back again, I see. That Ynnos is a rather kind fellow.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Rontaid" + } + }, + { + "fileOverride": "onethousandmetersunder-rontaid-12", + "lineInfo": { + "dialogue": "He is trying to make arrangements to send proper shipments of supplies down here.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Rontaid" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "onethousandmetersunder-thesecretary-8", + "lineInfo": { + "dialogue": "Welcome to Ynnos' research facility! Hello, how can I help you?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "The Secretary" + } + } + ] + } + } + }, + "Out of my Mind": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "outofmymind-prentiss-1", + "lineInfo": { + "dialogue": "Did ye two hear about some guy wandering around town? I've heard strange rumours about him...", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Prentiss" + } + }, + { + "fileOverride": "outofmymind-todd-1", + "lineInfo": { + "dialogue": "Of course I have, he's the talk of the town! I heard he only brushes his teeth once a day and that he enjoys books about gardening!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Todd" + } + }, + { + "fileOverride": "outofmymind-viola-1", + "lineInfo": { + "dialogue": "I don't know, you guys, all these rumours seem a little far-fetched. What next? Will he suddenly turn out to be some mad scientist?", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Viola" + } + }, + { + "fileOverride": "outofmymind-prentiss-2", + "lineInfo": { + "dialogue": "Oh shush you, we're not living inside some storybook! Besides, if he *was* a mad scientist, wouldn't he be trying to take over the city like all mad scientists in stories do?", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Prentiss" + } + }, + { + "fileOverride": "outofmymind-todd-2", + "lineInfo": { + "dialogue": "To me that doesn't sound all that strange compared to these other things I've been hearing, anyway... Something about labs and a \"hermit\".", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Todd" + } + }, + { + "fileOverride": "outofmymind-prentiss-3", + "lineInfo": { + "dialogue": "I think that's a type of crab or something. Adults are right old weirdos sometimes.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Prentiss" + } + }, + { + "fileOverride": "outofmymind-viola-2", + "lineInfo": { + "dialogue": "Hey, a stranger! How long have you been listening to us? Didn't your mom teach you any manners?", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Viola" + } + }, + { + "fileOverride": "outofmymind-prentiss-4", + "lineInfo": { + "dialogue": "Wait Viola, this is our chance! This stranger sure seems like they could tackle anything, even evil hermit crabs! We could just ask them to see if these rumours are true!", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Prentiss" + } + }, + { + "fileOverride": "outofmymind-todd-3", + "lineInfo": { + "dialogue": "Ignore my friends over there, they're always like that, but what Prentiss said was true. This might be our only chance to really know who this mystery man really is!", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Todd" + } + }, + { + "fileOverride": "outofmymind-todd-4", + "lineInfo": { + "dialogue": "It might be a good idea to look at that weird house next to those spooky ruins south-east of the city. We found this key you could try out, but if you lose it there are some spares in our base.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Todd" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "outofmymind-ariodo-1", + "lineInfo": { + "dialogue": "Hello stranger! Welcome to my humble wooden abode. Comfy, isn't it? I bet you'd like a cup of this coff-", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-2", + "lineInfo": { + "dialogue": "Oh yes, I am the affable Ariodo, friendly neighbourhood neighbour. What do you need me for?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-3", + "lineInfo": { + "dialogue": "Kidnappings? Poaching? Not brushing my teeth?! Who is this lowly person you're talking about... they don't seem like a nice fellow such as myself.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-4", + "lineInfo": { + "dialogue": "Let's go, I'll take you to the exit so that I don't waste your time any longer!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ariodo" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "outofmymind-ariodo-5", + "lineInfo": { + "dialogue": "This is the room you came from. I call it the \"Vivarium\", creative name I came up with, right? It keeps my pets that aren't quite ready.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-6", + "lineInfo": { + "dialogue": "Ready for what? Well that would ruin the surprise, wouldn't it? Can't have anyone finding out before the big event!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-7", + "lineInfo": { + "dialogue": "Let us go now, time is precious!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ariodo" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "outofmymind-ariodo-8", + "lineInfo": { + "dialogue": "So you must be thinking, how have you never met a fine fellow such as myself until now? To be quite honest, you must have just been terribly unlucky, I used to travel the world, you know!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-9", + "lineInfo": { + "dialogue": "Oh the places I've been were wonderful! From the depths of the jungle to the lesser depths of the jungle to even my back garden, I've done my fair share of exploring, if I do say so myself!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-10", + "lineInfo": { + "dialogue": "You are the first normal person I've seen recently, Soldier. I went out recently and was met with some very rude remarks by some very rude townsfolk!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-11", + "lineInfo": { + "dialogue": "The last time I visited the town it was all empty too, but I could feel people were hiding in their homes, even on such a lovely day as then. There was no one even there to hide from! Strange people.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-12", + "lineInfo": { + "dialogue": "I'm just a normal guy, so why can't anyone appreciate me for once? I'm sure you do, right?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Ariodo" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "outofmymind-ariodo-13", + "lineInfo": { + "dialogue": "Here we are, the library! I could spend years in here, but who has time for that? I could talk about books for hours too! Here's one right now.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-14", + "lineInfo": { + "dialogue": "This is 'The Long-Winded and Painful Death of Sweeney S. Greenville' and I must say it is a hidden gem among books! One day it just suddenly appeared in here so I couldn't resist reading it. So it starts off with Sweeney S. Greenville...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ariodo" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "outofmymind-ariodo-15", + "lineInfo": { + "dialogue": "We're here now! Take the exit right in front of you, don't mind the corridor to the right, it's only decoration!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-16", + "lineInfo": { + "dialogue": "Maybe you can come back some day for a tea or coffee and a long talk about books, since I noticed you were very interested in my long-winded review! Have fun out there and don't forget, I'm always here for you!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ariodo" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "outofmymind-ariodo-17", + "lineInfo": { + "dialogue": "The ground is shaking... I thought that was supposed to happen later! Come back friend, I can't do this alone!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ariodo" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "outofmymind-ariodo-18", + "lineInfo": { + "dialogue": "Help me keep this door shut, or else my surprise will be ruined!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-19", + "lineInfo": { + "dialogue": "Just keep to the sides, it's safer that way.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-20", + "lineInfo": { + "dialogue": "Just stay here for one more momen-", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ariodo" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "outofmymind-ariodo-21", + "lineInfo": { + "dialogue": "Oh my, a ghost? Wait, is this just you, my trusty friend, playing a prank on me? No? Well that certainly is a problem!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-22", + "lineInfo": { + "dialogue": "If you remember, we were talking about keeping the door shut when suddenly something heavy fell off a shelf hitting you square in the head!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-23", + "lineInfo": { + "dialogue": "I think I heard something about fighting fire with fire, so I think I have a way to get you back! You are a bit too heavy for me, so we need to think of a workaround.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-24", + "lineInfo": { + "dialogue": "During the shaking, some of my machines broke apart, but we could use these to build something capable of dropping something heavier on your head for the second time.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-25", + "lineInfo": { + "dialogue": "Surely by that logic everything has to go well, you know. Now let me explain how we can do this. First, choose what part you want to use to make our machine, then choose were you want it to go and face.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-26", + "lineInfo": { + "dialogue": "The [Cart] can carry the coconut from one end of the platform to another for a few tiles, while the [Fan] can push the coconut even further.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-27", + "lineInfo": { + "dialogue": "The [Hammer] is able to knock the coconut over a one space gap while the [Cannon] can shoot the coconut one grid up diagonally in the direction it is facing.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-28", + "lineInfo": { + "dialogue": "I think I hit my head too, so I'll need your help deciding where to place each part. You want to get the coconut across to the green tile, remember?", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Ariodo" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "outofmymind-ariodo-29", + "lineInfo": { + "dialogue": "You're back! To be quite honest, I didn't think that would work, but I'm glad it did!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-30", + "lineInfo": { + "dialogue": "Quick, head through the large door and stop the cause of all that shaking!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ariodo" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "outofmymind-ariodo-31", + "lineInfo": { + "dialogue": "Oh no no, this is not good! If I had known that my little pet has grown so much I would have rushed you out sooner. Now it is wilted...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-32", + "lineInfo": { + "dialogue": "You did what you had to, though. I am sorry to say this friend, but I think I'll stay inside a little longer. Sorry, my only friend..", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ariodo" + } + }, + { + "fileOverride": "outofmymind-ariodo-33", + "lineInfo": { + "dialogue": "We'll surely meet again in the future, so don't be sad. I'll still be the one and only friendly neighbourhood neighbour when that moment comes, I promise. Goodbye now!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ariodo" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "outofmymind-todd-5", + "lineInfo": { + "dialogue": "You're back! You were gone for ages too, and what happened to your head? Who did the mystery man turn out to be?", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Todd" + } + }, + { + "fileOverride": "outofmymind-viola-3", + "lineInfo": { + "dialogue": "That sounds ridiculous! Who could ever belie-", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Viola" + } + }, + { + "fileOverride": "outofmymind-prentiss-5", + "lineInfo": { + "dialogue": "Wow that sounded just like in the stories, but it came from you, so it must be true!", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Prentiss" + } + }, + { + "fileOverride": "outofmymind-prentiss-6", + "lineInfo": { + "dialogue": "I don't know about you, Todd, but I feel we should make them our new honorary club member for finding such amazing things!", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Prentiss" + } + }, + { + "fileOverride": "outofmymind-viola-4", + "lineInfo": { + "dialogue": "Why do I even try... You two would believe anything.", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Viola" + } + }, + { + "fileOverride": "outofmymind-prentiss-7", + "lineInfo": { + "dialogue": "I'm pretty sure they mentioned something about being hit by coconut crabs, and just look at their head. One.. two.. two huge bumps!", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Prentiss" + } + }, + { + "fileOverride": "outofmymind-viola-5", + "lineInfo": { + "dialogue": "Oh fine... whatever you say, Prentiss. I'm sure they'll bring you on some wacky adventures next time around!", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Viola" + } + }, + { + "fileOverride": "outofmymind-todd-6", + "lineInfo": { + "dialogue": "Ignore Viola, she's acting up today, probably because you've got the spotlight this time. However, I agree with Prentiss.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Todd" + } + }, + { + "fileOverride": "outofmymind-todd-7", + "lineInfo": { + "dialogue": "Thanks to you, we solved the case of the mystery man as well as the mystery house! For this I'd like to...", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Todd" + } + }, + { + "fileOverride": "outofmymind-todd-8", + "lineInfo": { + "dialogue": "Welcome you to the club, new member! Here is your shiny new badge that you can parade around town to show off how cool you are to others with style.", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Todd" + } + }, + { + "fileOverride": "outofmymind-prentiss-8", + "lineInfo": { + "dialogue": "Also since all the adults do it, we'll give you some emeralds that you rightly deserve for such an achievement. We all pitched in!", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Prentiss" + } + } + ] + } + } + }, + "Pirate's Trove": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "piratestrove-damiral-1", + "lineInfo": { + "dialogue": "Lo, adventurer! Welcome to the great province of Gavel, home of the villager race, and yours truly. You'll be headed into the grand citadel of Llevigar soon!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Damiral" + } + }, + { + "fileOverride": "piratestrove-damiral-2", + "lineInfo": { + "dialogue": "But enough with the pleasantries. Tell me... Ever heard the tale of the great pirate, Captain Hastor? Sailed the seas a long time ago.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Damiral" + } + }, + { + "fileOverride": "piratestrove-damiral-3", + "lineInfo": { + "dialogue": "Legend says that when Llevigar was rebuilt all those years ago, he hid his fortune within the walls someplace!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Damiral" + } + }, + { + "fileOverride": "piratestrove-damiral-4", + "lineInfo": { + "dialogue": "I'm a retired sailor now, but I could still do with a few extra emeralds from that treasure. Perhaps, if you're up to it... we could come to an agreement?", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Damiral" + } + }, + { + "fileOverride": "piratestrove-damiral-5", + "lineInfo": { + "dialogue": "I have a riddle, the first of a number of clues that are supposed to lead to where Hastor hid his fortune, but I can't for the life of me figure it out.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Damiral" + } + }, + { + "fileOverride": "piratestrove-damiral-6", + "lineInfo": { + "dialogue": "Maybe you'll be able to solve it. If you can, I'll make sure to split the treasure with you!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Damiral" + } + }, + { + "fileOverride": "piratestrove-damiral-7", + "lineInfo": { + "dialogue": "“Toward the sunset, among northern flowers shaded by quartz”.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Damiral: This first riddle goes like so" + } + }, + { + "fileOverride": "piratestrove-damiral-8", + "lineInfo": { + "dialogue": "I do wish you good luck, adventurer! Remember, everything you need to solve the clues should be found somewhere inside Llevigar.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Damiral" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "piratestrove-damiral-9", + "lineInfo": { + "dialogue": "Aha! I'd come to ask how it was coming when I saw you jump over here!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Damiral" + } + }, + { + "fileOverride": "piratestrove-damiral-10", + "lineInfo": { + "dialogue": "Phenomenal work, my compatriot. Though, do remember our deal?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Damiral" + } + }, + { + "fileOverride": "piratestrove-damiral-11", + "lineInfo": { + "dialogue": "You find the treasure, I give you a cut. I'll just take my part and be on my way!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Damiral" + } + } + ] + } + } + }, + "Pit of the Dead": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "pitofthedead-merloni-1", + "lineInfo": { + "dialogue": "Ah yes, hello! I don't think you want to hear what I have to say. It's a bit out of your league, come back when you are level 23.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Merloni" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "pitofthedead-merloni-2", + "lineInfo": { + "dialogue": "Would you like to hear the tale of the pit of the dead?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Merloni" + } + }, + { + "fileOverride": "pitofthedead-merloni-3", + "lineInfo": { + "dialogue": "It is the pit where the corpses of the poor miners who discovered what is now named the Nether Portal are buried.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Merloni" + } + }, + { + "fileOverride": "pitofthedead-merloni-4", + "lineInfo": { + "dialogue": "Those that had not already died had to be executed due to the insanity brought on from the corruption.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Merloni" + } + }, + { + "fileOverride": "pitofthedead-merloni-5", + "lineInfo": { + "dialogue": "Their spirits still haunt the grave and infect the minds of people who disturb them. It isn't pretty.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Merloni" + } + }, + { + "fileOverride": "pitofthedead-merloni-6", + "lineInfo": { + "dialogue": "However, I heard rumours of those who were able to bathe in their waters and be accepted by them, to show no fear of the dead is to be admired.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Merloni" + } + }, + { + "fileOverride": "pitofthedead-merloni-7", + "lineInfo": { + "dialogue": "Maybe this shrine that I keep hearing about has something to do with it? It's apparently hidden deep inside the pit.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Merloni" + } + }, + { + "fileOverride": "pitofthedead-merloni-8", + "lineInfo": { + "dialogue": "Soldier, the pit is located south east of Nemract, across the bridge behind us. I will write down the coordinates inside your content book.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Merloni" + } + }, + { + "fileOverride": "pitofthedead-merloni-9", + "lineInfo": { + "dialogue": "Enter the pit. Learn it's mysteries, then come back to me.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Merloni" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "pitofthedead-merloni-10", + "lineInfo": { + "dialogue": "If you are too scared to go down there, I understand. Dealing with the souls of the dead isn't for everyone.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Merloni" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "pitofthedead-merloni-11", + "lineInfo": { + "dialogue": "Very impressive! Here's your reward. I found it a while ago while walking around Nemract. It probably fell off a skeleton!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Merloni" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "pitofthedead-merloni-12", + "lineInfo": { + "dialogue": "Glad to see you again!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Merloni" + } + } + ] + } + } + }, + "Point of No Return": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "pointofnoreturn-luthocitizen1-1", + "lineInfo": { + "dialogue": "Wait... It can't be. Look me in the eyes. You are human, like me.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen1-2", + "lineInfo": { + "dialogue": "Well, maybe not anymore. Look around you. These people are barely alive.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen1-3", + "lineInfo": { + "dialogue": "I have kept my eyes because I chose to keep them.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen1-4", + "lineInfo": { + "dialogue": "Now you are here you will have to make that same decision. Just remember this:", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen1-5", + "lineInfo": { + "dialogue": "No Matter what, you MUST KEEP GOING.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Lutho Citizen" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "pointofnoreturn-luthocitizen2-1", + "lineInfo": { + "dialogue": "Ahh.. A newcomer! Welcome, welcome!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen2-2", + "lineInfo": { + "dialogue": "Don't worry, you are safe here. The Obelisk protects.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen2-3", + "lineInfo": { + "dialogue": "It arrived here.. Uhm. Hm. You know, I can't remember when.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen2-4", + "lineInfo": { + "dialogue": "It's been here a while.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen2-5", + "lineInfo": { + "dialogue": "Anyway, feel free to look around.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Lutho Citizen" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "pointofnoreturn-luthocitizen3-1", + "lineInfo": { + "dialogue": "I can't see why anyone would choose to stay there.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen3-2", + "lineInfo": { + "dialogue": "I don't blame you for being here.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen3-3", + "lineInfo": { + "dialogue": "We all chose this, in the end. There wasn't much of an alternative.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen3-4", + "lineInfo": { + "dialogue": "Thank Grook that the obelisk is here to help us.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Lutho Citizen" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "pointofnoreturn-luthocitizen4-1", + "lineInfo": { + "dialogue": "It's been quite some time since a new face has shown up here.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen4-2", + "lineInfo": { + "dialogue": "Don't be fooled, everything you see is very real.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen4-3", + "lineInfo": { + "dialogue": "At least, in a sense that matters. The Obelisk protects us.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen4-4", + "lineInfo": { + "dialogue": "You should go and take a closer look at it.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Lutho Citizen" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "pointofnoreturn-soul-1", + "lineInfo": { + "dialogue": "Hello soldier." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-soul-2", + "lineInfo": { + "dialogue": "I am you." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-soul-3", + "lineInfo": { + "dialogue": "You are me." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-soul-4", + "lineInfo": { + "dialogue": "We are one." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-soul-5", + "lineInfo": { + "dialogue": "Not here, though." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-soul-6", + "lineInfo": { + "dialogue": "The Obelisk offers us different paths" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-soul-7", + "lineInfo": { + "dialogue": "It offers to protect me, while leaving you in reality." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-soul-8", + "lineInfo": { + "dialogue": "If you want to return as one, you must heed my words." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-soul-9", + "lineInfo": { + "dialogue": "I may not be able to speak in the physical realm..." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-soul-10", + "lineInfo": { + "dialogue": "But your actions... Your deeds... They shape me, hurt me, heal me." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-soul-11", + "lineInfo": { + "dialogue": "Choose our path wisely." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-soul-12", + "lineInfo": { + "dialogue": "Something is holding us back." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-soul-13", + "lineInfo": { + "dialogue": "You must keep going." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-soul-14", + "lineInfo": { + "dialogue": "We must keep going." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-soul-15", + "lineInfo": { + "dialogue": "Are you sure we want to face reality?" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-soul-16", + "lineInfo": { + "dialogue": "The only one holding us back is us." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "pointofnoreturn-luthoguard-1", + "lineInfo": { + "dialogue": "If you really want to leave, no one is stopping you. Except maybe yourself.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Lutho Guard" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "pointofnoreturn-luthocitizen1-6", + "lineInfo": { + "dialogue": "You- you chose to come back. I saw your eyes disappear, briefly.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen1-7", + "lineInfo": { + "dialogue": "As you can see... Everyone in this town chose to stay there.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen1-8", + "lineInfo": { + "dialogue": "It started as just one or two.. But over the years more and more people chose to stay.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen1-9", + "lineInfo": { + "dialogue": "Now the shells are kept functioning by some blessing or curse of the obelisk.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Lutho Citizen" + } + }, + { + "fileOverride": "pointofnoreturn-luthocitizen1-10", + "lineInfo": { + "dialogue": "I’m the last one to choose reality.. Although I wonder if it might just be easier to...", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Lutho Citizen" + } + } + ] + } + } + }, + "Poisoning the Pest": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "poisoningthepest-farmercevalus-1", + "lineInfo": { + "dialogue": "Ah, looks like a fresh recruit! Did you see my posting? Good, good.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Farmer Cevalus" + } + }, + { + "fileOverride": "poisoningthepest-farmercevalus-2", + "lineInfo": { + "dialogue": "Recently, my dear step-father passed away and I buried him out back. Well, he's not there anymore... the corruption has got to his body.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Farmer Cevalus" + } + }, + { + "fileOverride": "poisoningthepest-farmercevalus-3", + "lineInfo": { + "dialogue": "Yes, yes, I know, I should have buried him more responsibly... But I didn't, and now he's turned into an unstoppable beast!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Farmer Cevalus" + } + }, + { + "fileOverride": "poisoningthepest-farmercevalus-4", + "lineInfo": { + "dialogue": "We should use my fresh Corkian sprinklers to poison the pest! I have a spare [1 Crate of Rat Poison] here... But I'm too weak to get past the pest myself.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Farmer Cevalus" + } + }, + { + "fileOverride": "poisoningthepest-farmercevalus-5", + "lineInfo": { + "dialogue": "That's where you come in! If you poison the water reservoir on the other side of the farm field after you enter, I'll enable the sprinklers, and he'll be done for!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Farmer Cevalus" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "poisoningthepest-farmercevalus-6", + "lineInfo": { + "dialogue": "There we are! Water poisoned, sprinklers enabled... Now we can just watch as he-", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Farmer Cevalus" + }, + "settings": { + "falloff": 160 + } + }, + { + "fileOverride": "poisoningthepest-farmercevalus-7", + "lineInfo": { + "dialogue": "Oh, dear. It seems to have just made him angry. Recruit, he's weakened- you'll have to kill him yourself!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Farmer Cevalus" + }, + "settings": { + "falloff": 160 + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "poisoningthepest-farmercevalus-8", + "lineInfo": { + "dialogue": "You've done it! Come back here now, so I can reward you for your work.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Farmer Cevalus" + }, + "settings": { + "falloff": 160 + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "poisoningthepest-farmercevalus-9", + "lineInfo": { + "dialogue": "Goodness, that was a little more exciting than I anticipated. Still, good work! I'm glad we were able to get rid of that monster...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Farmer Cevalus" + } + }, + { + "fileOverride": "poisoningthepest-farmercevalus-10", + "lineInfo": { + "dialogue": "I mean... poor step-dad. I don't know how I'll explain this to the wife... Might need to buy her something nice, heh.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Farmer Cevalus" + } + }, + { + "fileOverride": "poisoningthepest-farmercevalus-11", + "lineInfo": { + "dialogue": "Anyhow, take this well-deserved reward for the risky actions you took today. I'll also give you access to my second farm in the back, take whatever you need there!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Farmer Cevalus" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "poisoningthepest-farmercevalus-12", + "lineInfo": { + "dialogue": "I thank you greatly for your actions. My crops should grow back soon!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Farmer Cevalus" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "poisoningthepest-farmercevalus-13", + "lineInfo": { + "dialogue": "Hey! Get away from my farm, this is private property!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Farmer Cevalus" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "poisoningthepest-farmercevalus-14", + "lineInfo": { + "dialogue": "I could really use some help right now, but you are too weak. Come back when you are level 2.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Farmer Cevalus" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "poisoningthepest-farmercevalus-15", + "lineInfo": { + "dialogue": "Have you at least attempted to get rid of that pest yet? Remember, the water reservoir is on the other end of this here field.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Farmer Cevalus" + } + } + ] + } + } + }, + "Potion Making": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "potionmaking-theassistant-1", + "lineInfo": { + "dialogue": "Heeh...stranger. I...may need your assistance...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "The Assistant" + } + }, + { + "fileOverride": "potionmaking-theassistant-2", + "lineInfo": { + "dialogue": "My master...wishes to create a very dangerous potion...a transformative elixir of invincibility...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "The Assistant" + } + }, + { + "fileOverride": "potionmaking-theassistant-3", + "lineInfo": { + "dialogue": "I was...in support of this... but then, he accrued essence of... the corruption. I had to run away...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "The Assistant" + } + }, + { + "fileOverride": "potionmaking-theassistant-4", + "lineInfo": { + "dialogue": "I fear... that he may be going... too far. I need your help...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "The Assistant" + } + }, + { + "fileOverride": "potionmaking-theassistant-5", + "lineInfo": { + "dialogue": "Get me... [8 Red Mushroom], they can be found outside the east gate behind me.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "The Assistant" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "potionmaking-theassistant-6", + "lineInfo": { + "dialogue": "Good...good. You have the mushrooms.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "The Assistant" + } + }, + { + "fileOverride": "potionmaking-theassistant-7", + "lineInfo": { + "dialogue": "You must...ensure that it has worked. You...are much stronger than I, stranger...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "The Assistant" + } + }, + { + "fileOverride": "potionmaking-theassistant-8", + "lineInfo": { + "dialogue": "Did you see the orange witch hat roofed hut when you were gathering the mushrooms?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "The Assistant" + } + }, + { + "fileOverride": "potionmaking-theassistant-9", + "lineInfo": { + "dialogue": "That is my master's house, you must go back out the east gate and enter the hut.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "The Assistant" + } + }, + { + "fileOverride": "potionmaking-theassistant-10", + "lineInfo": { + "dialogue": "Bring me his...coat as proof...of his death...", + "line": { + "current": 5, + "max": 5 + }, + "npc": "The Assistant" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "potionmaking-theassistant-11", + "lineInfo": { + "dialogue": "I...must thank you, stranger...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "The Assistant" + } + }, + { + "fileOverride": "potionmaking-theassistant-12", + "lineInfo": { + "dialogue": "I only hope...that my master will not be...angry with me about this. It...was for the better.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "The Assistant" + } + }, + { + "fileOverride": "potionmaking-theassistant-13", + "lineInfo": { + "dialogue": "Now. I...do not want you saying anything about...these events. Take these, and...never speak of this again.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "The Assistant" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "potionmaking-theassistant-14", + "lineInfo": { + "dialogue": "Heeh...stranger. I...may need your assistance...return when you are...Level 12.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "The Assistant" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "potionmaking-theassistant-15", + "lineInfo": { + "dialogue": "Never speak of this again...stranger.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "The Assistant" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "potionmaking-theassistant-16", + "lineInfo": { + "dialogue": "You...you can't go down...there!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "The Assistant" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "potionmaking-theassistant-17", + "lineInfo": { + "dialogue": "Quickly, get me...[8 Red Mushroom]do as I asked... go through the Black Road outside the east gate from here.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "The Assistant" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "potionmaking-dressren-1", + "lineInfo": { + "dialogue": "Ah, you must be the one my assistant told me about.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Dr. Essren" + } + }, + { + "fileOverride": "potionmaking-dressren-2", + "lineInfo": { + "dialogue": "If you are trying to stop me, it's too late. I already drank the pot-...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Dr. Essren" + } + }, + { + "fileOverride": "potionmaking-dressren-3", + "lineInfo": { + "dialogue": "What is this taste? Mushrooms? This can't b-", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Dr. Essren" + } + }, + { + "fileOverride": "potionmaking-dressren-4", + "lineInfo": { + "dialogue": "Aaaaaarrrggg!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Dr Essren" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "9": { + "dialogues": [ + { + "fileOverride": "potionmaking-dressren-5", + "lineInfo": { + "dialogue": "What have you done to this potion, human? You will pay for it!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Transformed Essren" + } + } + ], + "settings": { + "followPlayer": true + } + } + } + }, + "Purple and Blue": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-1", + "lineInfo": { + "dialogue": "W-Woah there, short nose! What are you doing, barging into my home?!", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-2", + "lineInfo": { + "dialogue": "Did Cinfras send you? Well, welcome to Lake Gylia! I could actually make use of some assistance.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-3", + "lineInfo": { + "dialogue": "The magic here in this place is so potent; you can actually see the mystical properties!", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-4", + "lineInfo": { + "dialogue": "I've been a scientist for many years, but I have never seen anything like this lake.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-5", + "lineInfo": { + "dialogue": "That's why why I set up a small laboratory and started living here to study the place. It's pretty rudimentary but it does the job done.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-6", + "lineInfo": { + "dialogue": "The deeper into the lake you dive, the stronger the magical power becomes. I think something strange is occurring in the heart of the lake. I believe a lot of answers lie inside.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-7", + "lineInfo": { + "dialogue": "Alright, that's enough context! You see, there's another... ''scientist'' across the lake. We're kind of rivals? The guy's awful, I hate him, AND... Well...", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-8", + "lineInfo": { + "dialogue": "He's been missing.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-9", + "lineInfo": { + "dialogue": "And while I somewhat hope he's gotten himself in trouble, he might've figured something out about the lake.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-10", + "lineInfo": { + "dialogue": "I suspect he's gone in to the heart of the lake... Come with me a moment, please.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Korun" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-11", + "lineInfo": { + "dialogue": "Alright, this leads underwater where the heart is. How about you try and enter?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Korun" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-12", + "lineInfo": { + "dialogue": "...just as I thought, you can't get in just like me. We'll need to gather more information.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-13", + "lineInfo": { + "dialogue": "Human, investigate Nikoler's house for me. It's north down the coast.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Korun" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-14", + "lineInfo": { + "dialogue": "Where could he be... There's no way he found access to- Hey!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-15", + "lineInfo": { + "dialogue": "Don't just listen to me mumbling! Have you found Nikoler?!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Korun" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "purpleandblue-nikoler-1", + "lineInfo": { + "dialogue": "The map to the talisman is in the basement!! That fool Korun will never see all this coming.", + "npc": "IMPORTANT NOTES" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "purpleandblue-nikoler-2", + "lineInfo": { + "dialogue": "If everything goes right, it should grant access to the heart of the mountain... I can't wait!" + } + }, + { + "fileOverride": "purpleandblue-nikoler-3", + "lineInfo": { + "dialogue": "I needn't forget to input the total number of lit candles inside the house in order to get in the basement... That's why I made that tube! I'm so good at handling security!! No need for blasted overpriced Corkian equipment!" + } + }, + { + "fileOverride": "purpleandblue-nikoler-4", + "lineInfo": { + "dialogue": "The stones should be in a few bags around here." + } + }, + { + "fileOverride": "purpleandblue-nikoler-5", + "lineInfo": { + "dialogue": "I actually don't know if I'm making it out of this, but I absolutely have to find out what's inside the lake." + } + }, + { + "fileOverride": "purpleandblue-nikoler-6", + "lineInfo": { + "dialogue": "One part of me wants to bring Korun along. As much as we hate each other, it'd surely increase our chance of survival." + } + }, + { + "fileOverride": "purpleandblue-nikoler-7", + "lineInfo": { + "dialogue": "And, who knows, maybe the heart of the mountain is actually perfectly safe?" + } + }, + { + "fileOverride": "purpleandblue-nikoler-8", + "lineInfo": { + "dialogue": "Though, I mustn't forget that three of the greatest minds of our time got lost to cosmic powers..." + } + }, + { + "fileOverride": "purpleandblue-nikoler-9", + "lineInfo": { + "dialogue": "No matter what, if you really want to join me, I left you enough clues." + } + }, + { + "fileOverride": "purpleandblue-nikoler-10", + "lineInfo": { + "dialogue": "See you later, Korun." + } + }, + { + "fileOverride": "purpleandblue-korun-16", + "lineInfo": { + "dialogue": "Y-you've actually found a lead?! There were clues in his basement? And you found a... talisman? This must be it, then!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-17", + "lineInfo": { + "dialogue": "This might very well be the key to enter the heart, especially if it was as well-guarded with cosmic creatures as you say.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-18", + "lineInfo": { + "dialogue": "Alright then! This might be too dangerous for me, so I'm entrusting this task to you once more. Enter the tunnel in my basement, and explore as much as you can!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-19", + "lineInfo": { + "dialogue": "If you can bring me samples of any kind, I'll try to reward you handsomely. However, if you find Nikoler alive... Please bring him back.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-20", + "lineInfo": { + "dialogue": "As for the talisman, make sure you hold it whilst in the tunnel. Be careful, you're in uncharted territory from now on.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Korun" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-21", + "lineInfo": { + "dialogue": "Good luck, human. Please bring me back Nikoler, or any sample you might find.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Korun" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "purpleandblue-nikoler-11", + "lineInfo": { + "dialogue": "The drill should be ready by now... In just a little bit, I'll have single-handedly conquered the heart of the mountain..!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "???" + } + }, + { + "fileOverride": "purpleandblue-nikoler-12", + "lineInfo": { + "dialogue": "A human!? W..What? Did you read the notes I left for Korun? I'll have you know that's theft!! I - you..!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-13", + "lineInfo": { + "dialogue": "Don't get any closer!! I'll destroy the path if I have to!!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-14", + "lineInfo": { + "dialogue": "This is MY story! Don't you dare interfere!!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Nikoler" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "purpleandblue-nikoler-15", + "lineInfo": { + "dialogue": "You're... persistent. Are you trying to steal from these meteors I'VE found?! Do you have any idea how much research I did to get this far??", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-16", + "lineInfo": { + "dialogue": "It's too late! I've already drilled a piece. Once I show Korun, I'll be known as the better researcher...", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-17", + "lineInfo": { + "dialogue": "Ah... how good this'll b-", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Nikoler" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "purpleandblue-nikoler-18", + "lineInfo": { + "dialogue": "N-no!", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-19", + "lineInfo": { + "dialogue": "No no no no no no! This CAN'T be happening!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-20", + "lineInfo": { + "dialogue": "Tampering with the meteors must be making the cave instable! I... I thought this'd happen and yet-", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-21", + "lineInfo": { + "dialogue": "This is all YOUR fault! Why'd you have to come and make me panic? We're both DOOMED!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-22", + "lineInfo": { + "dialogue": "No... I can't die here, I can't die now, what will he think...", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-23", + "lineInfo": { + "dialogue": "I... We might still have a shot at escaping... And then, human, I'll report you to the authorities!!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-24", + "lineInfo": { + "dialogue": "I'm STUCK! Urgh... No... Not like this, please, not like this...", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Nikoler" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "purpleandblue-nikoler-25", + "lineInfo": { + "dialogue": "You... Why? You came to get me? Not the... meteors?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-26", + "lineInfo": { + "dialogue": "I... Fine then. Let's make a run for it, human!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Nikoler" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "purpleandblue-nikoler-27", + "lineInfo": { + "dialogue": "Rats! That dynamite went and backfired on us! Quick, try to run in to the rubble with me, we need to hurry!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Nikoler" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "purpleandblue-nikoler-28", + "lineInfo": { + "dialogue": "AH-", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Nikoler" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-22", + "lineInfo": { + "dialogue": "Welcome back! I see you're completely drenched! How did things go? I assume you've explored the place thoroughly.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-23", + "lineInfo": { + "dialogue": "YOU! Y-You're alive!!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-nikoler-29", + "lineInfo": { + "dialogue": "...were you worrying about me? What a fool. This mountain could never do so much as scratch me!", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-30", + "lineInfo": { + "dialogue": "This human right here actually saved me, right after endangering me. You don't mean to tell me you sent him for me?", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-korun-24", + "lineInfo": { + "dialogue": "Well, it's very simple. Where's the fun in our rivalry if you just go off and die somewhere?", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-25", + "lineInfo": { + "dialogue": "That aside, what did you find in there? What happened?", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-nikoler-31", + "lineInfo": { + "dialogue": "I found them, Korun. I found the meteors! They still seemed potent somehow, but the cave collapsed and...", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-korun-26", + "lineInfo": { + "dialogue": "That's... fine. We can always go back and try clearing the rubble. There's always opportunities to take a hold of. Next time, please don't just go off on your own!", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-27", + "lineInfo": { + "dialogue": "Human, you made the right choice... Without Nikoler, our efforts would have been in vain. I'll try to work with him a bit more, as it seems like the logical course of action now. Thank you.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-nikoler-32", + "lineInfo": { + "dialogue": "H-hey! I never agreed to-", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Nikoler" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-28", + "lineInfo": { + "dialogue": "I see you're completely drenched, so I suppose you thoroughly explored the place. How did it go?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-29", + "lineInfo": { + "dialogue": "You found... Nothing? Really? And the meteors were too unstable to temper with?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-30", + "lineInfo": { + "dialogue": "Actually, how would you know about tempering with the- wait...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Korun" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-31", + "lineInfo": { + "dialogue": "Did you find him? Please... please tell me you found him, there's no way he'd just die like that. I...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-32", + "lineInfo": { + "dialogue": "W-what? The whole cave COLLAPSED on him? And you couldn't even save him?! N-no, it can't be your fault, I... I'm sorry.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-33", + "lineInfo": { + "dialogue": "This is all way too much to take in for me, but I suppose you've explored and served the purpose I gave you.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-34", + "lineInfo": { + "dialogue": "Here's your reward, then. Now please, just leave me be. There's a lot I have to think about.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Korun" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-35", + "lineInfo": { + "dialogue": "I don't know what I would've done without your help, human.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-36", + "lineInfo": { + "dialogue": "I could never bring myself to go on with my research if I didn't have my rival.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Korun" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "purpleandblue-nikoler-33", + "lineInfo": { + "dialogue": "I guess neither of us won... Oh well.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-34", + "lineInfo": { + "dialogue": "I apologize for being bitter when we met. Your presence triggered a fierce fight or flight reaction within me!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-35", + "lineInfo": { + "dialogue": "Stop by my house once and awhile, will you? I think I'll start fishing as a hobby... I need to relax.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Nikoler" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "purpleandblue-nikoler-36", + "lineInfo": { + "dialogue": "Why did I... What was all that effort for...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-37", + "lineInfo": { + "dialogue": "What were we thinking..?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Nikoler" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "purpleandblue-nikoler-38", + "lineInfo": { + "dialogue": "Could I... Use the power of the meteors in order to do that..?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-39", + "lineInfo": { + "dialogue": "Yeah... Yeah, maybe... And then-", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Nikoler" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "purpleandblue-nikoler-40", + "lineInfo": { + "dialogue": "Especially after you... You...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-41", + "lineInfo": { + "dialogue": "Please, just leave me alone.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Nikoler" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "purpleandblue-nikoler-42", + "lineInfo": { + "dialogue": "It's you! Glad to have crossed paths again!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-43", + "lineInfo": { + "dialogue": "Since the incident, I've decided to start fishing as a hobby.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-44", + "lineInfo": { + "dialogue": "Take this- for all I care, you can own this!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-45", + "lineInfo": { + "dialogue": "Thank you... for saving me.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Nikoler" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "purpleandblue-nikoler-46", + "lineInfo": { + "dialogue": "Check up on Korun from time to time for me, will you?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-47", + "lineInfo": { + "dialogue": "I'm still taking a break from all the science stuff... But he definitely hasn't seen the last of me!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Nikoler" + } + }, + { + "fileOverride": "purpleandblue-nikoler-48", + "lineInfo": { + "dialogue": "After all, I'm still the one who got to the heart of the mountain! I'm even able to sleep soundly knowing that I've won...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Nikoler" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-37", + "lineInfo": { + "dialogue": "I see you're completely drenched! There's this odd aura around you... What happened?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-38", + "lineInfo": { + "dialogue": "So you took the meteor shard, then you lost it, and Nikoler DIED?!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Korun" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-39", + "lineInfo": { + "dialogue": "You... You actually found a meteor shard!! That's amazing! That's... that's... um...", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-40", + "lineInfo": { + "dialogue": "You... You managed to fail at every task I gave you. That's almost...impressive.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-41", + "lineInfo": { + "dialogue": "I... I don't want to believe he's dead. Were you CERTAIN of it??", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-42", + "lineInfo": { + "dialogue": "What... What will I do without him..?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Korun" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-43", + "lineInfo": { + "dialogue": "S-Sorry. I'm just a little shocked is all. I do have to thank you for the shard...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Korun" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-44", + "lineInfo": { + "dialogue": "You explored thoroughly, and couldn't find a shard? Well, we still have much to discover I suppose.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-45", + "lineInfo": { + "dialogue": "Uh, what did you say j-just now? The cave collapsed and Nikoler d-died..?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-46", + "lineInfo": { + "dialogue": "That's, um, haha... That doesn't sound right, he can't die, he can't leave like that, he can't-", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-47", + "lineInfo": { + "dialogue": "S-Sorry. I'm just a little shocked is all. And you came back empty-handed... This was just a loss for everyone involved.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-48", + "lineInfo": { + "dialogue": "A-at the very least, you saw this through... I have to commend you for that... I think.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-49", + "lineInfo": { + "dialogue": "Just take these, and go. I have much to think about.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Korun" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-50", + "lineInfo": { + "dialogue": "This meteor shard... I guess it's a medal of honor for my victory over Nikoler.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-51", + "lineInfo": { + "dialogue": "I just can't shake the feeling that it's all meaningless though...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Korun" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-52", + "lineInfo": { + "dialogue": "I still can't thank you enough for that fragment. I hope you continue your interest in the cosmic mysteries that have landed in Gavel.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Korun" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-53", + "lineInfo": { + "dialogue": "It's over... He'll never come back...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Korun" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-54", + "lineInfo": { + "dialogue": "If only I could go back in time...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Korun" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-55", + "lineInfo": { + "dialogue": "Oh... It's you... I... *hic* S-sorry, I can't really talk right now.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Korun" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-56", + "lineInfo": { + "dialogue": "Get outta there...! How'd you even get in!?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Korun" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-57", + "lineInfo": { + "dialogue": "He's gone... Nikoler's gone and I finally became the better scientist... Who cares? He's not even here to know and I...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-58", + "lineInfo": { + "dialogue": "I think I'm done with all this science stuff. Maybe I'll just go and retire somewhere... And forget about all this.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-59", + "lineInfo": { + "dialogue": "I'm so lost... Could that human really not had saved him..? Not like it matters now...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Korun" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "purpleandblue-korun-60", + "lineInfo": { + "dialogue": "A cave you say? I've heard about such a thing, but have never found it.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Korun" + } + }, + { + "fileOverride": "purpleandblue-korun-61", + "lineInfo": { + "dialogue": "Keep it up, you seem to be getting close!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Korun" + } + } + ] + } + } + }, + "Realm of Light I - The Worm Holes": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "realmoflight1-malo-1", + "lineInfo": { + "dialogue": "Arrighty fellers, let's get this wrapped up now! 'ere's plenty more holes where this one came from!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Malo" + } + }, + { + "fileOverride": "realmoflight1-malo-2", + "lineInfo": { + "dialogue": "...what in...aw no!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Malo" + } + }, + { + "fileOverride": "realmoflight1-malo-3", + "lineInfo": { + "dialogue": "The scaffolds are crackin'! Everyone, get offa there, now!!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Malo" + } + }, + { + "fileOverride": "realmoflight1-worker-1", + "lineInfo": { + "dialogue": "GwaaAAAAAH!!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Worker" + } + }, + { + "fileOverride": "realmoflight1-malo-4", + "lineInfo": { + "dialogue": "Aw, hell... I knew this project was a bust from the start...there goes Willam and Clint cause a' this!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Malo" + } + }, + { + "fileOverride": "realmoflight1-malo-5", + "lineInfo": { + "dialogue": "I gotta get someone tough enough to get down there...hm? Hey, a human! Git on over here!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Malo" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "realmoflight1-malo-6", + "lineInfo": { + "dialogue": "I gotta ask, how much 'a that didja see, Wynn feller? Wasn't pretty, and I'm in charge a' them folks, so I gotta take responsibility fer that.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Malo" + } + }, + { + "fileOverride": "realmoflight1-malo-7", + "lineInfo": { + "dialogue": "Th' mayor of Olux there saw these holes poppin' up, and hired us out to cover 'em up. Thing is, the ground's too unstable to build.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Malo" + } + }, + { + "fileOverride": "realmoflight1-malo-8", + "lineInfo": { + "dialogue": "It's gettin' real worrying round here. They only started openin' up recently, and there've been quakes too. Feels like the place is gonna collapse!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Malo" + } + }, + { + "fileOverride": "realmoflight1-malo-9", + "lineInfo": { + "dialogue": "I think we oughta head down there and figure out what 'n heck's goin' on, and you're the best armed outta any of us, being human 'n all.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Malo" + } + }, + { + "fileOverride": "realmoflight1-malo-10", + "lineInfo": { + "dialogue": "Think y'all could head down 'n see if you can rustle up any leads? There's a path down just to the left of the hole.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Malo" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "realmoflight1-malo-11", + "lineInfo": { + "dialogue": "What in tarnation...? The heck did you find down there, soldier?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Malo" + } + }, + { + "fileOverride": "realmoflight1-malo-12", + "lineInfo": { + "dialogue": "Oh, it was just the skin, huh? Dang...was hopin' you'd've seen what it was, cause I got no clue 'bout this.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Malo" + } + }, + { + "fileOverride": "realmoflight1-malo-13", + "lineInfo": { + "dialogue": "Urgh. Only gal I know who might have an idea 'bout this is that durn elf lady...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Malo" + } + }, + { + "fileOverride": "realmoflight1-malo-14", + "lineInfo": { + "dialogue": "She's got purple hair and's been wanderin' round like she knows everything. Yeah, she's a bright penny but she ain't gotta be so uppity ta all of us 'bout it.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Malo" + } + }, + { + "fileOverride": "realmoflight1-malo-15", + "lineInfo": { + "dialogue": "She put up a camp just east of here. She'll prob'ly react better to you than me, so I'll go to the authorities and see if they have any leads.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Malo" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "realmoflight1-lari-1", + "lineInfo": { + "dialogue": "...Haven’t we met? I have witnessed your presence in Gavel more than once.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-2", + "lineInfo": { + "dialogue": "I am Lari. I might have greeted you properly before if I were not so busy, which reminds me. You have a reason to be here, yes?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-3", + "lineInfo": { + "dialogue": "Hm...I believe I know what you have found, by your description. That dead skin too, is proof enough, I would say.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-4", + "lineInfo": { + "dialogue": "The creature which shed that skin is known as a Grootslang. Though large, they are rather peaceful. Gentle giants, I believe the saying is?", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-5", + "lineInfo": { + "dialogue": "This horrid Decay...it affects their habitats underground. They are seeking shelter closer to the surface. I have been trying to scrub the Decay without success...", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-6", + "lineInfo": { + "dialogue": "Wait... More holes appeared just today? There...there were deaths?! W-where, when?!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-7", + "lineInfo": { + "dialogue": "No, no...! I refuse to be responsible for any more deaths... Human, tell me your name, please.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-8", + "lineInfo": { + "dialogue": "soldier, then... Let us head to the site. I need to fix this... Please, help me get to the root of this problem so I may soothe the land's pain.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Lari" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "realmoflight1-lari-9", + "lineInfo": { + "dialogue": "So this is the site... ⓢⓘⓞⓒⓗⓐⓘⓝ ⓓⓞ ⓓ'ⓐⓝⓐⓜⓐⓒⓗⓐ ⓘ ⓜⓐⓘⓣ...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-10", + "lineInfo": { + "dialogue": "Here. Allow me to provide at least one person safe passage into the pit.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-11", + "lineInfo": { + "dialogue": "Have faith- Jump in. I will carry you down slowly.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Lari" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "realmoflight1-lari-12", + "lineInfo": { + "dialogue": "Take the lead. If we can find any further evidence of the Grootslangs around here, it will aid in my understanding.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Lari" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "realmoflight1-lari-13", + "lineInfo": { + "dialogue": "Hm? This wall looks like it's been disturbed recently...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-14", + "lineInfo": { + "dialogue": "I can hear it...but where is it crawling...?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-15", + "lineInfo": { + "dialogue": "That's the mother Wyrm! She must be what is making the holes. We need to follow her!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Lari" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "realmoflight1-lari-16", + "lineInfo": { + "dialogue": "Take the lead.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Lari" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "realmoflight1-lari-17", + "lineInfo": { + "dialogue": "Ah...ehm, soldier? I've... Um, this is...a bit difficult to say, but...", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-18", + "lineInfo": { + "dialogue": "I...do not believe we need to fight, or to kill, here? The creatures are native to here, we are invading their space.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-19", + "lineInfo": { + "dialogue": "Why should they be attacked for merely existing in their territory? Even if they are animals, I believe that you can solve these problems without killing.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-20", + "lineInfo": { + "dialogue": "I...understand you may not have the same powers as myself... And I, ah...am not free of guilt, either. But I think you could stand to take a peaceful stance.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-21", + "lineInfo": { + "dialogue": "Even if I am alone on that front...though I understand you are taught differently where you come from. I do not envy you, though I still thank you for your aid thusfar.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-22", + "lineInfo": { + "dialogue": "Your methods are...disagreeable, but you still have a sense of right to you, I feel... Well, the tunnel diverges here. We'll need to split apart.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-23", + "lineInfo": { + "dialogue": "I'll go to the right, so you ought to continue to the left here. I will meet up with you again soon, hopefully.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Lari" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "realmoflight1-lari-24", + "lineInfo": { + "dialogue": "Aah! soldier! Don't...don't make any sudden movements.", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-25", + "lineInfo": { + "dialogue": "This Grootslang is uncharacteristically aggressive... She's scared, being so close to the surface. Stay behind me, please.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-26", + "lineInfo": { + "dialogue": "AH! ⓒⓞⓢⓐⓘⓝ!", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 80 + } + }, + { + "fileOverride": "realmoflight1-lari-27", + "lineInfo": { + "dialogue": "Do not approach it! The power of the Wyrm is far too much for you!", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 80 + } + }, + { + "fileOverride": "realmoflight1-lari-28", + "lineInfo": { + "dialogue": "W-wait, again? ⓒⓞ-ⓒⓞⓢⓐ- Aah, MOVE!", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 80 + } + }, + { + "fileOverride": "realmoflight1-lari-29", + "lineInfo": { + "dialogue": "soldier!! You're unharmed, yes? She's scared and in pain!", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 80 + } + }, + { + "fileOverride": "realmoflight1-lari-30", + "lineInfo": { + "dialogue": "I have to get it right this time... I'm going to talk her down, stay there!", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 80 + } + }, + { + "fileOverride": "realmoflight1-lari-31", + "lineInfo": { + "dialogue": "You must be calm, I beg you. Retreat to the earth- You harm those above!", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 80 + } + }, + { + "fileOverride": "realmoflight1-lari-32", + "lineInfo": { + "dialogue": "The earth rotting... I take full responsibility, but does the grass above not rot also?", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 80 + } + }, + { + "fileOverride": "realmoflight1-lari-33", + "lineInfo": { + "dialogue": "I wish to soothe your pain, but you must allow me to aid you- You must listen!", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 80 + } + }, + { + "fileOverride": "realmoflight1-lari-34", + "lineInfo": { + "dialogue": "What does this violence solve? Be calm, please!", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 80 + } + }, + { + "fileOverride": "realmoflight1-lari-35", + "lineInfo": { + "dialogue": "soldier, it won't budge... There's something in its mind rejecting me. Distract it- but don't approach! It will kill you if you get close. Just...be loud!", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 80 + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "realmoflight1-lari-36", + "lineInfo": { + "dialogue": "AIYEE! soldier! Hold on in there!", + "line": { + "current": 1, + "max": 16 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 100 + } + }, + { + "fileOverride": "realmoflight1-lari-37", + "lineInfo": { + "dialogue": "Can you hear me?! I'll get her to...to...s-something! Spit you up, I don't know! Just...please, d-don't die!", + "line": { + "current": 2, + "max": 16 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 100 + } + }, + { + "fileOverride": "realmoflight1-lari-38", + "lineInfo": { + "dialogue": "W-We have... We have not laid a blow against you! It is not right for you to do the same!", + "line": { + "current": 3, + "max": 16 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 100 + } + }, + { + "fileOverride": "realmoflight1-lari-39", + "lineInfo": { + "dialogue": "You would wound and consume everything in your rage? Even knowing the consequences?", + "line": { + "current": 4, + "max": 16 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 100 + } + }, + { + "fileOverride": "realmoflight1-lari-40", + "lineInfo": { + "dialogue": "Your hunger cannot be sated with this fruitless destruction! I beg of you, let them out!", + "line": { + "current": 5, + "max": 16 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 100 + } + }, + { + "fileOverride": "realmoflight1-lari-41", + "lineInfo": { + "dialogue": "You know th- W-wait...where did you... AAAH!", + "line": { + "current": 6, + "max": 16 + }, + "npc": "Lari" + }, + "settings": { + "falloff": 100 + } + }, + { + "fileOverride": "realmoflight1-lari-42", + "lineInfo": { + "dialogue": "...y-you... soldier... I...y-you're still alright? I...*hic* I...", + "line": { + "current": 7, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-43", + "lineInfo": { + "dialogue": "I tried...w-why does no one listen to me? Why won't a-anything change for me?", + "line": { + "current": 8, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-44", + "lineInfo": { + "dialogue": "She...she's been eating dark parasites. They're wracking her insides and h-hurting her head...", + "line": { + "current": 9, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-45", + "lineInfo": { + "dialogue": "I...i-it's so d-dark... I c-can't breathe... This...th-this can't be the end...", + "line": { + "current": 10, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-46", + "lineInfo": { + "dialogue": "I...n-no, I can't die in here... I-I'm needed still... You're n-needed still! I... I...", + "line": { + "current": 11, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-47", + "lineInfo": { + "dialogue": "I n-need... Or... O-Or... C-Concentrate, Lari... You can do this...", + "line": { + "current": 12, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-48", + "lineInfo": { + "dialogue": "ⓑⓔⓐⓣⓗⓐⓒⓗ ⓜⓞⓡ ⓢⓞⓛⓐⓘⓢ! ⓓⓔⓐⓝ ⓘⓞⓝ ⓐⓝ ⓐⓝⓐⓜ ⓣⓤⓘⓡⓢⓔⓐⓒⓗ ⓢⓔⓞ!", + "line": { + "current": 13, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-49", + "lineInfo": { + "dialogue": "LET US OUT! LET US OUT OF HERE! DON'T LET US DIE LIKE THIS! I'M BEGGING YOU, PLEASE!!", + "line": { + "current": 14, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-50", + "lineInfo": { + "dialogue": "...I...oh no... It's...d-d... I... I j-just... I just w-wanted out... Ohhh...n-no...", + "line": { + "current": 15, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-51", + "lineInfo": { + "dialogue": "...w-we're...leaving. I...I c-can't look at this any more...", + "line": { + "current": 16, + "max": 16 + }, + "npc": "Lari" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "realmoflight1-lari-52", + "lineInfo": { + "dialogue": "...I... That's...m-my fault...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-53", + "lineInfo": { + "dialogue": "I'm...I'm so sorry, soldier. If I'd...I don't... I don't even know what else I could have d-done...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-54", + "lineInfo": { + "dialogue": "There...it didn’t feel like there was...anything left to it... But, if I’d just been quicker, then... Would it...would it even have made a difference?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-55", + "lineInfo": { + "dialogue": "...some savior I am... I need to be better, but what else even is there that...ugh, I'm going in circles...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-56", + "lineInfo": { + "dialogue": "Let's... Let's just leave...", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Lari" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "realmoflight1-lari-57", + "lineInfo": { + "dialogue": "...I...I can't believe this. This is...does destiny just hate me? What have I done to deserve this?!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-58", + "lineInfo": { + "dialogue": "The Mother Wyrm laid eggs... Eggs infested with parasites! Every single one is going to be born berserk!!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-59", + "lineInfo": { + "dialogue": "You saw how strong the mother was...an infestation like this could cause the entire region of Gavel to collapse in a quake...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-60", + "lineInfo": { + "dialogue": "They...they need to be stopped, but...I can't do it. I c-can't kill... I'm sorry, I just can't!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-61", + "lineInfo": { + "dialogue": "Bring a group... Even Whelps can be a terror if they're enraged. Just...p-please, take care of this quickly.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight1-lari-62", + "lineInfo": { + "dialogue": "You deserve the best... But that's more than I can give...so here. Take these. I'll move along.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Lari" + } + } + ] + } + } + }, + "Realm of Light II - Taproot": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "realmoflight2-lari-1", + "lineInfo": { + "dialogue": "...oh. Soldier, you're back. Ehm...I have to say, I'm...rather busy at the moment.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-2", + "lineInfo": { + "dialogue": "I have...important things to do. This accursed Decay...I have to end it. This all needs to stop.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-3", + "lineInfo": { + "dialogue": "I am thankful for your aid with the...the Grootslang, but I do not believe you will be able to help with this- Simply a matter of scale.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-4", + "lineInfo": { + "dialogue": "I apologize, but I need to focus on my task here. If, perhaps, you could come back another time? And, I do mean that sincerely...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-5", + "lineInfo": { + "dialogue": "I can't even recall how many attempts this will make...but all my knowledge has gone into this. This must work.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Lari" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "realmoflight2-lari-6", + "lineInfo": { + "dialogue": "...I suppose I can't fault you for being curious. You may have seen a large, dark-looking patch of ground on your way here- I am trying to tend to it once more.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-7", + "lineInfo": { + "dialogue": "It is...the most obvious stain of the decay, and very intense...if I can scrub this out, the rest should follow.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-8", + "lineInfo": { + "dialogue": "This concoction of mine should...do the trick!", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-9", + "lineInfo": { + "dialogue": "It...it's working!! I can feel it, the land is reacting positively!", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-10", + "lineInfo": { + "dialogue": "I...I... It was...it was working, a-and... Agh, why can't I get this RIGHT?!", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-11", + "lineInfo": { + "dialogue": "How many decades have I been doing this? How much time have I wasted, just...flailing like this?!", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-12", + "lineInfo": { + "dialogue": "Look, Soldier, I...I don't know what you expect to do against this. The Wyrm was one thing, but...this is beyond your comprehension.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-13", + "lineInfo": { + "dialogue": "I think you sh... Should...w-what is... Now, of all times? As I fail?!", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-14", + "lineInfo": { + "dialogue": "The road, look! He's contacting me! A-are you finally giving me the answers I've asked for?", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-15", + "lineInfo": { + "dialogue": "I have to follow the trail! I...I have to know what he's telling me!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Lari" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "realmoflight2-lari-16", + "lineInfo": { + "dialogue": "...I followed you seeking answers...and here, I am presented with more questions. Why did he bring us here?", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-17", + "lineInfo": { + "dialogue": "This gate has appeared, immovable and impassable, since the moment that...that everything started.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-18", + "lineInfo": { + "dialogue": "I don't...is he trying to remind me of what's at stake? Did he want to show y- No, that's...he wouldn't know you...but then, what IS this about?!", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-19", + "lineInfo": { + "dialogue": "Rrgh... ANSWER ME! PLEASE! I've begged you for so long to answer!", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-20", + "lineInfo": { + "dialogue": "You gave me my task and your light but never told me what to DO! I've tried everything I can think of!!", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-21", + "lineInfo": { + "dialogue": "Tell me! Please, just t-tell me already!! I don't know how much longer I can stand this!!", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-22", + "lineInfo": { + "dialogue": "I...a-another one? Where are you leading me now?", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-23", + "lineInfo": { + "dialogue": "It...the gateway...? Are you...I can't understand! Why this, again?", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-24", + "lineInfo": { + "dialogue": "You showed me this before... At first, when you first contacted me. I made the choice...", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-25", + "lineInfo": { + "dialogue": "Must I make it again? Is that it, do I need to prove myself to you once more?", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-26", + "lineInfo": { + "dialogue": "I...what? You...you present me with this, but refuse to let me do what you want?", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-27", + "lineInfo": { + "dialogue": "Soldier...please, can you investigate the doorway? There must be something wrong that I don't understand.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Lari" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "realmoflight2-orphion-1", + "lineInfo": { + "dialogue": "My pulse... Human. I must inquire to you. I present you a test. Guide your attention to those you see.", + "line": { + "current": 1, + "max": 14 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-2", + "lineInfo": { + "dialogue": "I must see the rhythm your heart beats. Listen well.", + "line": { + "current": 2, + "max": 14 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-mayor-1", + "lineInfo": { + "dialogue": "This has gone far enough. I can't do this anymore! I can't give you any more and I refuse to apologize for it!", + "line": { + "current": 3, + "max": 14 + }, + "npc": "Mayor" + } + }, + { + "fileOverride": "realmoflight2-drurelix-1", + "lineInfo": { + "dialogue": "You know our deal. Remember what good you are doing by following the plans I've laid out for you.", + "line": { + "current": 4, + "max": 14 + }, + "npc": "Dr. Urelix" + } + }, + { + "fileOverride": "realmoflight2-drurelix-2", + "lineInfo": { + "dialogue": "Are you going to let your emotions cloud your judgment? You're a smarter man than that, Mr. Mayor.", + "line": { + "current": 5, + "max": 14 + }, + "npc": "Dr. Urelix" + } + }, + { + "fileOverride": "realmoflight2-mayor-2", + "lineInfo": { + "dialogue": "You can't possibly believe that throwing away the lives of innocent people is right! I can't go on with this on my conscience!", + "line": { + "current": 6, + "max": 14 + }, + "npc": "Mayor" + } + }, + { + "fileOverride": "realmoflight2-mayor-3", + "lineInfo": { + "dialogue": "Detective Hart WILL be hearing from me, and he'll be hearing everything. We can't keep sacrificing our own like this!", + "line": { + "current": 7, + "max": 14 + }, + "npc": "Mayor" + } + }, + { + "fileOverride": "realmoflight2-drurelix-3", + "lineInfo": { + "dialogue": "Our golems have single-handedly turned the tide of the Humans' corruption war. You would save ten here and sentence a thousand to die overseas?", + "line": { + "current": 8, + "max": 14 + }, + "npc": "Dr. Urelix" + } + }, + { + "fileOverride": "realmoflight2-mayor-4", + "lineInfo": { + "dialogue": "You're a sick, twisted man, Urelix. I will not abide by this a moment longer.", + "line": { + "current": 9, + "max": 14 + }, + "npc": "Mayor" + } + }, + { + "fileOverride": "realmoflight2-orphion-3", + "lineInfo": { + "dialogue": "My pulse, you must decide. Three paths diverge upon your road.", + "line": { + "current": 10, + "max": 14 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-4", + "lineInfo": { + "dialogue": "You may leave. The rays of fate will see to destiny unfolding.", + "line": { + "current": 11, + "max": 14 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-5", + "lineInfo": { + "dialogue": "You may end this ''Mayor's'' life. Blood upon your hands in many ways.", + "line": { + "current": 12, + "max": 14 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-6", + "lineInfo": { + "dialogue": "You may end the life of Urelix. Heartbeats ceased by a bleeding heart.", + "line": { + "current": 13, + "max": 14 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-7", + "lineInfo": { + "dialogue": "Which way does your heart beat? How will you cast your light? Can you see?", + "line": { + "current": 14, + "max": 14 + }, + "npc": "???" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "realmoflight2-orphion-8", + "lineInfo": { + "dialogue": "My pulse... The blood of a bleeding heart has poisoned me. Even if you believe the sun should shine elsewhere, you must direct it yourself.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "realmoflight2-orphion-9", + "lineInfo": { + "dialogue": "You must realize what is needed. You must see light through my lens.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-10", + "lineInfo": { + "dialogue": "To leave... As destiny unfolds, the sun shall set.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-11", + "lineInfo": { + "dialogue": "To end this ''Mayor's'' life... To snuff out one whose heart aches is painful.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-12", + "lineInfo": { + "dialogue": "To end the life of Urelix... The shadows of war shall engulf all.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-13", + "lineInfo": { + "dialogue": "My pulse, there is only one choice. You must do what is required, I beg of you.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "???" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "realmoflight2-drurelix-4", + "lineInfo": { + "dialogue": "Ah, you recognize necessity. That couldn't have been pleasant...but what's needed isn't pleasant, in the end.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dr. Urelix" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "realmoflight2-orphion-14", + "lineInfo": { + "dialogue": "My pulse, you are worthy!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "realmoflight2-lari-28", + "lineInfo": { + "dialogue": "...I didn't think you would be able to help, but I had to ask. So...was this for nothing?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-29", + "lineInfo": { + "dialogue": "Wait...y-you...had a choice? He gave you the choice too?! A-Already?!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-30", + "lineInfo": { + "dialogue": "Wh- I don't understand! You...you just arrived to Gavel! You haven't seen its decline! Felt its pain!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-31", + "lineInfo": { + "dialogue": "What did you do?! The gate is opening? YOU did this?! I know your heart is in the right place, but you’re a stranger to this land!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-32", + "lineInfo": { + "dialogue": "I...I...rrrgh... AAAAGH!! This isn't fair!! I've worked for decades and the light just...throws me to the wayside?!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-33", + "lineInfo": { + "dialogue": "PLEASE! Just let me in!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Lari" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "realmoflight2-orphion-15", + "lineInfo": { + "dialogue": "My pulse, you must leave her be. Her heart's emotions have overpowered her mind's judgement. She must learn to separate them as you have.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "???" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "realmoflight2-orphion-16", + "lineInfo": { + "dialogue": "My pulse, you must leave her be. Her heart's emotions have overpowered her mind's judgement. She must learn to separate them as you have.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "realmoflight2-lari-34", + "lineInfo": { + "dialogue": "Please... You can't DO this to me!!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-35", + "lineInfo": { + "dialogue": "Why do you want this human to enter the Taproot?! What's special about them, what's their connection? What have they done that I haven't?! Tell me, please! Let me be useful!!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Lari" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "realmoflight2-orphion-17", + "lineInfo": { + "dialogue": "Your heartbeat beats in time with mine. Your mind is unclouded, despite the fury you have been steeped in. My pulse, you are needed.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-18", + "lineInfo": { + "dialogue": "Your eyes cannot see the scope of the realms. You must allow me to shed light upon them- You must see the connections.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-19", + "lineInfo": { + "dialogue": "Light... Dark... We oppose. I am light. It is dark. Our places reflect this land...and it is plain- The sun is setting. Light is fading.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-20", + "lineInfo": { + "dialogue": "The land you visit warps with the slow siphoning of my light, my blood. It becomes outlandish and strange-Oppressive and alien.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-21", + "lineInfo": { + "dialogue": "As dusk approaches- As darkness spreads- My heart slows and stops. My pulse, you are needed. You shall be as one with me, and you shall see.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-22", + "lineInfo": { + "dialogue": "The Realm of Light needs life anew- A new p ulse. It needs you.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "???" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "realmoflight2-orphion-23", + "lineInfo": { + "dialogue": "Our light is synchronous! You may see what I must have you see...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-24", + "lineInfo": { + "dialogue": "Follow the road. You must witness the reason behind my trial.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-25", + "lineInfo": { + "dialogue": "See my memories. The memories of the realm. See...and be enlightened.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "???" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "realmoflight2-orphion-26", + "lineInfo": { + "dialogue": "Witness it... The Equinox. Learn why you are needed, my pulse.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "realmoflight2-orphion-27", + "lineInfo": { + "dialogue": "Witness it. The vile emergence...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-28", + "lineInfo": { + "dialogue": "Witness the beginning of decay.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "realmoflight2-lari-36", + "lineInfo": { + "dialogue": "My light...I won't let you down!", + "line": { + "current": 1, + "max": 17 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-37", + "lineInfo": { + "dialogue": "You! You don't belong here!", + "line": { + "current": 2, + "max": 17 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-38", + "lineInfo": { + "dialogue": "Wah! Back away, I don't want to hurt you!", + "line": { + "current": 3, + "max": 17 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-39", + "lineInfo": { + "dialogue": "I can do this... Orphion, lend me your voice!", + "line": { + "current": 4, + "max": 17 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-40", + "lineInfo": { + "dialogue": "Return to your realm in peace!", + "line": { + "current": 5, + "max": 17 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-41", + "lineInfo": { + "dialogue": "Your power is blinded by light. You cannot win!", + "line": { + "current": 6, + "max": 17 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-42", + "lineInfo": { + "dialogue": "Peace, strange creature! You must be peaceful!", + "line": { + "current": 7, + "max": 17 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-43", + "lineInfo": { + "dialogue": "Why isn't this working? Even Orphion's voice...", + "line": { + "current": 8, + "max": 17 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-44", + "lineInfo": { + "dialogue": "It's scarring the land... I need to end this, quickly...", + "line": { + "current": 9, + "max": 17 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-45", + "lineInfo": { + "dialogue": "His light... This power... I can do this!", + "line": { + "current": 10, + "max": 17 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-46", + "lineInfo": { + "dialogue": "The embodiment of light supports me!", + "line": { + "current": 11, + "max": 17 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-47", + "lineInfo": { + "dialogue": "You cannot fight the focus of pure light!", + "line": { + "current": 12, + "max": 17 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-48", + "lineInfo": { + "dialogue": "Be done! I bind you with Orphion's light!", + "line": { + "current": 13, + "max": 17 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-49", + "lineInfo": { + "dialogue": "Wait...it...it's n-not holding?!", + "line": { + "current": 14, + "max": 17 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-orphion-29", + "lineInfo": { + "dialogue": "Lari... A conflicted heart failed to channel my light. She refused to battle.", + "line": { + "current": 15, + "max": 17 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-30", + "lineInfo": { + "dialogue": "The vile intruder was weak... But every opportunity to strike, exchanged for words to the deaf.", + "line": { + "current": 16, + "max": 17 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight2-orphion-31", + "lineInfo": { + "dialogue": "My pulse... it pains me. Her light simply fails to shine where it is needed, and so we are here.", + "line": { + "current": 17, + "max": 17 + }, + "npc": "???" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "realmoflight2-lari-50", + "lineInfo": { + "dialogue": "I... I...hope you'll forgive me, soldier. My anger wasn't with you. I...j-just...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-51", + "lineInfo": { + "dialogue": "I work for untold years, trying to save this province, to save a Realm... All to so little avail. To the sound of silence from the one I'm trying to help.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-52", + "lineInfo": { + "dialogue": "And then, you appear, and... I still haven't ever been in there. I'd...I'd ask what it was like, but it's...probably private, right?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-53", + "lineInfo": { + "dialogue": "At...at least I have an ally now, r-right? But...I'm afraid that... N-no, it's silly, you don't need to hear me fretting.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight2-lari-54", + "lineInfo": { + "dialogue": "I... I promise I can still be useful. I'll... I'll find a way. I promise you. I'll...get out of your way, for now.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Lari" + } + } + ] + } + } + }, + "Realm of Light III - A Headless History": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-hans-1", + "lineInfo": { + "dialogue": "Oi, you there! With the small nose and whatnot! I got somethin' to ask you. Got a minute? ", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-2", + "lineInfo": { + "dialogue": "Good, you're good people. It's about our neighbor, Referick. He's a bit of a conspiracy nut. You know the type, villager illuminati, Wybels are evil, all that?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-3", + "lineInfo": { + "dialogue": "He's acting proper strange though, the past few days. Thinkin' a lord of time's draggin' creatures from other dimensions doesn't make ya stop eatin' or drinkin'.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-4", + "lineInfo": { + "dialogue": "He'll talk your ear off about it if you give him half a chance, but he ain't sayin' a word to me, even when I tried askin' about his theories.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-5", + "lineInfo": { + "dialogue": "Somethin's definitely wrong about him, that much's for sure. Could ya take a look for me, see whatcha can figure out and all?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-6", + "lineInfo": { + "dialogue": "He lives in the house next to the pile of rocks. He's got screws loose but I don't want 'im dyin' on me, yeah?", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Hans" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-hans-7", + "lineInfo": { + "dialogue": "Oi! Any luck with ol' Rick there? ", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-8", + "lineInfo": { + "dialogue": "...hm. Dang it...y'know, maybe there's somethin' here that'll tell us what in heck happened.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-9", + "lineInfo": { + "dialogue": "Let's look around the house for anythin' he mighta been workin' on. Maybe he finally fiddled with somethin' he shouldn'ta fiddled with? ", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Hans" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-hans-10", + "lineInfo": { + "dialogue": "Whassat you're lookin' at there? The castle? Don't see why he'd be pointin' this ol' telescope that way.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-11", + "lineInfo": { + "dialogue": "You're human, so you wouldn't know, but somethin' like two hundred years ago, an elf of all people lived in that castle. Called 'imself Dullahan, wore a helmet a lot, I think.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-12", + "lineInfo": { + "dialogue": "People thought he was the reason for the Decay- can't imagine why, personally, and obviously they weren't right.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-13", + "lineInfo": { + "dialogue": "...hm. Y'know, there's some ghost stories about Dullahan still livin' in that castle... Come to think of it, I think Referick mentioned a theory about it.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-14", + "lineInfo": { + "dialogue": "Barely remember what it was about cause of how many crackpots he's stuck his head into, but it's somethin' about a ghost. 's the only lead I can think of, anyways...", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-15", + "lineInfo": { + "dialogue": "The castle door's locked, but you can access the basement. Think you could try lookin' over there? That's all I got.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Hans" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-1", + "lineInfo": { + "dialogue": "...an unfamiliar soul? Strange. I have not brought you here. I do not know of you.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-2", + "lineInfo": { + "dialogue": "What an odd feeling... I haven't felt confusion in a long time. How refreshing...still, I shall ask you to leave.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "5": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-3", + "lineInfo": { + "dialogue": "Excuse you. I asked you to leave, strange person. You would ignore my request? ", + "line": { + "current": 1, + "max": 3 + }, + "npc": "???" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-4", + "lineInfo": { + "dialogue": "Such an action is rather insolent, not to mention...interesting. Still, interfering with my business is inexcusable. ", + "line": { + "current": 2, + "max": 3 + }, + "npc": "???" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-5", + "lineInfo": { + "dialogue": "Demons of the Prison Guard, I compel you to execute this interloper. Trap their soul for my perusal later. ", + "line": { + "current": 3, + "max": 3 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "6": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-hans-16", + "lineInfo": { + "dialogue": "OI! Referick!! Wait for me! Ain'tcha need some food and drink first?!", + "line": { + "current": 1, + "max": 16 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-17", + "lineInfo": { + "dialogue": "The heck did you do?! Referick just bolted out the door like he forgot his wallet or somethin'!", + "line": { + "current": 2, + "max": 16 + }, + "npc": "Hans" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "7": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-hans-18", + "lineInfo": { + "dialogue": "C'mon mate, you got up and moved for the first time in days and now you're clammin' up again? Speak to me!", + "line": { + "current": 4, + "max": 16 + }, + "npc": "Hans" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-referick-1", + "lineInfo": { + "dialogue": "WROOOOOAAAAAARRR!!! I'M ALIIIIIVE!! ", + "line": { + "current": 5, + "max": 16 + }, + "npc": "Referick" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-19", + "lineInfo": { + "dialogue": "YIPE! Never heard 'im scream like that before! Never heard anyone scream like that before! I'd like to never hear anyone scream like that again!", + "line": { + "current": 6, + "max": 16 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-referick-2", + "lineInfo": { + "dialogue": "Oh, shut UP Hans! I nearly had my soul devoured, don't DARE give me any chaff when I was RIGHT all along!!", + "line": { + "current": 7, + "max": 16 + }, + "npc": "Referick" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-20", + "lineInfo": { + "dialogue": "Agh, alright, alright! Quiet, my ears are ringin'! I'll listen, I'll listen, just quiet!", + "line": { + "current": 8, + "max": 16 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-referick-3", + "lineInfo": { + "dialogue": "I knew the disappearances in Gelibord weren't just because of the risen bodies. People were being left catatonic!! That doesn't happen randomly!", + "line": { + "current": 9, + "max": 16 + }, + "npc": "Referick" + } + }, + { + "fileOverride": "rol3aheadlesshistory-referick-4", + "lineInfo": { + "dialogue": "It's Dullahan, I swear on my life! I figured him out and he came after me! He's devouring peoples' souls and siphoning their energy for himself!", + "line": { + "current": 10, + "max": 16 + }, + "npc": "Referick" + } + }, + { + "fileOverride": "rol3aheadlesshistory-referick-5", + "lineInfo": { + "dialogue": "He's acting from within the castle somehow- Ghostly hands and servants, I'll bet! And that means there's a chance to stop him, if he has to act indirectly!", + "line": { + "current": 11, + "max": 16 + }, + "npc": "Referick" + } + }, + { + "fileOverride": "rol3aheadlesshistory-referick-6", + "lineInfo": { + "dialogue": "We need to round up the townsfolk, the guards, the military, EVERYONE! We have to storm the castle and stop him before he's able to escape!", + "line": { + "current": 12, + "max": 16 + }, + "npc": "Referick" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-21", + "lineInfo": { + "dialogue": "...criminy, you really bit the big one, didn'tcha...look, if he's tryin' to eat people's souls, wouldn't it be smarter to NOT have a huge mob?", + "line": { + "current": 13, + "max": 16 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-referick-7", + "lineInfo": { + "dialogue": "Wait, wh-what do you mean?! Shouldn't everyone be on high alert? Won't we have a better chance of swarming him all at once?", + "line": { + "current": 14, + "max": 16 + }, + "npc": "Referick" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-22", + "lineInfo": { + "dialogue": "He'd have a whole mob of people ready to take from in that case. Sending in one, heavily-armed person, or a small group'd be better.", + "line": { + "current": 15, + "max": 16 + }, + "npc": "Hans" + } + }, + { + "fileOverride": "rol3aheadlesshistory-hans-23", + "lineInfo": { + "dialogue": "And, well...a heavily-armed human just rescued ya, Ricky. I think we leave this to 'em. How about it, human? Head up to the castle and look into this for us?", + "line": { + "current": 16, + "max": 16 + }, + "npc": "Hans" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-6", + "lineInfo": { + "dialogue": "The interesting soul arrives once more. Why is it you valued the life of that villager? You risked yourself for his soul.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "???" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-7", + "lineInfo": { + "dialogue": "It will not make a difference one way or the other, and so I am doubly confused. The feeling has already grown tiresome. ", + "line": { + "current": 2, + "max": 3 + }, + "npc": "???" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-8", + "lineInfo": { + "dialogue": "What purpose have you in this place? Turn over your soul so I may examine it and find out. I am genuinely curious to know... ", + "line": { + "current": 3, + "max": 3 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "9": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-lari-1", + "lineInfo": { + "dialogue": "Be done! I bind you with Orphion's light!", + "line": { + "current": 1, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-2", + "lineInfo": { + "dialogue": "Wait...it...it's n-not holding?! ", + "line": { + "current": 2, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-9", + "lineInfo": { + "dialogue": "LARIII! Where are you?! I can help!! ", + "line": { + "current": 3, + "max": 13 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-10", + "lineInfo": { + "dialogue": "Ugh, I saw her with that...THING, but... ", + "line": { + "current": 4, + "max": 13 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-11", + "lineInfo": { + "dialogue": "My visions didn't show an exact enough spot... LARIII? ", + "line": { + "current": 5, + "max": 13 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-12", + "lineInfo": { + "dialogue": "I...what is... What left the land scarred like this?! ", + "line": { + "current": 6, + "max": 13 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-13", + "lineInfo": { + "dialogue": "Was...was this their clash...? L-LARI! LARIIII! WHERE ARE YOU?!", + "line": { + "current": 7, + "max": 13 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-3", + "lineInfo": { + "dialogue": "...hh...D-Du...lla...?", + "line": { + "current": 8, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-14", + "lineInfo": { + "dialogue": "You are NOT dying on me! I won't allow it! You will LIVE, you hear me?!", + "line": { + "current": 9, + "max": 13 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-15", + "lineInfo": { + "dialogue": "Sit as still as you can, I have healing spells prepared. ", + "line": { + "current": 10, + "max": 13 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-16", + "lineInfo": { + "dialogue": "I ask the land for its life to save another. Grant me this!", + "line": { + "current": 11, + "max": 13 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-4", + "lineInfo": { + "dialogue": "Dullahan!", + "line": { + "current": 12, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-17", + "lineInfo": { + "dialogue": "Oh, what am I going to do with you...", + "line": { + "current": 13, + "max": 13 + }, + "npc": "Dullahan" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "10": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-18", + "lineInfo": { + "dialogue": "Once again you ignore my demands...? And not only that, you invade the memories I have locked away? ", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-19", + "lineInfo": { + "dialogue": "I must ask again, what is your goal? Why have you come here, and why do you seek my most private thoughts, that not even I wish to think?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Dullahan" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "11": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-lari-5", + "lineInfo": { + "dialogue": "Look, Dulla, I really do appreciate your help, but you know I can't do what you're asking of me! There's another way, I just need to find it! ", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-20", + "lineInfo": { + "dialogue": "Lari, you remember that I have my visions, right? I've seen what will happen if you don't step up- and I can help stop it!", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-21", + "lineInfo": { + "dialogue": "You've been trying to find ''another way'' for two centuries. Don't you think it's high-time we took my route, before things get worse?", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-6", + "lineInfo": { + "dialogue": "NO! I am not going to kill it! YOU are not going to kill it! I'll find a way! I will, I have these powers for a reason!", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-22", + "lineInfo": { + "dialogue": "You talk a big game, and you show one too, but the creature wasn't fazed. I'm not fazed. Drop the intimidating act, please. ", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-7", + "lineInfo": { + "dialogue": "I...there...there has to be a way. I...I-I'm terrified that I've...already ruined everything, just by following my heart, like I was told... ", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-23", + "lineInfo": { + "dialogue": "I know you're frustrated, but I am too. I left a lot behind to try and help you. I hate to say these things, I wish it could be your way.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-24", + "lineInfo": { + "dialogue": "I'm terrified too, that if we don't take more drastic action, things will get worse. Can't you see that, too?", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-8", + "lineInfo": { + "dialogue": "I...I just... I don't know what to do! ", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-9", + "lineInfo": { + "dialogue": "He showed me all these things and gave me all these choices and asked how my heart beat!", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-10", + "lineInfo": { + "dialogue": "He gave me these powers but they don't work or I don't know HOW they work!", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-11", + "lineInfo": { + "dialogue": "I want to do the right thing but I don't know what it is and I don't know how to ask what it is and...a-and... ", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Lari" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-25", + "lineInfo": { + "dialogue": "You have become infuriating instead of interesting. Why do you violate my memories? Why do you force me to relive them? ", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-26", + "lineInfo": { + "dialogue": "Spirit of the Keeper of Keys, rid me of this thing that befouls my place. It incites a rage akin to HER. ", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Dullahan" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "13": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-27", + "lineInfo": { + "dialogue": "You...are a fool. More than I was. You knowingly walk to your death.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-28", + "lineInfo": { + "dialogue": "It is convenient for me, certainly, but I admit that it is equal parts enraging and bewildering.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Dullahan" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "14": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-29", + "lineInfo": { + "dialogue": "I told you, Lari! I saw it in my visions, this is our last chance! Hurry! ", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-30", + "lineInfo": { + "dialogue": "Look at this spot, Lari. It has to be here. The land is being scarred, just like after your fight. The light is being drained!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-12", + "lineInfo": { + "dialogue": "This must be where the parasite burrowed down... You're... You're right. We have to...to do something.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-13", + "lineInfo": { + "dialogue": "I... I'm not sure if I'm ready, but you're right. We need to do this... ", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-31", + "lineInfo": { + "dialogue": "...Remember what I said. You HAVE to take action. There's only two outcomes here. ", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-14", + "lineInfo": { + "dialogue": "Right... ", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-15", + "lineInfo": { + "dialogue": "We'll need to dig... Do you think you could help with that, Dulla?", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-32", + "lineInfo": { + "dialogue": "Of course, Lari. We'll need everything we can get if we're going to kill that horrendous thing.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-16", + "lineInfo": { + "dialogue": "...let's get this over with.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-33", + "lineInfo": { + "dialogue": "I see it! Lari, it's time!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Dullahan" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "15": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-34", + "lineInfo": { + "dialogue": "...I will show you an exit, interloper. It would be...wise of you to take it.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dullahan" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "16": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-35", + "lineInfo": { + "dialogue": "You are a damned fool, interloper. Dredging my memories as you have... I have never felt such rage, not in a long time. ", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-36", + "lineInfo": { + "dialogue": "As such, it shall end now. The exit I spoke of will not free you from the castle, as you can see. ", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-37", + "lineInfo": { + "dialogue": "Instead, it will free you from your very life. I have had enough of your meddling. ", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-38", + "lineInfo": { + "dialogue": "Warden of Wisdom! I compel you- Rid me of this miscreant! Erase every trace of it from this existence... ", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-39", + "lineInfo": { + "dialogue": "...save for a corpse, for me to toss at Lari's feet.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Dullahan" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "17": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-lari-17", + "lineInfo": { + "dialogue": "GAH! It was never able to do this before...! W-What happened to it?! ", + "line": { + "current": 1, + "max": 24 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-40", + "lineInfo": { + "dialogue": "AWAY! You keep away from us!! ", + "line": { + "current": 2, + "max": 24 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-41", + "lineInfo": { + "dialogue": "Lari, you need to get up, now! We can't waste this chance! ", + "line": { + "current": 3, + "max": 24 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-18", + "lineInfo": { + "dialogue": "It...it threw me aside like nothing! How is it overpowering Orphion's light...?", + "line": { + "current": 4, + "max": 24 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-42", + "lineInfo": { + "dialogue": "It's overpowering you because you're not a ttacking! Remember what I said? You have to-", + "line": { + "current": 5, + "max": 24 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-43", + "lineInfo": { + "dialogue": "...wait, where did it...did we lose it already?!", + "line": { + "current": 6, + "max": 24 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-19", + "lineInfo": { + "dialogue": "It's under you! MOVE!!", + "line": { + "current": 7, + "max": 24 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-44", + "lineInfo": { + "dialogue": "It's shrugging my attacks off, Lari! Come on, do SOMETHING! ", + "line": { + "current": 8, + "max": 24 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-20", + "lineInfo": { + "dialogue": "ⓒⓞⓢⓐⓘⓝ!!", + "line": { + "current": 9, + "max": 24 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-45", + "lineInfo": { + "dialogue": "I...No! It's happening just like I saw! She's... ", + "line": { + "current": 10, + "max": 24 + }, + "npc": "Dullahan" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-46", + "lineInfo": { + "dialogue": "I need to get to her, push her to the killing blow...", + "line": { + "current": 11, + "max": 24 + }, + "npc": "Dullahan" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-21", + "lineInfo": { + "dialogue": "Be still, creature! I compel you with Orphion's light!", + "line": { + "current": 12, + "max": 24 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-47", + "lineInfo": { + "dialogue": "LARIIII! THIS IS THE LAST CHANCE YOU HAVE! DON'T TRAP IT, KILL IT! ", + "line": { + "current": 13, + "max": 24 + }, + "npc": "Dullahan" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-22", + "lineInfo": { + "dialogue": "I-I'm...Dulla, I'm- I can't! I know I can keep it held this time!! ", + "line": { + "current": 14, + "max": 24 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-23", + "lineInfo": { + "dialogue": "I...wha...N-no!", + "line": { + "current": 15, + "max": 24 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-24", + "lineInfo": { + "dialogue": "I...I-I...th-the light is...I c-can't hold onto it...i-is it...it's t-taking...g-guh...", + "line": { + "current": 16, + "max": 24 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-48", + "lineInfo": { + "dialogue": "Lari! You can't reason with it! You can't hold it! You have to put Gavel first! US first!! ", + "line": { + "current": 17, + "max": 24 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-25", + "lineInfo": { + "dialogue": "I won't let what you predicted happen! I know I can change fate!!", + "line": { + "current": 18, + "max": 24 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-26", + "lineInfo": { + "dialogue": "Please work, please work! D-Don't break, I can't- ", + "line": { + "current": 19, + "max": 24 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-83", + "lineInfo": { + "dialogue": "Lari, no! If it bites you we're doomed! GET UP! ", + "line": { + "current": 20, + "max": 24 + }, + "npc": "Dullahan" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-49", + "lineInfo": { + "dialogue": "AAAH, GET AWAY FROM HER! ", + "line": { + "current": 21, + "max": 24 + }, + "npc": "Dullahan" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-27", + "lineInfo": { + "dialogue": "D-Dulla! ", + "line": { + "current": 22, + "max": 24 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-50", + "lineInfo": { + "dialogue": "L-Lari...we...e-everything happened like I s-said...you...you didn't...l-listen...", + "line": { + "current": 23, + "max": 24 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-28", + "lineInfo": { + "dialogue": "No! No it didn't happen like you said! I-I can fix this! Y-You'll be alright! You'll be alright, you hear me?! I'll make sure of it!", + "line": { + "current": 24, + "max": 24 + }, + "npc": "Lari" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-51", + "lineInfo": { + "dialogue": "...so I am cursed to bear witness to my most painful memories due to your idiocy. It is almost a fitting penance... Almost, but not quite.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dullahan" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "19": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-52", + "lineInfo": { + "dialogue": "My rage... My memories... Your presence stirs them in kind. You must disappear, I no longer care to see your soul.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-53", + "lineInfo": { + "dialogue": "Sit still and allow yourself to be engulfed. It will save me further pain.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Dullahan" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "20": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-54", + "lineInfo": { + "dialogue": "Lari...? Where are you? I...I need you... Why are you gone? Why do you ignore me?", + "line": { + "current": 1, + "max": 25 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-55", + "lineInfo": { + "dialogue": "My magic is fading, I can't see my visions... They're clearer around you... Please, come back...", + "line": { + "current": 2, + "max": 25 + }, + "npc": "Dullahan" + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizen-1", + "lineInfo": { + "dialogue": "That elf girl's off in the forest. Don't know what she's doing but this is our shot!", + "line": { + "current": 3, + "max": 25 + }, + "npc": "Gelibord Citizen" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizen-2", + "lineInfo": { + "dialogue": "We can finally execute the person causing the decay in the forest! Gelibord will be saved!", + "line": { + "current": 4, + "max": 25 + }, + "npc": "Gelibord Citizen" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizen-3", + "lineInfo": { + "dialogue": "You prepared the sleeping spell, right? Who knows if we'll get a chance like this again.", + "line": { + "current": 5, + "max": 25 + }, + "npc": "Gelibord Citizen" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizen-4", + "lineInfo": { + "dialogue": "Shhh... Quiet. He's in there.", + "line": { + "current": 6, + "max": 25 + }, + "npc": "Gelibord Citizen" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizen-5", + "lineInfo": { + "dialogue": "Okay, go! Knock him out.", + "line": { + "current": 7, + "max": 25 + }, + "npc": "Gelibord Citizen" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-56", + "lineInfo": { + "dialogue": "L-Lari? Is...is that you? Did you finally come back...? ", + "line": { + "current": 8, + "max": 25 + }, + "npc": "Dullahan" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizen-6", + "lineInfo": { + "dialogue": "Nah, not quite. Say, why don't you go to sleep 'til she comes back? Dream sweet dreams... ", + "line": { + "current": 9, + "max": 25 + }, + "npc": "Gelibord Citizen" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizen-7", + "lineInfo": { + "dialogue": "...they'll be the last ones you ever have, grimy demon. To the guillotine with you... Everyone! I got him!", + "line": { + "current": 10, + "max": 25 + }, + "npc": "Gelibord Citizen" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizen-8", + "lineInfo": { + "dialogue": "All of you, welcome! Today will be the day we save our fair land. Today's the day of light!", + "line": { + "current": 11, + "max": 25 + }, + "npc": "Gelibord Citizen" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizen-9", + "lineInfo": { + "dialogue": "Dullahan has been captured! We have the cursed progenitor of the decay in our grip- to be executed, once and for all!", + "line": { + "current": 12, + "max": 25 + }, + "npc": "Gelibord Citizen" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizen-10", + "lineInfo": { + "dialogue": "Haha, yeah! Shoulda thought twice before cursing OUR homes! Three cheers for our wizards!!", + "line": { + "current": 13, + "max": 25 + }, + "npc": "Gelibord Citizen" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizen-11", + "lineInfo": { + "dialogue": "The decay will clear up- We'll spill his blood, chop off his head, and the curse will be lifted!!", + "line": { + "current": 14, + "max": 25 + }, + "npc": "Gelibord Citizen" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizen-12", + "lineInfo": { + "dialogue": "Ladies and gentlemen, folks of all shapes and sizes, it's time to take our lives back!", + "line": { + "current": 15, + "max": 25 + }, + "npc": "Gelibord Citizen" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizens-1", + "lineInfo": { + "dialogue": "3!", + "line": { + "current": 16, + "max": 25 + }, + "npc": "Gelibord Citizens" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizens-2", + "lineInfo": { + "dialogue": "2!", + "line": { + "current": 17, + "max": 25 + }, + "npc": "Gelibord Citizens" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizens-3", + "lineInfo": { + "dialogue": "1!", + "line": { + "current": 18, + "max": 25 + }, + "npc": "Gelibord Citizens" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-29", + "lineInfo": { + "dialogue": "Dullahan? I'm...I'm back. I didn't leave you for long, I just was trying to find the cu-", + "line": { + "current": 19, + "max": 25 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-30", + "lineInfo": { + "dialogue": "...uh? Dullahan? He's...he's been right here to greet me almost every day for the past twenty years...", + "line": { + "current": 20, + "max": 25 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-31", + "lineInfo": { + "dialogue": "Footprints...? Dullaaaa? Where'd you go? Is everything alright, did something happen? ", + "line": { + "current": 21, + "max": 25 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-32", + "lineInfo": { + "dialogue": "D-Dulla...ha...I... Wh...", + "line": { + "current": 22, + "max": 25 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-33", + "lineInfo": { + "dialogue": "I... H-how could they...d-do this...?", + "line": { + "current": 23, + "max": 25 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-34", + "lineInfo": { + "dialogue": "I...I l-left for...an hour, a-and...and they... Why?", + "line": { + "current": 24, + "max": 25 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-35", + "lineInfo": { + "dialogue": "Why did they do this to you...? I...h-how can I possibly fix this?!", + "line": { + "current": 25, + "max": 25 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-57", + "lineInfo": { + "dialogue": "I cannot understand why you continue to defile me with these horrid memories. What do you hope to find?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dullahan" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "22": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-58", + "lineInfo": { + "dialogue": "I am once more curious. If only to know what I could possibly do or say to cease this horrid quest you've given yourself. ", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dullahan" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "23": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-lari-36", + "lineInfo": { + "dialogue": "Th-this has to work. It WILL work! I know it will! I...I d-don't know if it will... I have to fix this, I have to... ", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-37", + "lineInfo": { + "dialogue": "The waters from the Lazarus Pit are fabled for bringing back the dead... If this doesn't work, I... ", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-38", + "lineInfo": { + "dialogue": "I can't think about that. This...this WILL work. I promise. I found a way to fix it... It has to. ", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-39", + "lineInfo": { + "dialogue": "P-Please...w-whatever gods are out there, whoever is listening, hear me...bring Dullahan back to me, I'm begging you... ", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-40", + "lineInfo": { + "dialogue": "It's... I-Is it reacting? It... It looks like it is, but...h-he's not mending... ", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-41", + "lineInfo": { + "dialogue": "N-No, this...i-it isn't...NO! It... It HAS to work! I...I can m-make this work! ", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-42", + "lineInfo": { + "dialogue": "ⓛⓘⓞⓝ ⓐⓝ ⓒⓞⓡⓟ ⓢⓔⓞ ⓛⓔⓘⓢ ⓐⓝ ⓢⓐⓞⓛ ⓐⓡⓘⓢ!!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-43", + "lineInfo": { + "dialogue": "D-Dullahan! It...it worked! You're back! ", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-44", + "lineInfo": { + "dialogue": "I...I t-told you... I knew I could change fate... I'm so glad you're here... ", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Lari" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "24": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-59", + "lineInfo": { + "dialogue": "It's odd. If it were not for her, I would not be here. I would not have my power. Yet even thinking her name enrages me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dullahan" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "25": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-lari-45", + "lineInfo": { + "dialogue": "Dullahan? I... ", + "line": { + "current": 1, + "max": 15 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-46", + "lineInfo": { + "dialogue": "H...h-hrk...g-gah, what is...wh-what... You...you didn't really...? ", + "line": { + "current": 2, + "max": 15 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-47", + "lineInfo": { + "dialogue": "Th-there's so much death... The...the air smells like b-blood... ", + "line": { + "current": 3, + "max": 15 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-48", + "lineInfo": { + "dialogue": "This isn't... There has to be s-some other reason, I... I can't have b-brought back a...a...", + "line": { + "current": 4, + "max": 15 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-gelibordcitizen-13", + "lineInfo": { + "dialogue": "P-Please, we can't afford to lose more people! There's hardly any farmers in the fields anymore, I-I'm needed elsewhere!", + "line": { + "current": 5, + "max": 15 + }, + "npc": "Gelibord Citizen" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-60", + "lineInfo": { + "dialogue": "The last few said similar things. Someone else I knew said similar things. Frankly, I do not care. Present your soul to me, now.", + "line": { + "current": 6, + "max": 15 + }, + "npc": "Dullahan" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-49", + "lineInfo": { + "dialogue": "DULLAHAN! What...w-what are you doing?! I... I can't believe my eyes...", + "line": { + "current": 7, + "max": 15 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-50", + "lineInfo": { + "dialogue": "I... I tried to help you! I t-tried so hard at everything we did together... How could you do this to them?! To...to me?", + "line": { + "current": 8, + "max": 15 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-61", + "lineInfo": { + "dialogue": "Odd. I recall you explicitly denying the only option that would have prevented this. I warned you quite thoroughly.", + "line": { + "current": 9, + "max": 15 + }, + "npc": "Dullahan" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-62", + "lineInfo": { + "dialogue": "You have had many chances to end this, Lari. Do you expect me to feel sympathy, when your own actions have made me feel nothing?", + "line": { + "current": 10, + "max": 15 + }, + "npc": "Dullahan" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-51", + "lineInfo": { + "dialogue": "This...this isn't like you... You would never have done this before! You dedicated your life to trying to help...so w-why are you...m...m-m... I-I'm leaving!!", + "line": { + "current": 11, + "max": 15 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-52", + "lineInfo": { + "dialogue": "What have I done...? This...he's... He's not th-the same anymore... What changed? Is this my fault...? I c-can't understand it...", + "line": { + "current": 12, + "max": 15 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-53", + "lineInfo": { + "dialogue": "...but...I'll... I'll protect them. I'll protect him... I...there has to be a way. But...until I find it...", + "line": { + "current": 13, + "max": 15 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-54", + "lineInfo": { + "dialogue": "...goodbye. Goodbye until the day comes when I can fill you with light once more. Goodbye until you learn... Goodbye, until I can fix you...", + "line": { + "current": 14, + "max": 15 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "rol3aheadlesshistory-lari-55", + "lineInfo": { + "dialogue": "Goodbye, Dullahan... I'll miss you.", + "line": { + "current": 15, + "max": 15 + }, + "npc": "Lari" + }, + "settings": { + "followPlayer": true + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "rol3aheadlesshistory-dullahan-63", + "lineInfo": { + "dialogue": "At this moment...I believed that I could protect her. I believed that I could aid her." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-64", + "lineInfo": { + "dialogue": "I left Aldorei behind, to aid in her ''battle'' against the darkness. What a fool I was." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-65", + "lineInfo": { + "dialogue": "As the darkness slowly seeped into the land, her stubbornness halted any progress we might have made." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-66", + "lineInfo": { + "dialogue": "Years of searching to no avail- A strong enough attack would have ended it, but her foolish pacifism doomed us." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-67", + "lineInfo": { + "dialogue": "Six hundred years of searching finally brought us to what we so foolishly sought... And we were unprepared." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-68", + "lineInfo": { + "dialogue": "The creature was found hibernating underground... It had been storing power, and we found ourselves utterly outmatched." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-69", + "lineInfo": { + "dialogue": "She had the power and the opportunity to kill it ten times over, but clung to her morals. She could not recognize necessity, and refused to heed my offers and warnings." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-70", + "lineInfo": { + "dialogue": "And so, my dark agony began. The light began to siphon away from me. I found myself paranoid and addled, fearful that my disfigurement would be seen." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-71", + "lineInfo": { + "dialogue": "Even still I held some misplaced faith in her. With that dark seed in my mind... It grew to an obsession, almost- I had to hide it. I had to hide my curse. But it was found..." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-72", + "lineInfo": { + "dialogue": "The people of Gelibord saw my cursed visage... They saw me near the dark scars. They assumed without thought, and turned me into a perfect scapegoat." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-73", + "lineInfo": { + "dialogue": "Not even death saw the end of my misfortunes. Not even a final release such as this could save me from Lari's stubbornness and endless mistakes." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-74", + "lineInfo": { + "dialogue": "She brought me back...but the dark infection had eroded away my mind, my soul, my magic, and it continued to ravage my body. Every part of me, the dark touched." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-75", + "lineInfo": { + "dialogue": "Her soft light burned in me, as the darkness quashed it and filled in the emptiness that it had created. I was there...but you could not say I was the same person." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-76", + "lineInfo": { + "dialogue": "I could feel nothing. She still made me feel...but only annoyance. Rage. Sorrow. I could not bear to be with her a moment longer." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-77", + "lineInfo": { + "dialogue": "There is no fixing this. Her actions are doomed to failure, just as I saw. She has not returned since this time... And so she did not realize that her actions have done little." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-78", + "lineInfo": { + "dialogue": "The very powers she bestowed me with, knowingly or not...allow me to command spirits as I wish. To have those who doomed me to this purgatory feel the same aches as I have." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-79", + "lineInfo": { + "dialogue": "To have their minds, bodies, and souls wracked. To have their magic outlawed and wither in disuse." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-80", + "lineInfo": { + "dialogue": "Each soul I consume fills me with new strength. And none can reach me- Lari herself saw to that. Would she have taken action, had she known?" + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-81", + "lineInfo": { + "dialogue": "There is truly, finally, nothing more for you here. The spell can not be broken, as of now. You have seen my life laid bare in front of you. There is nothing more for you to see." + } + }, + { + "fileOverride": "rol3aheadlesshistory-dullahan-82", + "lineInfo": { + "dialogue": "Leave. And do not return." + } + } + ], + "settings": { + "followPlayer": true + } + } + } + }, + "Realm of Light IV - Finding the Light": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "realmoflight4findingthelight-lari-1", + "lineInfo": { + "dialogue": "Awaken! Your guidance is needed!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-2", + "lineInfo": { + "dialogue": "...ah. soldier. So you are needed here too, then?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-3", + "lineInfo": { + "dialogue": "I am... TRYING... To awaken the Guardian of the Forest to receive its guidance, but it refuses to budge! Even the voice of Orphion provides no reaction.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-4", + "lineInfo": { + "dialogue": "I beg once more of you, awaken! Us two... Us two seek your wisdom!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-5", + "lineInfo": { + "dialogue": "I present you Orphion's barest light- Please, respond!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-6", + "lineInfo": { + "dialogue": "Urgh... See? Nothing is happening. I'm at a loss of what to do. Maybe you can effect some change, considering what you've done before.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-orphion-1", + "lineInfo": { + "dialogue": "My pulse, it is time. I shall shine my light upon the roots of the Guardian. You and she must learn now.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "???" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "realmoflight4findingthelight-lari-7", + "lineInfo": { + "dialogue": "An inscription! That wasn't there before! It was... That was completely instant. How did you even...?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-8", + "lineInfo": { + "dialogue": "But, still! I knew I could be useful, let me translate this for you! As a stranger to Gavel you wouldn't know High Gavellian...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-9", + "lineInfo": { + "dialogue": "It says... Secrets uncovered in the oldest of libraries in Cinfras.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-10", + "lineInfo": { + "dialogue": "...of course. A place that Elves aren't allowed, but humans are. soldier, you'll have to find this library on your own, it seems.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Lari" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "realmoflight4findingthelight-lari-11", + "lineInfo": { + "dialogue": "Do you reject the light of Orphion? Waken, please!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-12", + "lineInfo": { + "dialogue": "Urgh... soldier, please tell me you were able to make some progress. The Guardian still refuses... To... WAKE!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-13", + "lineInfo": { + "dialogue": "What is this? A spell scroll- Of the Waking Forest?! In Cinfras, of all places? Where it would have been... Impossible for me to go...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-14", + "lineInfo": { + "dialogue": "So I am Orphion's chosen, yet I would not have been able to do what was asked of me. That... No, I can't dwell on that, let me see the scroll.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-15", + "lineInfo": { + "dialogue": "...hm. It says, The seeker must rest these words upon those of the Guardian.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-16", + "lineInfo": { + "dialogue": "I suppose that means you need to place it by the inscription. So yet another task that you must finish...", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-17", + "lineInfo": { + "dialogue": "...go on, then, do it. I'm just needed here to be a translator for you thusfar, it seems.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Lari" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "realmoflight4findingthelight-lari-18", + "lineInfo": { + "dialogue": "Let me go ahead and read this, too. This will be tedious, I fear...", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-19", + "lineInfo": { + "dialogue": "It says... Awakening the Guardian of the Forest requires more than just magic. The home of the elves will house the answers and revelations...?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-20", + "lineInfo": { + "dialogue": "That... This is finally my time! I still have a hand in this!! Finally, I can do something more than just holding stasis here!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-21", + "lineInfo": { + "dialogue": "Listen, soldier. Achara... This is my time. I can finally help you more directly. I know the elders of Aldorei- They're sure to have answers!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-22", + "lineInfo": { + "dialogue": "You truly have been helpful, even through my own worries. I must thank you, but you can relax now! I will be the one this time!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-23", + "lineInfo": { + "dialogue": "You can continue doing...whatever else it is you need doing. I have seen you helping in various places- Concern yourself with those for now. I can handle this.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-orphion-2", + "lineInfo": { + "dialogue": "Pursue her, my pulse. She must take dire action- Alone, her light shall illuminate nothing. You must provide her direction.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "???" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "realmoflight4findingthelight-lari-24", + "lineInfo": { + "dialogue": "W-What? You- Why did you follow me? I can handle this! I can finally be useful again! Do you...not trust me?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-25", + "lineInfo": { + "dialogue": "Please, just respect my wishes! If I need your help, I'll go find you- For now, just leave! You don't need to worry about this!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Lari" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "realmoflight4findingthelight-lari-26", + "lineInfo": { + "dialogue": "Get out! Just...get out.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Lari" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "realmoflight4findingthelight-elder-1", + "lineInfo": { + "dialogue": "...if this human has truly done what you have said, then why do you spurn their aid? It is unlike you.", + "line": { + "current": 1, + "max": 16 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-27", + "lineInfo": { + "dialogue": "I know, I know. I just am in disbelief. They've been contacted by Orphion himself, allowed into the Taproot, they have a symbol of Orphion's blessing!!", + "line": { + "current": 2, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-28", + "lineInfo": { + "dialogue": "They just...walked up, after a thousand years of my putting my entire life into trying to save this province, and do everything I couldn't, in the span of weeks at most!", + "line": { + "current": 3, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-29", + "lineInfo": { + "dialogue": "Do you understand how infuriating this is? Can you comprehend such a thing, not having been in my position yourself?", + "line": { + "current": 4, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-elder-2", + "lineInfo": { + "dialogue": "No. I cannot understand. But I also cannot understand how you are not grateful for this aid.", + "line": { + "current": 5, + "max": 16 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-30", + "lineInfo": { + "dialogue": "I know I should be! It's all I've been able to think about. I should be ecstatic! The light will be saved, it should be everything I've dreamed of...", + "line": { + "current": 6, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-31", + "lineInfo": { + "dialogue": "But it makes me feel like a complete failure. Like everything I have done has been for naught, that I have somehow been doing everything wrong!", + "line": { + "current": 7, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-32", + "lineInfo": { + "dialogue": "I know I have made mistakes. Dullahan would still be... Still be himself, if I had taken faster action, but I can't have done nothing right. I can't accept that.", + "line": { + "current": 8, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-33", + "lineInfo": { + "dialogue": "This is my chance to prove I can still be useful- that Orphion choosing me wasn't a fluke! Please, the inscription said you would know where to go!", + "line": { + "current": 9, + "max": 16 + }, + "npc": "Lari" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "realmoflight4findingthelight-elder-3", + "lineInfo": { + "dialogue": "...even after a millennium, there is so very much for us all to learn. Fine then.", + "line": { + "current": 11, + "max": 16 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-elder-4", + "lineInfo": { + "dialogue": "But promise me to accept the aid you receive. This opportunity cannot be wasted, Lari.", + "line": { + "current": 12, + "max": 16 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-34", + "lineInfo": { + "dialogue": "...I have to do at least one thing right. I can't just keep up this holding pattern. I'll do whatever is necessary!", + "line": { + "current": 13, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-elder-5", + "lineInfo": { + "dialogue": "You must seek the Canned Abis plant, then. It rests within a cavern shaded by giant fern leaves.", + "line": { + "current": 14, + "max": 16 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-35", + "lineInfo": { + "dialogue": "Thank you. I can finally do what I was meant to do! I won't let anything stop me this time!!", + "line": { + "current": 15, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-elder-6", + "lineInfo": { + "dialogue": "...Human, I can see you. Consider yourself lucky that she did not. Come talk to me.", + "line": { + "current": 16, + "max": 16 + }, + "npc": "Elder" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "realmoflight4findingthelight-elder-7", + "lineInfo": { + "dialogue": "So you are Orphion's new chosen, then. It is both surprising and not- Humans have an interesting reputation.", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-elder-8", + "lineInfo": { + "dialogue": "Often said as being able to get anything done, without limits, be it completing impossible tasks or breaking moral tenets.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-elder-9", + "lineInfo": { + "dialogue": "In this instance, however, you've both to do. Orphion has commanded it, has he not? And so you must, and for that I apologize.", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-elder-10", + "lineInfo": { + "dialogue": "I have seen Lari's work- And she has done this land a priceless service. Alone, she has kept the Decay from creeping south, and thus the Guardian remains with us.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-elder-11", + "lineInfo": { + "dialogue": "However, her own morals prevent the situation from progressing. She cannot kill- And the source must be exterminated for light to once again fill the land.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-elder-12", + "lineInfo": { + "dialogue": "Orphion's circumstances are dire- And so you must come to understand something. He is above us, in terms of morals. Such concepts do not apply to him.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-elder-13", + "lineInfo": { + "dialogue": "As the embodiment of Light itself, he has no sense of morals- Merely survival and stasis. What he asks of us, many will balk at.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-elder-14", + "lineInfo": { + "dialogue": "It is a matter where morals must be set aside... And such a thing is one that Lari cannot abide by, for she has stubbornly clung to them for a thousand years.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-elder-15", + "lineInfo": { + "dialogue": "To break them... I will admit, I believe there to be some other way to solve these problems, but the fact of the matter is there simply is no time left.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-elder-16", + "lineInfo": { + "dialogue": "She must use the extent of her powers, and while she retains her pacifism that will not happen. I must ask you to follow her, as Orphion would wish.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-elder-17", + "lineInfo": { + "dialogue": "There is, unfortunately, no right to this. There is simply necessity- And there, you must push her to her limits. Seek the cave of the Canned Abis.", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Elder" + } + }, + { + "fileOverride": "realmoflight4findingthelight-elder-18", + "lineInfo": { + "dialogue": "It is north-east from here. The entrance is shaded by giant fern leaves. I only pray that this will be enough.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Elder" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "realmoflight4findingthelight-lari-36", + "lineInfo": { + "dialogue": "...I can't believe this. What am I doing wrong? What is it? There has to be some reason, what IS it?!", + "line": { + "current": 1, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-37", + "lineInfo": { + "dialogue": "There's not another inscription...it's just the same words! What does it mean by ‘’dire actions?!‘’ I've done everything I can think of!", + "line": { + "current": 2, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-38", + "lineInfo": { + "dialogue": "Is- Is this not dire enough? Is poring over you and putting aside my role and pride to someone else not EXTREME enough?!", + "line": { + "current": 3, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-39", + "lineInfo": { + "dialogue": "...soldier. I. I have to know. What did Orphion tell you, exactly? I can't stand not knowing any longer. Did he really replace me?", + "line": { + "current": 4, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-40", + "lineInfo": { + "dialogue": "I can't think of any other reason why everything for me has just...stopped working. Did he? Please, tell me-", + "line": { + "current": 5, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-41", + "lineInfo": { + "dialogue": "...wait... You... You have Canned Abis on you!! Where did you get that?!", + "line": { + "current": 6, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-42", + "lineInfo": { + "dialogue": "You... There's no way you would've known that unless you... YOU! You eavesdropped on me!!", + "line": { + "current": 7, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-43", + "lineInfo": { + "dialogue": "You FOLLOWED ME into the cave even after I asked not to! You... After everything I said!! After you heard all those private thoughts!", + "line": { + "current": 8, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-44", + "lineInfo": { + "dialogue": "You STILL decided it was a good idea to come after me! What are you planning to accomplish like this?!", + "line": { + "current": 9, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-45", + "lineInfo": { + "dialogue": "What, are you thinking ‘’oh, let's follow the funny elf girl and see her FAIL, OVER and OVER AGAIN!?‘’ IS THAT IT?!", + "line": { + "current": 10, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-46", + "lineInfo": { + "dialogue": "You heard me then!! It's ALL out in the open! I can't succeed! You're there! You're doing everything I couldn't!", + "line": { + "current": 11, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-47", + "lineInfo": { + "dialogue": "I'm NOT a failure! I'm not! I won't be! I refuse to be! You don't GET to watch me flounder and flail!!", + "line": { + "current": 12, + "max": 13 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-48", + "lineInfo": { + "dialogue": "I DON'T CARE ANYMORE! STOP STEALING MY LIFE LIKE THIS!!!", + "line": { + "current": 13, + "max": 13 + }, + "npc": "Lari" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-1", + "lineInfo": { + "dialogue": "YOU HAVE GONE FAR ENOUGH!", + "line": { + "current": 1, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-2", + "lineInfo": { + "dialogue": "This is enough, Lari. I waken. And thus, your task is complete, soldier. You have done as Orphion asked.", + "line": { + "current": 2, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-49", + "lineInfo": { + "dialogue": "Wha- I... What just... What did I...?", + "line": { + "current": 3, + "max": 52 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-50", + "lineInfo": { + "dialogue": "I j-just... I nearly...", + "line": { + "current": 4, + "max": 52 + }, + "npc": "Lari" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "realmoflight4findingthelight-lari-51", + "lineInfo": { + "dialogue": "...GRAAAAAUGH!! TELL ME HOW THIS IS ‘’ENOUGH!‘’ TELL ME, NOW!", + "line": { + "current": 6, + "max": 52 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-52", + "lineInfo": { + "dialogue": "I-I NEARLY KILLED THEM! I JUST BROKE AND DEFILED EVERYTHING I'VE EVER STOOD FOR!!", + "line": { + "current": 7, + "max": 52 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-53", + "lineInfo": { + "dialogue": "TELL ME!! HOW COULD THIS POSSIBLY BE THE ANSWER?! HOW COULD THIS BE WHAT NEEDED TO HAPPEN?!", + "line": { + "current": 8, + "max": 52 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-54", + "lineInfo": { + "dialogue": "WHY WOULD I BE NEEDED TO... To...", + "line": { + "current": 9, + "max": 52 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-3", + "lineInfo": { + "dialogue": "To do something ‘’dark,‘’ you are about to say, and to that I say you have not.", + "line": { + "current": 10, + "max": 52 + }, + "npc": "Guardian of The Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-55", + "lineInfo": { + "dialogue": "T-Trying to murder them because they did what I couldn't isn't dark? How can you possibly think that?!", + "line": { + "current": 11, + "max": 52 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-56", + "lineInfo": { + "dialogue": "What kind of guardian are you, permissing this kind of violence? How is anything I just did alright?", + "line": { + "current": 12, + "max": 52 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-4", + "lineInfo": { + "dialogue": "For a thousand years or more of your own thoughts, I understand that you are conflicted.", + "line": { + "current": 13, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-5", + "lineInfo": { + "dialogue": "However... You have, in that time, made a grave error. You have grown to realize an incorrect assumption.", + "line": { + "current": 14, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-6", + "lineInfo": { + "dialogue": "Dark and Light... They oppose. They clash. They create a cloying pox. But, allow me to ask.", + "line": { + "current": 15, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-7", + "lineInfo": { + "dialogue": "Is the axe evil for chopping the tree? Is the wood evil for resisting the metal?", + "line": { + "current": 16, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-8", + "lineInfo": { + "dialogue": "Are the flames evil for burning up the leaves? Is the water evil for dousing the fire?", + "line": { + "current": 17, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-9", + "lineInfo": { + "dialogue": "Is a victim evil for striking back against those that have struck them?", + "line": { + "current": 18, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-10", + "lineInfo": { + "dialogue": "And most importantly... Are any of these things light, or dark?", + "line": { + "current": 19, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-11", + "lineInfo": { + "dialogue": "What connection does a primordial force have with the moral leanings of mortals- or even immortals?", + "line": { + "current": 20, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-57", + "lineInfo": { + "dialogue": "...you. You can't possibly be saying that what I did was the right thing to do. I refuse to accept that.", + "line": { + "current": 21, + "max": 52 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-12", + "lineInfo": { + "dialogue": "I will not ask you to. You must understand that Orphion has no moral bearings- He simply needs action.", + "line": { + "current": 22, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-13", + "lineInfo": { + "dialogue": "What you have done may not have been the right thing, by anyone's account. However, it was necessary. You have thrown off your bonds, in a sense.", + "line": { + "current": 23, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "realmoflight4findingthelight-lari-58", + "lineInfo": { + "dialogue": "...then... Shouldn't I feel... I don't know. Shouldn't I feel less restrained? Less afraid? More... More free?", + "line": { + "current": 25, + "max": 52 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-59", + "lineInfo": { + "dialogue": "If what I've done was what needed to happen, why do I feel like the scum of the earth? Why do I feel so terrible?!", + "line": { + "current": 26, + "max": 52 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-14", + "lineInfo": { + "dialogue": "I admit, such a thing is a conundrum. I agree that it is a tragedy to kill, in many instances.", + "line": { + "current": 27, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-15", + "lineInfo": { + "dialogue": "Yet when such an action could save the lives of others, it becomes a conundrum with no answer. An impossible value to weigh.", + "line": { + "current": 28, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-16", + "lineInfo": { + "dialogue": "Despite the circumstances, you have done the best you could. I cannot fault you for your thoughts and morals.", + "line": { + "current": 29, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-17", + "lineInfo": { + "dialogue": "And so... As you are now proven, as I am awoken, the gateway to the Light shall reveal itself to you. Lari... You must prepare for your journey to the Realm of Light.", + "line": { + "current": 30, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-lari-60", + "lineInfo": { + "dialogue": "...I... I need time to process this. I... Do you understand how difficult this is to hear? To bear?", + "line": { + "current": 31, + "max": 52 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-18", + "lineInfo": { + "dialogue": "I do not blame you for it. By the time you have composed yourself, your ally will be ready. Understand that they are as necessary as you are.", + "line": { + "current": 32, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-19", + "lineInfo": { + "dialogue": "For now, soldier must learn what you have learned, of the nature of realms. They must know what you know if they are to aid you fully.", + "line": { + "current": 33, + "max": 52 + }, + "npc": "Guardian of The Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-20", + "lineInfo": { + "dialogue": "I must ask you to pay close attention. I shall present it simply- though the enormity of this cannot be understated.", + "line": { + "current": 34, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-21", + "lineInfo": { + "dialogue": "Allow me to show you our reality, soldier. It is difficult to properly present its scale... So here is an approximation.", + "line": { + "current": 35, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-22", + "lineInfo": { + "dialogue": "This is our world, the world we stand in right now. The physical plane of existence.", + "line": { + "current": 36, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-23", + "lineInfo": { + "dialogue": "Only a select few are aware that there is more of the world than this. Even the astronomers and those who view the enormity of the sky cannot understand.", + "line": { + "current": 37, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-24", + "lineInfo": { + "dialogue": "For, you see, this realm, this plane- It is mirrored upon a second plane, as the embodiments of Realms clash.", + "line": { + "current": 38, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-25", + "lineInfo": { + "dialogue": "This is the Plane of Influence, comprised of many realms. There are three you must know- But only one you must pay attention to.", + "line": { + "current": 39, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-26", + "lineInfo": { + "dialogue": "The Realms of Influence are connected to the physical plane, tied inexorably so to it. This is why even those gazing at the cosmos cannot grasp the enormity of it.", + "line": { + "current": 40, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-27", + "lineInfo": { + "dialogue": "These realms are in a constant push and pull- Battles that could not be seen by those of this world, waged constantly.", + "line": { + "current": 41, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-28", + "lineInfo": { + "dialogue": "However, they can be felt. Wide-scale changes to the balance of one realm or another are reflected on the physical plane.", + "line": { + "current": 42, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-29", + "lineInfo": { + "dialogue": "The Realms of Influence are, themselves, reflections of a Beast- They themselves, a physical manifestation of their realm, as their realm is a manifestation of them.", + "line": { + "current": 43, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-30", + "lineInfo": { + "dialogue": "So surely, you must know- As Gavel has decayed, it must mean that the Realm of Light is in peril, and thus that Orphion is, as well.", + "line": { + "current": 44, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-31", + "lineInfo": { + "dialogue": "The Light is infected- That abominable parasite has breached the Realm of Light, and sought Orphion to leech away his light.", + "line": { + "current": 45, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-32", + "lineInfo": { + "dialogue": "And so, as the sun is forced to set, the land of Gavel grows dark. As the dark parasites spread and devour the minds of those here, so too is Orphion subject to this torture.", + "line": { + "current": 46, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-33", + "lineInfo": { + "dialogue": "The balance shifts, and Orphion grows weary. Angered, desperate. He called to you as a last plea- and you have done admirably, for what he has asked of you.", + "line": { + "current": 47, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-34", + "lineInfo": { + "dialogue": "Now, you must enter the Realm of Light, and aid Lari in purging the parasite, before its work is finished and Orphion's mind is consumed.", + "line": { + "current": 48, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-35", + "lineInfo": { + "dialogue": "You must ready yourself before this, of course. To venture to another realm is a lofty task.", + "line": { + "current": 49, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-36", + "lineInfo": { + "dialogue": "I will bestow upon you two things that will surely aid you in this, however. First, I shall provide you the way to the Gateway to Light.", + "line": { + "current": 50, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-37", + "lineInfo": { + "dialogue": "Once you have reached it, I shall bestow upon you a personal blessing of mine, in the hopes that your path will become clear.", + "line": { + "current": 51, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + }, + { + "fileOverride": "realmoflight4findingthelight-guardianoftheforest-38", + "lineInfo": { + "dialogue": "Enter the portal, soldier. I shall show you the Gateway to Light... And I shall wish you luck.", + "line": { + "current": 52, + "max": 52 + }, + "npc": "Guardian of the Forest" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "realmoflight4findingthelight-orphion-3", + "lineInfo": { + "dialogue": "My pulse, your light is brilliant... It has shone upon Lari, and soon her light will shine my way...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + }, + { + "fileOverride": "realmoflight4findingthelight-orphion-4", + "lineInfo": { + "dialogue": "Enter the roots, and witness the path to my realm. And then, prepare yourself. Muster your most blinding light...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + } + } + ] + } + } + }, + "Realm of Light V": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-1", + "lineInfo": { + "dialogue": "soldier... Achara... I do not believe I can ever atone for what I have done to you. An apology simply isn't enough.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-2", + "lineInfo": { + "dialogue": "As infuriating as what you did was, you were following orders... I had every right to be angry, but to try and take your life was ten steps too far.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-3", + "lineInfo": { + "dialogue": "Even though it is not enough, I will say I am sorry for the pain I caused you. The Guardian was right, in the end.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-4", + "lineInfo": { + "dialogue": "Without you carrying out Orphion's will, we would not be here. You truly are necessary in this, and I believe I have finally made peace with that.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-5", + "lineInfo": { + "dialogue": "It has been a long time since I had a partner willing to help me in this way. I was unused to it, I suppose... Still.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-6", + "lineInfo": { + "dialogue": "If you'll be willing to aid me, it would be a great relief. It has been a thousand years since I entered the Realm of Light...", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-7", + "lineInfo": { + "dialogue": "I can only hope things have not changed much. I remember how it was, right down to the last petal...", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Lari" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-8", + "lineInfo": { + "dialogue": "Wait a moment, soldier. I have one more thing I would like to say before we enter.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-9", + "lineInfo": { + "dialogue": "I... I need to thank you. For helping, as you have. For staying by me as you have. There was one other before you like that...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-10", + "lineInfo": { + "dialogue": "I promise that you will not meet the same fate as him. I will fight with you to the bitter end, achara.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-11", + "lineInfo": { + "dialogue": "It's time, then. To visit Orphion.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Lari" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-12", + "lineInfo": { + "dialogue": "Welcome to the Realm of Light then, soldier. Once you've re-oriented yourself, come over here.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Lari" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-13", + "lineInfo": { + "dialogue": "It's so much smaller than it used to be! There used to be many more landmasses, all connected to each other...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-14", + "lineInfo": { + "dialogue": "I feel... I feel everything in here. With Orphion's light, I can tap into the very core of the realm.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-15", + "lineInfo": { + "dialogue": "And I can feel disturbances. There are dark creatures here, where there should be none!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-16", + "lineInfo": { + "dialogue": "I mean, even look at this creature. The light emanating from it is-", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-17", + "lineInfo": { + "dialogue": "Wait. Wh... Why is it attacking you!?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Lari" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-18", + "lineInfo": { + "dialogue": "Its mind was addled by darkness. Poor thing was terrified... Nothing for it though.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-19", + "lineInfo": { + "dialogue": "I suppose your more ruthless nature is a good thing, in this case. We each will need to fight, if this is as widespread as it feels.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-20", + "lineInfo": { + "dialogue": "I'll have to prepare myself for that... Being willing to take action will not make it any easier on my conscience.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-21", + "lineInfo": { + "dialogue": "But I will set that aside, until the day this all becomes a memory. We'll both need to seek the Nexus of Light, Orphion's home. Follow me!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Lari" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-22", + "lineInfo": { + "dialogue": "I should have expected this. With the connections severed, of course the bridge to the Nexus would be gone.", + "line": { + "current": 1, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-23", + "lineInfo": { + "dialogue": "This must be because of that horrid parasite... The Guardian of the Forest informed me of the situation afterwards.", + "line": { + "current": 2, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-24", + "lineInfo": { + "dialogue": "The gap may be too far for me to carry you over... Is there a way I can bypass this, I wonder?", + "line": { + "current": 3, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-25", + "lineInfo": { + "dialogue": "Perhaps I can try to bridge the gap myself. Let's see if this will work.", + "line": { + "current": 4, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-26", + "lineInfo": { + "dialogue": "ⓐⓣⓗⓒⓗⓔⓐⓝⓖⓐⓘⓛ!", + "line": { + "current": 5, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-27", + "lineInfo": { + "dialogue": "...hm. That ought to have worked! Is the Nexus too far to reach?", + "line": { + "current": 6, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-28", + "lineInfo": { + "dialogue": "There has to be some way over... Maybe the direct method is- Hm? Another creature?", + "line": { + "current": 7, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-29", + "lineInfo": { + "dialogue": "This one doesn't seem hostile, soldier... I'll try and talk with it.", + "line": { + "current": 8, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-30", + "lineInfo": { + "dialogue": "Its mind is whole, but it's wary of your presence. You should stay back, just in case.", + "line": { + "current": 9, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-31", + "lineInfo": { + "dialogue": "So tell me, achara. What is it you sought me for?", + "line": { + "current": 10, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-32", + "lineInfo": { + "dialogue": "Ahh, I see. You wish to see your master once more as well...", + "line": { + "current": 11, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-33", + "lineInfo": { + "dialogue": "The monoliths? Are they what's severed the connections?", + "line": { + "current": 12, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-34", + "lineInfo": { + "dialogue": "Ahh, I understand. I assure you, we will fix this!", + "line": { + "current": 13, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-35", + "lineInfo": { + "dialogue": "It said that the connections to the rest of the realm were severed intentionally by Orphion, in order to protect them.", + "line": { + "current": 14, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-36", + "lineInfo": { + "dialogue": "Two monoliths on this landmass controlled the connections, and they are being drained of their light- As such, they closed the bridges.", + "line": { + "current": 15, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-37", + "lineInfo": { + "dialogue": "The light is still there- But it must be drawn back out. We have our task ahead of us now, achara. We need to go to the first monolith. Follow me!", + "line": { + "current": 16, + "max": 16 + }, + "npc": "Lari" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-38", + "lineInfo": { + "dialogue": "I never knew the monoliths kept the realm together as they did. You can see that it is inactive, yes?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-39", + "lineInfo": { + "dialogue": "There should be bright bands of color going along it, and light pouring from it. This is where we play our roles, Soldier!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-40", + "lineInfo": { + "dialogue": "It may be getting drained, but there is certainly still light within it, and if that parasite is battling Orphion we should be able to recharge it.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-41", + "lineInfo": { + "dialogue": "I'll tap into the monolith... You'll need to enter it, and find its core. I'll send a part of Orphion's light with you to activate it once you do.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-42", + "lineInfo": { + "dialogue": "ⓑⓘⓞⓓⓗ ⓐⓝ ⓢⓞⓛⓐⓢ ⓢⓔⓞ ⓐⓝⓞⓘⓢ.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-43", + "lineInfo": { + "dialogue": "The damage here is minor- Nothing that can't be fixed, thankfully.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-44", + "lineInfo": { + "dialogue": "Its aura is lowered- Now your soul must enter. I will keep you safe, soldier.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-45", + "lineInfo": { + "dialogue": "Allow my magic to open your senses... Good luck, achara.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Lari" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-46", + "lineInfo": { + "dialogue": "Welcome back, soldier. I had few troubles dealing with the creatures trying to get close. Did you have issues inside?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-47", + "lineInfo": { + "dialogue": "The light is starting to pulse out from the monolith again, so I would say you've succeeded. I suppose we do make a decent team?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-48", + "lineInfo": { + "dialogue": "Look! The colours are returning to the monolith! It's definitely reactivated. I'll run ahead and get to the other monolith.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-49", + "lineInfo": { + "dialogue": "Follow the path! The way there is up the big cliff where we first entered the Realm.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Lari" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-50", + "lineInfo": { + "dialogue": "I'm unsure if you can feel the light returning from the monolith, but I can. I almost feel reborn, with all this energy!", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-51", + "lineInfo": { + "dialogue": "The rift ahead ought to take us to the second monolith, but it doesn't seem to be working, and I'm unsure why.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-52", + "lineInfo": { + "dialogue": "See? It's inert, which is... Odd. These aren't connected to the energy of the monolith.", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-53", + "lineInfo": { + "dialogue": "It shouldn't be inactive as it is. There's some dark influence around here, but I can't seem to place it.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-54", + "lineInfo": { + "dialogue": "My only guess is that it's interfering with the rift's energy. I've already scoured the hill though- No dark patches to be seen.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-55", + "lineInfo": { + "dialogue": "Do you think you could take a second look-", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-56", + "lineInfo": { + "dialogue": "...maybe you won't need to, after all. That was...", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-57", + "lineInfo": { + "dialogue": "The gliders!", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-58", + "lineInfo": { + "dialogue": "Back up! I'll hold them.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-59", + "lineInfo": { + "dialogue": "We've found the disturbance... Even beyond this, I'll need to charge the rift with energy to activate it.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-60", + "lineInfo": { + "dialogue": "Go in peace, tortured ones! Be at one with the light!", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-61", + "lineInfo": { + "dialogue": "Get the rest of them, Soldier! I'll charge the rift!", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Lari" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-62", + "lineInfo": { + "dialogue": "Thank you, achara. The rift is charged again- Just walk into it!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Lari" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-63", + "lineInfo": { + "dialogue": "The process here should be roughly the same. I bring down the barrier, you enter and charge it with the light I provide.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-64", + "lineInfo": { + "dialogue": "I'll need to focus the energies of the monoliths to reconnect the Nexus of Light to the mainland here, so you'll be alone.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-65", + "lineInfo": { + "dialogue": "I'll leave a barrier around you. Few creatures live on these cliffs, but best to be certain, of course.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-66", + "lineInfo": { + "dialogue": "Once you're done, meet me at the cliff near the Nexus. If we're to free Orphion from the parasite, having you along would be a great help.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-67", + "lineInfo": { + "dialogue": "Good luck, achara. I will see you soon.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Lari" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-68", + "lineInfo": { + "dialogue": "Careful, soldier! Step back a moment!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-69", + "lineInfo": { + "dialogue": "There. The connection to the Nexus is established, and so we'll cross.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Lari" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-70", + "lineInfo": { + "dialogue": "Wait! Something... Something's not quite right...", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-71", + "lineInfo": { + "dialogue": "Something's emerging from the gate!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-bakal-1", + "lineInfo": { + "dialogue": "Weaklings. You will not interfere.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "realmoflight5-lari-72", + "lineInfo": { + "dialogue": "Interfere?! You're one of the dark!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-bakal-2", + "lineInfo": { + "dialogue": "You. Elf girl. You are to be eliminated.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "realmoflight5-lari-73", + "lineInfo": { + "dialogue": "You're the one trespas sing in realms not your own!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-bakal-3", + "lineInfo": { + "dialogue": "Fool. The Beast quakes with our influence. This land is ours.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "realmoflight5-lari-74", + "lineInfo": { + "dialogue": "soldier. I think. I found someone. Who deserves to be killed. Help me out?", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-bakal-4", + "lineInfo": { + "dialogue": "I will not waste my time with that specimen. Now. Face death.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Bak'al" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-75", + "lineInfo": { + "dialogue": "soldier!! Stay back! I'm keeping up but he'll destroy you if you get close!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Lari" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-76", + "lineInfo": { + "dialogue": "AGH, ENOUGH OF THIS! You aren't allowed here, foul thing!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-77", + "lineInfo": { + "dialogue": "ⓑⓨ ⓣⓗⓔ ⓛⓘⓖⓗⓣ, ⓘ ⓢⓤⓜⓜⓞⓝ ⓣⓗⓔⓔ, ⓐⓔⓣⓗⓔⓡ'ⓢ ⓙⓤⓓⓖⓔⓜⓔⓝⓣ! ⓐⓘⓓ ⓜⓔ!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-lari-78", + "lineInfo": { + "dialogue": "No! You won't run- I'll kill you before that!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-bakal-5", + "lineInfo": { + "dialogue": "You shall not. Surely your god will smile seeing me leave.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "realmoflight5-lari-79", + "lineInfo": { + "dialogue": "YOU DON'T GET TO TALK ABOUT ORPHION LIKE THAT!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "realmoflight5-bakal-6", + "lineInfo": { + "dialogue": "We have already won. Your peon is outmatched.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Bak'al" + } + }, + { + "fileOverride": "realmoflight5-lari-80", + "lineInfo": { + "dialogue": "It's not over... IT CAN'T BE, DON'T YOU- TAKE THIS!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Lari" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "realmoflight5-lari-81", + "lineInfo": { + "dialogue": "There's a faint buzzing in your ears..." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "realmoflight5-lari-82", + "lineInfo": { + "dialogue": "soldier... I apologize for leaving you like that. I felt like this was my only chance at defeating this plague - by attacking its core." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "realmoflight5-lari-83", + "lineInfo": { + "dialogue": "I have a slight idea of where I'm headed, but... If I'm able to handle him, then maybe I'm powerful enough for this." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "realmoflight5-lari-84", + "lineInfo": { + "dialogue": "I've never been one to say goodbyes, but thank you for everything. I know you'll find people just as strong as you are to rescue Orphion in my place." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "realmoflight5-lari-85", + "lineInfo": { + "dialogue": "I- I see the end of this... Tunnel. There's- Wait..." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "realmoflight5-lari-86", + "lineInfo": { + "dialogue": "By the light what is that thing?! S-Stay away f-" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "realmoflight5-lari-87", + "lineInfo": { + "dialogue": "Though... I feel something on the other side. It seems incredibly... Foul. I can't tell what it is, let's be careful.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Lari" + } + } + ] + } + } + }, + "Recipe For Disaster": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-1", + "lineInfo": { + "dialogue": "Ah, bonjour! Welcome to my restaurant, allow me to lead you to your seat-", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-2", + "lineInfo": { + "dialogue": "Oh, do my eyes decieve me? Serait-ce possible?!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-3", + "lineInfo": { + "dialogue": "It is you... the novice soldier turned hero of legends! Who would have thought?!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-4", + "lineInfo": { + "dialogue": "I have heard tales of your exploits across the lands, mon ami! Je suis honoré! Someone like you sitting in my restaurant!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-5", + "lineInfo": { + "dialogue": "Je suis, bien sûr... Le Chef Hamsey! Famed across the lands for my flavours, as you are for your weapon!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-6", + "lineInfo": { + "dialogue": "I boast, I boast. Je peux t'offrir un plat... but perhaps I have a different proposition for us both.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-7", + "lineInfo": { + "dialogue": "You may have mastered the art of battle, my friend, but what of. .. L'Art de la Cuisine?!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-8", + "lineInfo": { + "dialogue": "Follow me into the kitchen behind me, and I will tell you more.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-9", + "lineInfo": { + "dialogue": "Follow me into the kitchen, mon ami.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-10", + "lineInfo": { + "dialogue": "Welcome to my kitchen! C'est beau, non?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-11", + "lineInfo": { + "dialogue": "It may be on fire, but... que serait la Cuisine sans une touche de danger, eh?!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-12", + "lineInfo": { + "dialogue": "So, back to the challenge. What do you say to a bit of friendly competition, hehe?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-13", + "lineInfo": { + "dialogue": "You can work with one of my three best chefs on a dish and present it to me once you're done!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-14", + "lineInfo": { + "dialogue": "I, of course, will judge your dish on the twenty-nine Principes de Cuisine - texture, presentation, originality...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-15", + "lineInfo": { + "dialogue": "... aroma, magical ability.. oh, and flavour!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-16", + "lineInfo": { + "dialogue": "S'il te plaît! Go introduce yourself to each of my chefs and return once you have decided who to work with!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-17", + "lineInfo": { + "dialogue": "Adventurer! You haven't talked to Brie, Kale, or Frank yet, make sure to talk to them before choosing who to work with.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-frank-1", + "lineInfo": { + "dialogue": "Yo, dawg. Name's Frank. Pleasure to meet'cha.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Frank" + } + }, + { + "fileOverride": "recipefordisaster-frank-2", + "lineInfo": { + "dialogue": "Nothin' too sure on what we're gonna cook yet, figure I'll dream somethin' up before the time comes.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Frank" + } + }, + { + "fileOverride": "recipefordisaster-frank-3", + "lineInfo": { + "dialogue": "Thinkin' a pie, maybe? Not too much effort there, can't go too far wrong, right?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Frank" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-frank-4", + "lineInfo": { + "dialogue": "Yo dude, appreciate the enthusiasm but y'all should check out the other chefs before deciding on me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Frank" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-kale-1", + "lineInfo": { + "dialogue": "Good friend of Hamsey's, are you? I'll believe it when - no, if - you somehow win this competition.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Kale" + } + }, + { + "fileOverride": "recipefordisaster-kale-2", + "lineInfo": { + "dialogue": "I don't need any ameteurs like yourself getting in my way when I'm cooking up a storm!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Kale" + } + }, + { + "fileOverride": "recipefordisaster-kale-3", + "lineInfo": { + "dialogue": "Are you still here? Just... go chitchat to someone else, please.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Kale" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-kale-4", + "lineInfo": { + "dialogue": "Please go and talk to the other chefs first before you decide to weigh me down with your \"\"assistance\"\".", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kale" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-brie-1", + "lineInfo": { + "dialogue": "Heya! You must be the adventurer that Hamsey told me about. You know, he was almost ecstatic, but don't tell him I said that!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Brie" + } + }, + { + "fileOverride": "recipefordisaster-brie-2", + "lineInfo": { + "dialogue": "Oh, a cook-off? How exciting! I'll gladly help you out. Maybe this way I can prove myself a bit more to the others...?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Brie" + } + }, + { + "fileOverride": "recipefordisaster-brie-3", + "lineInfo": { + "dialogue": "If we work together, we can make a Seasoned Voidroot Stew, how does that sound?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Brie" + } + }, + { + "fileOverride": "recipefordisaster-brie-4", + "lineInfo": { + "dialogue": "You need to talk to the other chefs before deciding who to work with though!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Brie" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-brie-5", + "lineInfo": { + "dialogue": "You should go tell Hamsey who you've chosen to work with!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Brie" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-brie-6", + "lineInfo": { + "dialogue": "Hey, again! I'd love to chat, but you should talk to the other chefs before making your decision!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Brie" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-kale-5", + "lineInfo": { + "dialogue": "I still can't believe you chose to \"\"work\"\" with me. Make yourself useful and go and tell the Chef. I certainly won't.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kale" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-frank-5", + "lineInfo": { + "dialogue": "Can't wait to work with you man, tell the big man we're working together and we can get started.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Frank" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-18", + "lineInfo": { + "dialogue": "Ah, you have introduced yourself to tous mes cuisiniers? Who do you want to work with?!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-19", + "lineInfo": { + "dialogue": "Ah, Kale. One of my most talented chefs, though he can be stubborn at times!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-20", + "lineInfo": { + "dialogue": "Frank! Whilst he may seem rather... relaxed, at times, I assure you he is a most capable chef!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-21", + "lineInfo": { + "dialogue": "Ah, Brie! An excellent chef... and an even better cheese! I jest, I jest. You will work well together, I am certain.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-22", + "lineInfo": { + "dialogue": "Maintenant, mon ami, head over to your chef and start cooking!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-23", + "lineInfo": { + "dialogue": "How is the cooking going?! If you have lost your recipe book, just ask your chef for another copy!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-24", + "lineInfo": { + "dialogue": "It is time to cook, mon ami! Head over to your chef and ask them what to do.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-frank-6", + "lineInfo": { + "dialogue": "No sweat, man, I probably wouldn't choose me either. Good luck!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Frank" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-brie-7", + "lineInfo": { + "dialogue": "Not feeling a vibe with me? No worries! I'm sure you'll do great whoever you work with.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Brie" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-kale-6", + "lineInfo": { + "dialogue": "Ugh. Stay out of my way, and we'll get along just fine.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Kale" + } + }, + { + "fileOverride": "recipefordisaster-kale-7", + "lineInfo": { + "dialogue": "Make yourself useful and get me everything we need. I'm not in the mood for chit-chat.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Kale" + } + }, + { + "fileOverride": "recipefordisaster-kale-8", + "lineInfo": { + "dialogue": "I don't want my reputation tarnished by the likes of you...", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Kale" + } + }, + { + "fileOverride": "recipefordisaster-kale-9", + "lineInfo": { + "dialogue": "Listen up, because I am *not* going to say this again. Take notes.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Kale" + } + }, + { + "fileOverride": "recipefordisaster-kale-10", + "lineInfo": { + "dialogue": "The key ingredient in my amazing omelette is obviously the [Blue-Ring Grook Egg], which of course you didn't know.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Kale" + } + }, + { + "fileOverride": "recipefordisaster-kale-11", + "lineInfo": { + "dialogue": "First, we're gonna need some kinda flour. A lil' [Sunrise Flour] aughtta do.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Kale" + } + }, + { + "fileOverride": "recipefordisaster-kale-12", + "lineInfo": { + "dialogue": "Secondly, we need some [Snail Slime], which is at Snail Island, obviously. Any seasoned chef could tell you that.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Kale" + } + }, + { + "fileOverride": "recipefordisaster-kale-13", + "lineInfo": { + "dialogue": "Lastly, you need a [Talking Mushroom] which you could find on the swamp Sky Island, provided you have a functioning sense of sight.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Kale" + } + }, + { + "fileOverride": "recipefordisaster-kale-14", + "lineInfo": { + "dialogue": "YOU FORGOT ALREADY?? I TOLD YOU TO TAKE NOTES!", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Kale" + } + }, + { + "fileOverride": "recipefordisaster-kale-15", + "lineInfo": { + "dialogue": "Lucky for you, at least one of us here is competent. I wrote everything down in this recipe book. Right-click to open it. Now get me my ingredients and scram!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Kale" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-kale-16", + "lineInfo": { + "dialogue": "I don't suppose you've made much progress. Check your recipe book if you've forgotten what I told you, since you obviously have.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kale" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-snailracesupervisor-1", + "lineInfo": { + "dialogue": "Hello aaand welcome to the Racetrack of the Century!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Snail Race Supervisor" + } + }, + { + "fileOverride": "recipefordisaster-snailracesupervisor-2", + "lineInfo": { + "dialogue": "One winner, one loser. And Usnail Bolt eats losers for breakfast.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Snail Race Supervisor" + } + }, + { + "fileOverride": "recipefordisaster-snailracesupervisor-3", + "lineInfo": { + "dialogue": "Breakfast? Wait, did I have breakfast? A little breckkie could be good fo-", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Snail Race Supervisor" + } + }, + { + "fileOverride": "recipefordisaster-snailracesupervisor-4", + "lineInfo": { + "dialogue": "Well, no matter. What do you say, adventurer? Enter the race against Usnail Bolt. The grand prize is some Snail Slime!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Snail Race Supervisor" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-snailracesupervisor-5", + "lineInfo": { + "dialogue": "Shame, could’ve been a great race. See you around, adventurer!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Snail Race Supervisor" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-snailracesupervisor-6", + "lineInfo": { + "dialogue": "Aaaaaand they’re off!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Snail Race Supervisor" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-snailracesupervisor-7", + "lineInfo": { + "dialogue": "Well well well... looks like Usnail Bolt has won this one. Again.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Snail Race Supervisor" + } + }, + { + "fileOverride": "recipefordisaster-snailracesupervisor-8", + "lineInfo": { + "dialogue": "Not your lucky day, human. Oh well, you know the price for losing. Guards!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Snail Race Supervisor" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-snailracesupervisor-9", + "lineInfo": { + "dialogue": "Wowee! In what turned out to be an amazing race, the human has managed to steal the lead right out from Usnail Bolt's nose!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Snail Race Supervisor" + } + }, + { + "fileOverride": "recipefordisaster-snailracesupervisor-10", + "lineInfo": { + "dialogue": "Here, human, take this slime as your prize.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Snail Race Supervisor" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-talkingmushroom-1", + "lineInfo": { + "dialogue": "ISN'T THIS JUST ABSOLUTELY FANTASTIC. A HUMAN?! WHO WOULD HAVE GUESSED.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "recipefordisaster-talkingmushroom-2", + "lineInfo": { + "dialogue": "YOU'RE THE SEVENTH ONE PASSING ME TODAY AND YOU'RE NO DIFFERENT FROM THE OTHERS.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "recipefordisaster-talkingmushroom-3", + "lineInfo": { + "dialogue": "EVERY SINGLE ONE WITH THAT DOPEY SHEEPISH LOOK ON THEIR FACE, AS IF A TALKING MUSHROOM IS OUT OF THE BLUE.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "recipefordisaster-talkingmushroom-4", + "lineInfo": { + "dialogue": "GIVE ME A BREAK, I'VE HAD ENOUGH OF JERKS JUST PICKING ME UP AND DISRESPECTING ME LIKE THAT. PRIVATE SPACE, EVER HEARD OF IT?", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "recipefordisaster-talkingmushroom-5", + "lineInfo": { + "dialogue": "WHY DO I EVEN TRY. JUST LOOK AT YOU! THE EPITOME OF CLUELESS. WHAT NOW, GONNA TAKE ME ON SOME LOONEY ADVENTURE ACROSS THE SKY ISLANDS?", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "recipefordisaster-talkingmushroom-6", + "lineInfo": { + "dialogue": "I HOPE NOT, IF YOU WERE THINKING THAT. I'VE ALREADY LOST A STEM TODAY BECAUSE SOME DIMWIT TRIED TAKING A BITE OUT OF ME... LIVE!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "recipefordisaster-talkingmushroom-7", + "lineInfo": { + "dialogue": "DON'T TELL ME, YOU ARE TAKING ME ON SOME LOONEY ADVENTURE ACROSS THE SKY ISLANDS? HOW LOVELY.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "recipefordisaster-talkingmushroom-8", + "lineInfo": { + "dialogue": "A KITCHEN YOU SAY, WELL IF IT'LL PUT ME OUT OF MY MISERY AS SOON AS POSSIBLE, THEN WHY NOT.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "recipefordisaster-talkingmushroom-9", + "lineInfo": { + "dialogue": "WAIT, WHY ARE YOU STUFFING ME INTO YOUR BAG? HOW DO YOU EXPECT ME TO BREATHE IN HERE?!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Talking Mushroom" + }, + "settings": { + "followPlayer": true + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-kale-17", + "lineInfo": { + "dialogue": "Of course you've lost the book. Can't trust you with anything! Here's another one. Be careful this time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kale" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-kale-18", + "lineInfo": { + "dialogue": "You got everything? Took you long enough.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Kale" + } + }, + { + "fileOverride": "recipefordisaster-kale-19", + "lineInfo": { + "dialogue": "Let's get started. Everyone else already finished. Stay back while I work my magic.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Kale" + } + }, + { + "fileOverride": "recipefordisaster-kale-20", + "lineInfo": { + "dialogue": "Mwah! My masterdish is finished. Present this to the chef, I'm sure he'll love it!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Kale" + } + }, + { + "fileOverride": "recipefordisaster-kale-21", + "lineInfo": { + "dialogue": "And be CAREFUL taking it over. That food could be worth HUNDREDS once I'm famous!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Kale" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-kale-22", + "lineInfo": { + "dialogue": "Have you shown Hamsey yet? Ugh, of course you haven't. Get to it!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kale" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-frank-7", + "lineInfo": { + "dialogue": "Good luck, dude.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Frank" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-brie-8", + "lineInfo": { + "dialogue": "Ooooh, your dish smells great! Good luck!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Brie" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-25", + "lineInfo": { + "dialogue": "Ah, you have finished your dish? Well, then, il est temps de goûter!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-26", + "lineInfo": { + "dialogue": "Let us retreat to my private dining room... this way!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-27", + "lineInfo": { + "dialogue": "Meet me in my dining room and we'll taste your dish!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-28", + "lineInfo": { + "dialogue": "I cannot help but notice that your dish is ready!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-29", + "lineInfo": { + "dialogue": "Let me taste your dish and I will present you mine! Mon dieu, une omelette?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-30", + "lineInfo": { + "dialogue": "Je suis déçu, ami. I would prefer biting into a mule derrière! This thing... a Gert wouldn't touch it!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-31", + "lineInfo": { + "dialogue": "I see you haven't improved in the art of cuisine. Leave me be, and come back when you have learned what good food is!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-32", + "lineInfo": { + "dialogue": "Welcome back to my restaurant, adventurer!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-frank-8", + "lineInfo": { + "dialogue": "Good to see you again, dude!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Frank" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-kale-23", + "lineInfo": { + "dialogue": "Ah. You're back. Just stay out of my way, I'm trying to do actual cooking.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kale" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-brie-9", + "lineInfo": { + "dialogue": "Hey! Nice to see you again.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Brie" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-33", + "lineInfo": { + "dialogue": "Welcome back, mon ami! Alas, running a restaurant is busy work, so I can't talk for long. Maybe take a seat in the restaurant?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-kale-24", + "lineInfo": { + "dialogue": "Thank grook you didn't choose me. Goodness knows I don't need another ameteur weighing me down.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kale" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-brie-10", + "lineInfo": { + "dialogue": "Heya again! So you decided to make the Seasoned Voidroot Stew with me? Hurray!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Brie" + } + }, + { + "fileOverride": "recipefordisaster-brie-11", + "lineInfo": { + "dialogue": "It's not quite as easy as it might seem, but I think together we'll be able to handle it.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Brie" + } + }, + { + "fileOverride": "recipefordisaster-brie-12", + "lineInfo": { + "dialogue": "Like I said before, about proving myself... I'm the newest chef here at the kitchen and some of the other chefs disapprove of my ideas. This could be my chance!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Brie" + } + }, + { + "fileOverride": "recipefordisaster-brie-13", + "lineInfo": { + "dialogue": "I've been working on my recipe for Voidroot Stew for months now and I finally have a chance to show everyone what I'm worth!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Brie" + } + }, + { + "fileOverride": "recipefordisaster-brie-14", + "lineInfo": { + "dialogue": "The first ingredient is some [Snail Slime], available on Snail Island! We'll only need one for this dish.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Brie" + } + }, + { + "fileOverride": "recipefordisaster-brie-15", + "lineInfo": { + "dialogue": "Next up, we need some [Voidroot], a super rare root found deep in the Void. I've heard someone in the Sky Islands can take you down there.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Brie" + } + }, + { + "fileOverride": "recipefordisaster-brie-16", + "lineInfo": { + "dialogue": "Lastly, we need some [Moonsalt], which is famously hard to obtain. Luckily, self-proclaimed 'Space Wizard' Astralaus should have some, so you can just pop over to his tower and ask for some!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Brie" + } + }, + { + "fileOverride": "recipefordisaster-brie-17", + "lineInfo": { + "dialogue": "And that should do it! I'll give you a Recipe Book, just right-click to open it up and track your ingredients. Good luck!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Brie" + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-astralus-1", + "lineInfo": { + "dialogue": "Welcome to Astralaus' Astral House! Can you get to the top by flipping gravity?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Astralus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "45": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-astralus-2", + "lineInfo": { + "dialogue": "Astronomical progress! But this is just the beginning!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Astralus" + } + }, + { + "fileOverride": "recipefordisaster-astralus-3", + "lineInfo": { + "dialogue": "...And why did you come to my tower?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Astralus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "46": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-astralus-4", + "lineInfo": { + "dialogue": "My Moonsalt? How absurd! I collected mine myself, you collect yours! It's only fair.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Astralus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "47": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-astralus-5", + "lineInfo": { + "dialogue": "Darn humans, you never listen! I said... Get. It. Yourself.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Astralus" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "48": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-regularhumyn-1", + "lineInfo": { + "dialogue": "What takes you here, strangeling? What namings do you have? Hu-man? We claim Humyn! Bad choose, pick else, strangeling!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Regular Humyn" + } + }, + { + "fileOverride": "recipefordisaster-regularhumyn-2", + "lineInfo": { + "dialogue": "Looking for helping? How many conveniences! Humyns requires assistancing! You observes, humyns failflies into large crater-rock!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Regular Humyn" + } + }, + { + "fileOverride": "recipefordisaster-regularhumyn-3", + "lineInfo": { + "dialogue": "Burnmilk run out and one direction to retrieve it is moonsalt! We strike lucknugget and discover moonsalt on crater-rock!", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Regular Humyn" + } + }, + { + "fileOverride": "recipefordisaster-regularhumyn-4", + "lineInfo": { + "dialogue": "Refined moonsalt gives burnmilk for spacezoom! Inconveniencing, spacezoom destroyed. Humyns create miniscule spacezoom!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Regular Humyn" + } + }, + { + "fileOverride": "recipefordisaster-regularhumyn-5", + "lineInfo": { + "dialogue": "Only singular humyn can fit in current spacezoom. If strangeling helps, humyns will let strangeling in spacezoom. Humyns can create new spacezoom given time!", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Regular Humyn" + } + }, + { + "fileOverride": "recipefordisaster-regularhumyn-6", + "lineInfo": { + "dialogue": "Humyns currently residing on crater-rock, meaning waiting is not result death!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Regular Humyn" + } + }, + { + "fileOverride": "recipefordisaster-regularhumyn-7", + "lineInfo": { + "dialogue": "Moonsalt discovered in saltcave in north, strangeling follow path!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Regular Humyn" + } + }, + { + "fileOverride": "recipefordisaster-regularhumyn-8", + "lineInfo": { + "dialogue": "Just [1 Unrefined Moonsalt] need for burnmilk, strangeling can grab any left over!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Regular Humyn" + } + }, + { + "fileOverride": "recipefordisaster-regularhumyn-9", + "lineInfo": { + "dialogue": "When strangeling has moonsalt, refine at device beside humyn and go zoom in spacezoom!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Regular Humyn" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-brie-18", + "lineInfo": { + "dialogue": "Have you got all the ingredients? Amazing!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Brie" + } + }, + { + "fileOverride": "recipefordisaster-brie-19", + "lineInfo": { + "dialogue": "Okay you step back and let me work on the cooking, just pass over the ingredients!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Brie" + } + }, + { + "fileOverride": "recipefordisaster-brie-20", + "lineInfo": { + "dialogue": "Aha! That should do it! Hopefully I've done everything correctly... but wow, would you look at the colour of that soup!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Brie" + } + }, + { + "fileOverride": "recipefordisaster-brie-21", + "lineInfo": { + "dialogue": "You should bring it over to Hamsey to see what he thinks!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Brie" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-brie-22", + "lineInfo": { + "dialogue": "Have you shown Hamsey our dish yet? I'm sure he's gonna love it!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Brie" + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-brie-23", + "lineInfo": { + "dialogue": "Hey! How's the ingredient gathering going? Remember to check your recipe book if you're stuck!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Brie" + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-brie-24", + "lineInfo": { + "dialogue": "Need another recipe book? No problem! I keep plenty of spares, you never know what might happen!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Brie" + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-kale-25", + "lineInfo": { + "dialogue": "Can't say your bake looks very good. No match for Kale's mighty omelette!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kale" + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-34", + "lineInfo": { + "dialogue": "Welcome back, mon ami! I see you've returned with a dish in hand!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-35", + "lineInfo": { + "dialogue": "A stew? Seems simple, but even the simplest things in life can be le meilleur!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-36", + "lineInfo": { + "dialogue": "Adventurer, are you sure you made this dish? It is so good I might as well close the restaurant!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-37", + "lineInfo": { + "dialogue": "You never fail to surprise me, friend. Here, take this apron, an essential of any true chef.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-frank-9", + "lineInfo": { + "dialogue": "Thrilled to be workin' with you, dude! We'll blow Hamsey's mind.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Frank" + } + }, + { + "fileOverride": "recipefordisaster-frank-10", + "lineInfo": { + "dialogue": "Hmmm, now what kinda pie should we be bakin', here?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Frank" + } + }, + { + "fileOverride": "recipefordisaster-frank-11", + "lineInfo": { + "dialogue": "Well, I might be a lil' lazy, but when it comes to cookin', I've got the eye. And to me, dude? You look like a real Skyhigh Pie kind of guy! Heheh.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Frank" + } + }, + { + "fileOverride": "recipefordisaster-frank-12", + "lineInfo": { + "dialogue": "Welp, guess you know how to cook up a simple Skyhigh Pie, right? Off you go, I'll be waiting here when you have the ingredients.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Frank" + } + } + ] + }, + "56": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-frank-13", + "lineInfo": { + "dialogue": "Hehe, just messin' with you, man! Shoulda seen your face.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Frank" + } + }, + { + "fileOverride": "recipefordisaster-frank-14", + "lineInfo": { + "dialogue": "First, we're gonna need some kinda flour. A lil' [Sunrise Flour] aughtta do.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Frank" + } + }, + { + "fileOverride": "recipefordisaster-frank-15", + "lineInfo": { + "dialogue": "A good-sized [Blue-Ring Grook Egg] should give us a lil' kick. Not as much as those grooks'll give you a kick, if they see you pilfering their eggs, though!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Frank" + } + }, + { + "fileOverride": "recipefordisaster-frank-16", + "lineInfo": { + "dialogue": "Finally, the secret ingredient - A [Skyhigh Raspberry]. Real good stuff, but it's a fair way out. Guess a lil' walking never hurt anyone, huh? Not that I've ever bothered.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Frank" + } + }, + { + "fileOverride": "recipefordisaster-frank-17", + "lineInfo": { + "dialogue": "Huh, you've got a bad memory? Yeah, me too, man. Here's a Recipe Book, just right-click to open it up and check where to grab the ingredients!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Frank" + } + }, + { + "fileOverride": "recipefordisaster-frank-18", + "lineInfo": { + "dialogue": "Return here once you've got them all. Peace out, dude!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Frank" + } + } + ] + }, + "57": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-frank-19", + "lineInfo": { + "dialogue": "Yo, how are the ingredients coming along? I wrote 'em down in your recipe book if you forgot.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Frank" + } + } + ] + }, + "58": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-frank-20", + "lineInfo": { + "dialogue": "You lost my super-secret recipe? No sweat, I always keep a spare. But be careful with this one!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Frank" + } + } + ] + }, + "59": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-baker-1", + "lineInfo": { + "dialogue": "Hello there! I can see you knead some sunrise flour, don't you?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Baker" + } + }, + { + "fileOverride": "recipefordisaster-baker-2", + "lineInfo": { + "dialogue": "It's needed rye away? Well no worries, friend!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Baker" + } + }, + { + "fileOverride": "recipefordisaster-baker-3", + "lineInfo": { + "dialogue": "Well butter me up and call me toast, it seems I ran out of the stuff, there's none left.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Baker" + } + }, + { + "fileOverride": "recipefordisaster-baker-4", + "lineInfo": { + "dialogue": "I'm sorry if I seem to be just loafing around, but at yeast I know how to make some more.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Baker" + } + }, + { + "fileOverride": "recipefordisaster-baker-5", + "lineInfo": { + "dialogue": "Can you see that wheat field over there, next to the bakery? You can farm up some wheat and pop it on the mill.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Baker" + } + }, + { + "fileOverride": "recipefordisaster-baker-6", + "lineInfo": { + "dialogue": "Grab a scythe from the tool merchant next dough and get to work!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Baker" + } + }, + { + "fileOverride": "recipefordisaster-baker-7", + "lineInfo": { + "dialogue": "Make as much as you want, I've made all the bread I need for today already.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Baker" + } + } + ] + }, + "60": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-raspberryvendor-1", + "lineInfo": { + "dialogue": "Howdy, pal! Looking for some Skyhigh Raspberries? They work great in a pie!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Raspberry Vendor" + } + }, + { + "fileOverride": "recipefordisaster-raspberryvendor-2", + "lineInfo": { + "dialogue": "If you're interested, it's just a small fee of 10 Emeralds to get access to the island.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Raspberry Vendor" + } + }, + { + "fileOverride": "recipefordisaster-raspberryvendor-3", + "lineInfo": { + "dialogue": "A man's gotta make a living somehow, so I've set up a system of cannons to take you right up to the island they grow on!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Raspberry Vendor" + } + }, + { + "fileOverride": "recipefordisaster-raspberryvendor-4", + "lineInfo": { + "dialogue": "So, whaddya say? Small price for a little adventure, and as many raspberries as you can eat!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Raspberry Vendor" + } + } + ] + }, + "61": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-raspberryvendor-5", + "lineInfo": { + "dialogue": "Alrighty, no worries. Feel free to come back if you're ever in the mood for some!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Raspberry Vendor" + } + } + ] + }, + "62": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-raspberryvendor-6", + "lineInfo": { + "dialogue": "Alrighty! Just head over to that island beside me and jump in the cannon - it's perfectly safe, I promise!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Raspberry Vendor" + } + }, + { + "fileOverride": "recipefordisaster-raspberryvendor-7", + "lineInfo": { + "dialogue": "Find your way up to the island and grab as many raspberries as you want! When you're done just jump in the big cannon to come back to shore!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Raspberry Vendor" + } + } + ] + }, + "63": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-raspberryvendor-8", + "lineInfo": { + "dialogue": "You're all paid up for a trip to the island already, just jump in the cannon on the island right beside me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Raspberry Vendor" + } + } + ] + }, + "64": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-crank-1", + "lineInfo": { + "dialogue": "'ey there, 'uman! What brings ya to these parts?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Crank" + } + }, + { + "fileOverride": "recipefordisaster-crank-2", + "lineInfo": { + "dialogue": "Voidroot, eh? I'll be sure there's some o' that down 'ere in the void.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Crank" + } + }, + { + "fileOverride": "recipefordisaster-crank-3", + "lineInfo": { + "dialogue": "I can bring ya down there, for free! See, ain't getting much traffic here, am I? Gotta take all the action I can get.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Crank" + } + }, + { + "fileOverride": "recipefordisaster-crank-4", + "lineInfo": { + "dialogue": "Be careful down there; it's a full nuthouse! 'eard stories 'bout things disappearin' and appearin'.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Crank" + } + }, + { + "fileOverride": "recipefordisaster-crank-5", + "lineInfo": { + "dialogue": "Just be wary, will ya, 'uman?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Crank" + } + }, + { + "fileOverride": "recipefordisaster-crank-6", + "lineInfo": { + "dialogue": "Stroll over to me ol' crane, and I'll crank ya down!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Crank" + } + } + ] + }, + "65": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-crank-7", + "lineInfo": { + "dialogue": "Why 'ello there, friend. Back to go down to the void again?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Crank" + } + } + ] + }, + "66": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-crank-8", + "lineInfo": { + "dialogue": "'elcome to Crank's Crank, the one an' only place to get you down to the void. Sorry if ye wanted to go down, but the crane is under maintenence.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Crank" + } + } + ] + }, + "67": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-frank-21", + "lineInfo": { + "dialogue": "You got everything? Awesome stuff, dude.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Frank" + } + }, + { + "fileOverride": "recipefordisaster-frank-22", + "lineInfo": { + "dialogue": "I'll just take a smallll bit of this raspberry - chef's commission, eh? And let's get started!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Frank" + } + }, + { + "fileOverride": "recipefordisaster-frank-23", + "lineInfo": { + "dialogue": "And we're all done. Hamsey's gonna love this.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Frank" + } + }, + { + "fileOverride": "recipefordisaster-frank-24", + "lineInfo": { + "dialogue": "Here you go, dawg. Pleasure working with you - show this to Hamsey and we'll see what he thinks. Make sure you don't \"\"lose\"\" any of it on the way over - you know what they say about your own supply!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Frank" + } + } + ] + }, + "68": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-frank-25", + "lineInfo": { + "dialogue": "Hey, you're knocking off my mojo, man! Stay back while the master does his work.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Frank" + } + } + ] + }, + "69": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-frank-26", + "lineInfo": { + "dialogue": "Well, what did Hamsey think of the bake?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Frank" + } + } + ] + }, + "70": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-38", + "lineInfo": { + "dialogue": "I see you've returned, and not empty handed. Please, show me what you've created!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-39", + "lineInfo": { + "dialogue": "A pie? Why, you must have been helped by Frank. He always has a thing for making pie!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-40", + "lineInfo": { + "dialogue": "I can see that your compétences culinaires are very well developed!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-41", + "lineInfo": { + "dialogue": "Though I will not truly call you a master chef quite yet, you are très bien! Have this reward as congratulations!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "71": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-42", + "lineInfo": { + "dialogue": "Bonjour, adventurer! Welcome to my restaurant. Alas, it seems we are all booked up for now.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Chef Hamsey" + } + }, + { + "fileOverride": "recipefordisaster-chefhamsey-43", + "lineInfo": { + "dialogue": "Perhaps you could make a reservation for when you are level 96?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "72": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-44", + "lineInfo": { + "dialogue": "Adventurer! You haven't talked to Kale or Frank yet, make sure to talk to them before choosing who to work with.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "73": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-45", + "lineInfo": { + "dialogue": "Adventurer! You haven't talked to Brie or Kale yet, make sure to talk to them before choosing who to work with.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "74": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-46", + "lineInfo": { + "dialogue": "Adventurer! You haven't talked to Brie or Frank yet, make sure to talk to them before choosing who to work with.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "75": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-47", + "lineInfo": { + "dialogue": "Adventurer! You haven't talked to Frank yet, make sure to talk to them before choosing who to work with.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "76": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-48", + "lineInfo": { + "dialogue": "Adventurer! You haven't talked to Brie yet, make sure to talk to them before choosing who to work with.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chef Hamsey" + } + } + ] + }, + "77": { + "dialogues": [ + { + "fileOverride": "recipefordisaster-chefhamsey-49", + "lineInfo": { + "dialogue": "Adventurer! You haven't talked to Kale yet, make sure to talk to them before choosing who to work with.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chef Hamsey" + } + } + ] + } + } + }, + "Reclaiming the House": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "reclaimingthehouse-elphaba-1", + "lineInfo": { + "dialogue": "Oh, a Wynnic soldier out here in the boondocks? Honestly, you're just what we need- I could use your help, if you're able?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-2", + "lineInfo": { + "dialogue": "Good, thank you. Let me lock down the camp before I give you the briefing, though.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-3", + "lineInfo": { + "dialogue": "My name is Elphaba. I've been working with the Gavellian army for a good few years now.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-4", + "lineInfo": { + "dialogue": "I'm the commander of the Olux Outpost down ahead. It's a strategic fortress, placed to monitor the Orcish capital.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-5", + "lineInfo": { + "dialogue": "It was safe for a long while, but especially in the past while the Orcs have gotten far bolder, more aggressive.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-6", + "lineInfo": { + "dialogue": "They overwhelmed the outpost- we had to retreat and set up this camp to watch over the place we used to watch over them with!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-7", + "lineInfo": { + "dialogue": "I need more firepower if I'm going...to get...", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-8", + "lineInfo": { + "dialogue": "...oh no. See, this is what I mean! The orcs are coming!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-9", + "lineInfo": { + "dialogue": "Brace yourself, soldier! Protect the camp!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Elphaba" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "reclaimingthehouse-elphaba-10", + "lineInfo": { + "dialogue": "This is the third attack in three days! How many reinforcements have they got?!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-11", + "lineInfo": { + "dialogue": "Gah! Their casters are strong, careful!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Elphaba" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "reclaimingthehouse-elphaba-12", + "lineInfo": { + "dialogue": "Ugh, I think that was all of them... Come here now, I'll start up where we left off.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Elphaba" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "reclaimingthehouse-elphaba-13", + "lineInfo": { + "dialogue": "Not sure I could have done that myself. I'm lucky you came around when you did, soldier.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-14", + "lineInfo": { + "dialogue": "Anyway, it's clear that I'm going to need more firepower if I'm going to have a shot at reclaiming that outpost.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-15", + "lineInfo": { + "dialogue": "You've certainly got the fighting chops, so I'd appreciate the aid, but we've got to come up with a plan, fast.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-16", + "lineInfo": { + "dialogue": "There's an old tower near the outpost- some old storage silo. It was built taller than the fort, so we might be able to spy on them from there.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-17", + "lineInfo": { + "dialogue": "It's a risk though, since it's so close by, but we have no other options. Meet me at the tower southeast of here so we can survey the situation.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Elphaba" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "reclaimingthehouse-elphaba-18", + "lineInfo": { + "dialogue": "Soldier! I'm right behind you. You can see our outpost- and the tower I mentioned.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-19", + "lineInfo": { + "dialogue": "We need to find a way in. A lot of soldiers were caught unaware during the Orcs' assault, too.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-20", + "lineInfo": { + "dialogue": "If there's any survivors in there, we should make rescuing them a priority.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-21", + "lineInfo": { + "dialogue": "After all, it means more manpower for us. We can't count on that being the case, though...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-22", + "lineInfo": { + "dialogue": "Come on, hurry inside before one of the orcs spots us!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Elphaba" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "reclaimingthehouse-elphaba-23", + "lineInfo": { + "dialogue": "Alright, this is a pretty clear view. Let's see what's going on in there...", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-24", + "lineInfo": { + "dialogue": "Wh- I'm shocked! In the middle there- they just caged the soldiers instead of killing them? That's...kind of a relief.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Elphaba" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-25", + "lineInfo": { + "dialogue": "There's definitely too many orcs in the plaza there for us to take down on our own...", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Elphaba" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-26", + "lineInfo": { + "dialogue": "...but that cage is held up by those ropes. If we can cut them, the other soldiers should be able to help!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Elphaba" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-27", + "lineInfo": { + "dialogue": "Alright, now I just need to figure out how we can both get in... There's sentries on the perimeter, so going over may not be an option...", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Elphaba" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-28", + "lineInfo": { + "dialogue": "Maybe we can keep an eye out on their sentry patterns and look for an opening-", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Elphaba" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "reclaimingthehouse-orc-1", + "lineInfo": { + "dialogue": "Humans on old tower! Junhur will shoot! This our place now, get out!!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Orc" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-29", + "lineInfo": { + "dialogue": "Aw, not now! I knew this was a risk, no time to get out... Brace for impact!!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Elphaba" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "reclaimingthehouse-orc-2", + "lineInfo": { + "dialogue": "Old tower fall! Junhur is best cannon shooter!!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Orc" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "reclaimingthehouse-elphaba-30", + "lineInfo": { + "dialogue": "Agh, soldier!! Are you alright, where'd you fall?!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-31", + "lineInfo": { + "dialogue": "Ah... Wow. You barely look scratched, you must've gotten really lucky.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-32", + "lineInfo": { + "dialogue": "Not so much here... I'm pretty battered after that. At least one of us is in good condition...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-33", + "lineInfo": { + "dialogue": "Unfortunately, that means figuring a way in is up to you. We can't examine their sentry patterns from down here.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-34", + "lineInfo": { + "dialogue": "I'll survive, sure, but I won't be able to walk around and defend myself for a while.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-35", + "lineInfo": { + "dialogue": "I hate leaving you on your own like this, but if it's any consolation, you should be tough enough, or lucky enough, to get through.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-36", + "lineInfo": { + "dialogue": "Explore the perimeter of the outpost. Try to find a way in, but be careful, okay?", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Elphaba" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "reclaimingthehouse-orcguard-1", + "lineInfo": { + "dialogue": "Someone outside door? Check!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Orc Guard" + } + }, + { + "fileOverride": "reclaimingthehouse-orcguard-2", + "lineInfo": { + "dialogue": "Oh, orc from mud bath. In, now!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Orc Guard" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "reclaimingthehouse-orcguard-3", + "lineInfo": { + "dialogue": "More muddy orcs? In, now!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Orc Guard" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "reclaimingthehouse-soldier-1", + "lineInfo": { + "dialogue": "Good thinking with the mud disguise, soldier! They never suspected a thing, now come help us out over here!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Soldier" + } + }, + { + "fileOverride": "reclaimingthehouse-soldier-2", + "lineInfo": { + "dialogue": "Kill the Orcish Overtakers, we'll help keep the other ones off you! ", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Soldier" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "reclaimingthehouse-soldier-3", + "lineInfo": { + "dialogue": "The Overtakers are down, the other Orcs are flailing! Open the outpost's entrance with a spell now, we've got this under control!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Soldier" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "reclaimingthehouse-elphaba-37", + "lineInfo": { + "dialogue": "Phew... That's some fine work there, soldier! The outpost is back under our control!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-38", + "lineInfo": { + "dialogue": "Glad to see some more capable Wynnic hands over here. Though, I didn't catch your name. Would you mind?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-39", + "lineInfo": { + "dialogue": "Soldier, huh? I'll remember that. You barely even needed my help, heh... Wish I hadn't been such a burden, but at least it worked out.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-40", + "lineInfo": { + "dialogue": "Here- it's some of my own personal spending money, as a thank-you gift.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Elphaba" + } + }, + { + "fileOverride": "reclaimingthehouse-elphaba-41", + "lineInfo": { + "dialogue": "Alright everyone, let's get this place ship-shape! Everything needs to be repaired in case of another attack!!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Elphaba" + } + } + ] + } + } + }, + "Recover the Past": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "recoverthepast-scoutreynauld-1", + "lineInfo": { + "dialogue": "Ah, hello. Don't mind me, I'm just preparing for an oncoming corrupted attack.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Scout Reynauld" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-2", + "lineInfo": { + "dialogue": "...nothing you need to worry about, of course. I can handle it.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Scout Reynauld" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "recoverthepast-caid-1", + "lineInfo": { + "dialogue": "Stupid- ship! Get out of there! How did I even- manage to do this!?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-2", + "lineInfo": { + "dialogue": "Huh? Oh! I- ah, nothing to see here! Just... just taking a look at my good old ship! Yup!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Caid" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "recoverthepast-drpicard-1", + "lineInfo": { + "dialogue": "Success! Success, success, SUCCESS! I'm a genius, the smartest man alive!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-2", + "lineInfo": { + "dialogue": "You there, random bystander! You have witnessed a magical marvel! I have just successfully restored my memories from years ago!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-3", + "lineInfo": { + "dialogue": "You look to be from Fruma, yes? So you know just as well as I that your memories of your life before have vanished. Poof. Gone!", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-4", + "lineInfo": { + "dialogue": "But with this device... we can change that! Restore what has been lost! Recover the- you get the point.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-5", + "lineInfo": { + "dialogue": "Now, I'm in great need of test subjects... You would do well as one, yes, but I need more to be certain this thing works.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-6", + "lineInfo": { + "dialogue": "Listen here! I have a proposition to make. You'd like your memories back, yes? Bring me enough test subjects, and I can show you what you've lost!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-7", + "lineInfo": { + "dialogue": "Let's see, let's see... We need individuals originally from Fruma. There are a few of those around here.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-8", + "lineInfo": { + "dialogue": "You can start with the would-be sailor, Caid. You'll find him just past Elkurn- follow the path until you reach the river.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-9", + "lineInfo": { + "dialogue": "In the meantime, I'll be making adjustments here... It's not perfect just yet. I'm still missing large portions of my memory... Hm? You're still here? Get going!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Dr. Picard" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "recoverthepast-drpicard-10", + "lineInfo": { + "dialogue": "Well? I've given you an assignment, what are you still doing here? Go find the Sailor Caid. You'll find him just past Elkurn- follow the path until you reach the river.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dr. Picard" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "recoverthepast-caid-3", + "lineInfo": { + "dialogue": "Stupid- ship! Get out of there! How did I even- manage to do this!?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-4", + "lineInfo": { + "dialogue": "Huh? Oh! I- ah, nothing to see here! Just... just taking a look at my good old ship!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-5", + "lineInfo": { + "dialogue": "Picard sent you? The guy cooped up in that tower? Huh. Good to know he's finally finished his work. What did he want me for?", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-6", + "lineInfo": { + "dialogue": "...Look at my memories from Fruma, huh? I'm not so sure 'bout that. If they're missing, they must be missing for a reason. And I'm- I'm happy here! Don't need to know nothin' about-...", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-7", + "lineInfo": { + "dialogue": "...Yeah, alright. I'll come with you to get my memory checked out. Just, do me a solid first, alright?", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-8", + "lineInfo": { + "dialogue": "I'm something of a builder. Figured I'd try my hand at makin' a ship, and, here it is! Pretty good, right?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-9", + "lineInfo": { + "dialogue": "Issue is, I've built it somewhere I can't really move it out from. And, trust me, I've tried. A lot.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-10", + "lineInfo": { + "dialogue": "I have a friend out in Elkurn- an alchemist. I'll write down his location in your content book. Could you go ask him if he has anything to help?", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-11", + "lineInfo": { + "dialogue": "Thank you greatly. I'll keep trying here, maybe I'll be able to get it out myself...", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Caid" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "recoverthepast-caid-12", + "lineInfo": { + "dialogue": "Come- on! You've got to get out- eventually! Stupid- ship!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-13", + "lineInfo": { + "dialogue": "Phew... this isn't working. Have you been to the alchemist yet? He lives in town. He'll know how to help.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Caid" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "recoverthepast-alchemist-1", + "lineInfo": { + "dialogue": "Hello! Looking for potions? This is the best potion shop in Elkurn!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Alchemist" + } + }, + { + "fileOverride": "recoverthepast-alchemist-2", + "lineInfo": { + "dialogue": "Oh, Caid asked you to speak with me? What does he need this time?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Alchemist" + } + }, + { + "fileOverride": "recoverthepast-alchemist-3", + "lineInfo": { + "dialogue": "He built his ship in the wrong place... and needs help getting it out... Good grief, I could have told him that'd be a problem if he'd have just-", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Alchemist" + } + }, + { + "fileOverride": "recoverthepast-alchemist-4", + "lineInfo": { + "dialogue": "...Ehm. Well, luckily for him, I know just the thing to help! I can brew him up a shrinking potion, and he'll be all good to go...", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Alchemist" + } + }, + { + "fileOverride": "recoverthepast-alchemist-5", + "lineInfo": { + "dialogue": "Golden apples, check... Got the water over there... Hm. I appear to be out of an ingredient. You can fetch it for me, right?", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Alchemist" + } + }, + { + "fileOverride": "recoverthepast-alchemist-6", + "lineInfo": { + "dialogue": "Good, good. The item I'm looking for is known as a [Bloom of Death]. You can likely find some growing near the Elkurn church.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Alchemist" + } + }, + { + "fileOverride": "recoverthepast-alchemist-7", + "lineInfo": { + "dialogue": "Do be careful, though! They're rather agressive towards those they deem as a threat. Nothing you can't handle, I'm sure!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Alchemist" + } + }, + { + "fileOverride": "recoverthepast-alchemist-8", + "lineInfo": { + "dialogue": "Well, I'll get to brewing. Fetch me [1 Bloom of Death] and I'll be able to finish the potion!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Alchemist" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "recoverthepast-alchemist-9", + "lineInfo": { + "dialogue": "Hm hm... I'll have to leave it at this temperature for... and then I have to...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Alchemist" + } + }, + { + "fileOverride": "recoverthepast-alchemist-10", + "lineInfo": { + "dialogue": "Ah! You're back! Do you need a reminder? You can find [1 Bloom of Death] if you look near the Elkurn Church!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Alchemist" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "recoverthepast-alchemist-11", + "lineInfo": { + "dialogue": "There you are! And you have the bloom! Excellent, excellent, give it here.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Alchemist" + } + }, + { + "fileOverride": "recoverthepast-alchemist-12", + "lineInfo": { + "dialogue": "Just a touch of this, and a touch of that, and...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Alchemist" + } + }, + { + "fileOverride": "recoverthepast-alchemist-13", + "lineInfo": { + "dialogue": "All done! One shrinking potion, ready for use!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Alchemist" + } + }, + { + "fileOverride": "recoverthepast-alchemist-14", + "lineInfo": { + "dialogue": "My work here is done. Bring that to Caid, and it should sort out his situation!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Alchemist" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "recoverthepast-alchemist-15", + "lineInfo": { + "dialogue": "Well? Go take the potion to Caid!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Alchemist" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "recoverthepast-alchemist-16", + "lineInfo": { + "dialogue": "Hello! Looking for potions? This is the best potion shop in Elkurn!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Alchemist" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "recoverthepast-caid-14", + "lineInfo": { + "dialogue": "Come- on! You've got to get out- eventually! Stupid- ship!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-15", + "lineInfo": { + "dialogue": "... You're back! Did my friend know what to do?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-16", + "lineInfo": { + "dialogue": "A shrinking potion... Weird choice, but I guess it'll work. So, what, do I just pour it on...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-17", + "lineInfo": { + "dialogue": "Huh. Well, it's certainly... smaller. I don't know if I can even fit in there anymore! The potion will wear off... right?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-18", + "lineInfo": { + "dialogue": "Well. Whatever, I can get it out of there now! Guess that means we should go to the doctor. Lead the way.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Caid" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "recoverthepast-drpicard-11", + "lineInfo": { + "dialogue": "Aha! You've returned! Good, good, this'll be a good test of my changes...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-caid-19", + "lineInfo": { + "dialogue": "...Right. And this is the doctor we're trusting with my memories?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-drpicard-12", + "lineInfo": { + "dialogue": "Now, now, don't underestimate my genius. You'll be fine! Probably. I'd give it a 95% chance. Now, step up here.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-13", + "lineInfo": { + "dialogue": "And now, all I need to do is... Activate the spell here, hit the switch there, and...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-caid-20", + "lineInfo": { + "dialogue": "G-gah! What's happening?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Caid" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "recoverthepast-caid-21", + "lineInfo": { + "dialogue": "Right, let's see what we've got here... Edwin, can you check that other crate over there?", + "line": { + "current": 1, + "max": 16 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-edwin-1", + "lineInfo": { + "dialogue": "Sure thing. Say- Caid. How do you keep getting ahold of these things? There's expensive parts in these, and that seems a bit out of your price range.", + "line": { + "current": 2, + "max": 16 + }, + "npc": "Edwin" + } + }, + { + "fileOverride": "recoverthepast-caid-22", + "lineInfo": { + "dialogue": "Well... Let's just say the latest resupply package for the guards is slightly lighter than it might otherwise be.", + "line": { + "current": 3, + "max": 16 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-edwin-2", + "lineInfo": { + "dialogue": "Wait- what? Caid, please tell me you haven't been stealing from the guards. You know they won't-", + "line": { + "current": 4, + "max": 16 + }, + "npc": "Edwin" + } + }, + { + "fileOverride": "recoverthepast-caid-23", + "lineInfo": { + "dialogue": "Edwin, relax. I'm barely skimming off the top of their supplies. They won't notice one or two missing packages out of thirty.", + "line": { + "current": 5, + "max": 16 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-24", + "lineInfo": { + "dialogue": "'sides, I'm not scared of them. They're here to protect us, aren't they? I figure they'll just let me off with a warning, like they have all those other times.", + "line": { + "current": 6, + "max": 16 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-edwin-3", + "lineInfo": { + "dialogue": "If... if you say so. I guess you're right. They don't need all those supplies, really. And we can make much better use of these than they would!", + "line": { + "current": 7, + "max": 16 + }, + "npc": "Edwin" + } + }, + { + "fileOverride": "recoverthepast-caid-25", + "lineInfo": { + "dialogue": "Exactly! I'm glad you agree. So, have you found anything goo-", + "line": { + "current": 8, + "max": 16 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-royalcaptain-1", + "lineInfo": { + "dialogue": "You two! Hold still, you're under arrest!", + "line": { + "current": 9, + "max": 16 + }, + "npc": "???" + } + }, + { + "fileOverride": "recoverthepast-edwin-4", + "lineInfo": { + "dialogue": "G-g-g-guards! Run!!", + "line": { + "current": 10, + "max": 16 + }, + "npc": "Edwin" + } + }, + { + "fileOverride": "recoverthepast-caid-26", + "lineInfo": { + "dialogue": "E-Edwin! Get back here, you cowa-", + "line": { + "current": 11, + "max": 16 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-royalcaptain-2", + "lineInfo": { + "dialogue": "That's enough out of you. You two, track down the accomplice.", + "line": { + "current": 12, + "max": 16 + }, + "npc": "Royal Captain" + } + }, + { + "fileOverride": "recoverthepast-royalcaptain-3", + "lineInfo": { + "dialogue": "Caid, you are being placed under arrest for repeated counts of theft of imperial property.", + "line": { + "current": 13, + "max": 16 + }, + "npc": "Royal Captain" + } + }, + { + "fileOverride": "recoverthepast-royalcaptain-4", + "lineInfo": { + "dialogue": "Your record shows you have received multiple warnings for previous acts. This was your final chance, and you have thoroughly wasted it.", + "line": { + "current": 14, + "max": 16 + }, + "npc": "Royal Captain" + } + }, + { + "fileOverride": "recoverthepast-royalcaptain-5", + "lineInfo": { + "dialogue": "Take him to the prison for further questioning, and to decide what shall be done with him.", + "line": { + "current": 15, + "max": 16 + }, + "npc": "Royal Captain" + } + }, + { + "fileOverride": "recoverthepast-drpicard-14", + "lineInfo": { + "dialogue": "Hey! Hello? Bystander-turned-assistant! Get yourself out of that trance, we need to talk.", + "line": { + "current": 16, + "max": 16 + }, + "npc": "Dr. Picard" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "recoverthepast-drpicard-15", + "lineInfo": { + "dialogue": "Hm. Hm hm hm. The memory cut off there... I wonder what we'd see if we could-", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-16", + "lineInfo": { + "dialogue": "Ah! Bystander-turned-assis- you know what, I'll just call you my assistant. Finally out of your trance, I see.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-17", + "lineInfo": { + "dialogue": "Hm? Where'd the sailor go? Oh, I don't know, I wasn't keeping track- I believe he returned to his ship. That's not important.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-18", + "lineInfo": { + "dialogue": "What is important is what we've just seen! Memories relived in vivid detail! Truly, this device will change the world!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-19", + "lineInfo": { + "dialogue": "...Though, I will say. I am a little lost as to the timeline of events. Caid was arrested- so how did he find himself here in Wynn, as a soldier?", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-20", + "lineInfo": { + "dialogue": "It's puzzling, to be sure... If only we could see further. I'll get to work immediately- we must know more!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-21", + "lineInfo": { + "dialogue": "In the meantime, I'll have you fetch another test subject for me. There's a Scout Reynauld on duty today- he's also from Fruma originally.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-22", + "lineInfo": { + "dialogue": "You'll find him near a bridge to the Roots of Corruption. I'm counting on you to convince him to join our experiment. In the name of science!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Dr. Picard" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "recoverthepast-drpicard-23", + "lineInfo": { + "dialogue": "Hm... Where does this barrier lie? Is this magic not strong enough to break through it? Maybe if I increase the power, then...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-24", + "lineInfo": { + "dialogue": "Gah! Assistant! What are you doing here? Have you spoken to Scout Reynauld yet? You'll find him near a bridge to the Roots of Corruption.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Dr. Picard" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "recoverthepast-scoutreynauld-3", + "lineInfo": { + "dialogue": "...and so, we expect them to attempt to seize control of this bridge any minute now.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Scout Reynauld" + } + }, + { + "fileOverride": "recoverthepast-tasim-1", + "lineInfo": { + "dialogue": "I see. Well, you'll have me to help defend the town, at the very least. I guess all we can do now is w-", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-tasim-2", + "lineInfo": { + "dialogue": "soldier? What're you doing all the way out here? The Admiral sent me to bolster Elkurn's defenses, what with the incoming threat.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-4", + "lineInfo": { + "dialogue": "Hm? The strange doctor wants to see me? To restore my memories? I can't say I really trust the man... but I am curious if it'll really work.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Scout Reynauld" + } + }, + { + "fileOverride": "recoverthepast-tasim-3", + "lineInfo": { + "dialogue": "Recovering memories from Fruma... That's definitely something I'd be interested in. I've had a strange feeling about it, ever since we first realized we lost them.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-5", + "lineInfo": { + "dialogue": "Then it's settled. We'll go with you to meet the doctor. However, the town takes priority. We'll need to fight off the incoming corrupted force.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Scout Reynauld" + } + }, + { + "fileOverride": "recoverthepast-tasim-4", + "lineInfo": { + "dialogue": "soldier, you should join us! Three is better than two, after all. We have a bit more time, so you should go prepare, then come back here.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Tasim" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "recoverthepast-tasim-5", + "lineInfo": { + "dialogue": "So, have you had any interesting adventures since we split up?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-tasim-6", + "lineInfo": { + "dialogue": "...Oh, right! You and General Graken dealt with the undead in Ancient Nemract, didn't you? Captain Ragon was glad to hear that, I'll tell you.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-tasim-7", + "lineInfo": { + "dialogue": "Me? Eh, nothing really to talk about. Aledar's gone off to research the corruption on his own, so I've been- I don't know. Helping wherever I can.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-tasim-8", + "lineInfo": { + "dialogue": "I have the skill and the magic to fight off corrupteds, so I might as well help wherever I'm needed.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Tasim" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "recoverthepast-scoutreynauld-6", + "lineInfo": { + "dialogue": "Are you ready to defend Elkurn?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Scout Reynauld" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "recoverthepast-scoutreynauld-7", + "lineInfo": { + "dialogue": "We don't have much of it left, I'm afraid. Go, then, but come back quickly.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Scout Reynauld" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "recoverthepast-tasim-9", + "lineInfo": { + "dialogue": "Then let's do this. Shouldn't be much longer now...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-8", + "lineInfo": { + "dialogue": "I have eyes on the target! Corrupted forces incoming!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Scout Reynauld" + } + }, + { + "fileOverride": "recoverthepast-tasim-10", + "lineInfo": { + "dialogue": "...Ah. This might be a little tougher than expected. Well, let's give it our all!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Tasim" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "recoverthepast-scoutreynauld-9", + "lineInfo": { + "dialogue": "Finally, I've got a good shot! Just have to aim...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Scout Reynauld" + }, + "settings": { + "falloff": 80 + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-10", + "lineInfo": { + "dialogue": "Damn it, the summoner's shielded! How do we take it down?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Scout Reynauld" + }, + "settings": { + "falloff": 80 + } + }, + { + "fileOverride": "recoverthepast-tasim-11", + "lineInfo": { + "dialogue": "The spikes look weaker than the shield! If we can kill enough of its minions, we'll break its concentration and you can destroy the spike!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Tasim" + }, + "settings": { + "falloff": 80 + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "recoverthepast-tasim-12", + "lineInfo": { + "dialogue": "Now that's a brute if I've ever seen one... Alright, if we take this one out, Reynauld should be able to take the shot!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + }, + "settings": { + "falloff": 80 + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "recoverthepast-scoutreynauld-11", + "lineInfo": { + "dialogue": "Alright! That should do it. Fire a powerful shot here, and...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Scout Reynauld" + }, + "settings": { + "falloff": 80 + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-12", + "lineInfo": { + "dialogue": "Got it! You two- chip away at the summoner, it can't have long left!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Scout Reynauld" + }, + "settings": { + "falloff": 80 + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "recoverthepast-tasim-13", + "lineInfo": { + "dialogue": "It's out of reach again- but we know how to deal with it now! Come on, we just need to kill more of its minions!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + }, + "settings": { + "falloff": 80 + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "recoverthepast-tasim-14", + "lineInfo": { + "dialogue": "Another brute to take out, then Reynauld can take the shot!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + }, + "settings": { + "falloff": 80 + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "recoverthepast-scoutreynauld-13", + "lineInfo": { + "dialogue": "The summoner's weak... now I just need to hit the right... spot!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Scout Reynauld" + }, + "settings": { + "falloff": 80 + } + }, + { + "fileOverride": "recoverthepast-tasim-15", + "lineInfo": { + "dialogue": "There's nowhere for it to run now! Let's finish this.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + }, + "settings": { + "falloff": 80 + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "recoverthepast-scoutreynauld-14", + "lineInfo": { + "dialogue": "We've done it! Elkurn stands another day.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Scout Reynauld" + }, + "settings": { + "falloff": 80 + } + }, + { + "fileOverride": "recoverthepast-tasim-16", + "lineInfo": { + "dialogue": "That was-... that was definitely tough. But, hey, we did it!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-15", + "lineInfo": { + "dialogue": "That we did. Thank you both for your help- I'm not sure I could have handled that alone.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Scout Reynauld" + } + }, + { + "fileOverride": "recoverthepast-tasim-17", + "lineInfo": { + "dialogue": "Hey, it was nothing. That's what I'm here for. So, soldier. You said there was a doctor restoring peoples' memories?", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-16", + "lineInfo": { + "dialogue": "We did come to an agreement before this combat, yes. I'll follow you to the doctor.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Scout Reynauld" + } + }, + { + "fileOverride": "recoverthepast-tasim-18", + "lineInfo": { + "dialogue": "Same here! I'm definitely curious to see what I've forgotten. Let's go, then.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Tasim" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "recoverthepast-drpicard-25", + "lineInfo": { + "dialogue": "Ah, assistant! I see you've done better than expected and brought with you two whole test subjects instead of one!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-26", + "lineInfo": { + "dialogue": "Now, now, come on. Which of you will be viewing your memories first?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-17", + "lineInfo": { + "dialogue": "I suppose that would be me.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Scout Reynauld" + } + }, + { + "fileOverride": "recoverthepast-drpicard-27", + "lineInfo": { + "dialogue": "Excellent. Now, just step right up over here! Look directly into the orb, and concentrate on remembering.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-28", + "lineInfo": { + "dialogue": "Alright... Very quickly, I just need to activate this... cast a spell here... and...", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-18", + "lineInfo": { + "dialogue": "...I don't feel anythi-", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Scout Reynauld" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "recoverthepast-caid-27", + "lineInfo": { + "dialogue": "H-huh? Hey, who's there? Why are you knocking at this hour-", + "line": { + "current": 1, + "max": 15 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-28", + "lineInfo": { + "dialogue": "...Oh. It's you.", + "line": { + "current": 2, + "max": 15 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-19", + "lineInfo": { + "dialogue": "Yes, it's me. Mind if I step inside?", + "line": { + "current": 3, + "max": 15 + }, + "npc": "Reynauld" + } + }, + { + "fileOverride": "recoverthepast-caid-29", + "lineInfo": { + "dialogue": "N-no, of course not- Uh. It would have been nice if, you know, you warned me you would be coming!", + "line": { + "current": 4, + "max": 15 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-20", + "lineInfo": { + "dialogue": "You know that isn't how this works. Now, where are the goods?", + "line": { + "current": 5, + "max": 15 + }, + "npc": "Reynauld" + } + }, + { + "fileOverride": "recoverthepast-caid-30", + "lineInfo": { + "dialogue": "Right... always straight to business with you. Never, \"oh, how was your week?\" Always just-...", + "line": { + "current": 6, + "max": 15 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-31", + "lineInfo": { + "dialogue": "Fine. It's up and over here.", + "line": { + "current": 7, + "max": 15 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-32", + "lineInfo": { + "dialogue": "I salvaged some parts from... uh, one of the nearby factories. I hope it's-... it's probably what you need.", + "line": { + "current": 8, + "max": 15 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-21", + "lineInfo": { + "dialogue": "...Hm. One of the factories, you say? And you're sure you weren't spotted doing it? If I were caught speaking to a known criminal, you know the consequences for both of us.", + "line": { + "current": 9, + "max": 15 + }, + "npc": "Reynauld" + } + }, + { + "fileOverride": "recoverthepast-caid-33", + "lineInfo": { + "dialogue": "N-no. I wasn't spotted. I, uh... I took precautions. Went in at night. You know.", + "line": { + "current": 10, + "max": 15 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-22", + "lineInfo": { + "dialogue": "Hmph.", + "line": { + "current": 11, + "max": 15 + }, + "npc": "Reynauld" + } + }, + { + "fileOverride": "recoverthepast-caid-34", + "lineInfo": { + "dialogue": "S-so... is that enough? I've gotten you what you asked for.", + "line": { + "current": 12, + "max": 15 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-23", + "lineInfo": { + "dialogue": "Well... it is that, yes. But, Caid, you know the risk I take every time I come out here to speak with you. I'll need more than just the bare minimum to guarantee your safety.", + "line": { + "current": 13, + "max": 15 + }, + "npc": "Reynauld" + } + }, + { + "fileOverride": "recoverthepast-caid-35", + "lineInfo": { + "dialogue": "I- hmph. Okay, okay, fine, I'll- I'll add in some emeralds. To sweeten the deal.", + "line": { + "current": 14, + "max": 15 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-24", + "lineInfo": { + "dialogue": "Excellent. A pleasure doing business, as always. I'll be back in a few weeks.", + "line": { + "current": 15, + "max": 15 + }, + "npc": "Reynauld" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "recoverthepast-scoutreynauld-25", + "lineInfo": { + "dialogue": "Sir- you requested my presence?", + "line": { + "current": 1, + "max": 13 + }, + "npc": "Reynauld" + } + }, + { + "fileOverride": "recoverthepast-royalcaptain-6", + "lineInfo": { + "dialogue": "Ah, Reynauld. Good to see you. Come in, come in, take a seat.", + "line": { + "current": 2, + "max": 13 + }, + "npc": "Royal Captain" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-26", + "lineInfo": { + "dialogue": "Might I ask what this meeting is for, sir?", + "line": { + "current": 3, + "max": 13 + }, + "npc": "Reynauld" + } + }, + { + "fileOverride": "recoverthepast-royalcaptain-7", + "lineInfo": { + "dialogue": "Oh, nothing too special. I just wanted to have a quick chat about your performance.", + "line": { + "current": 4, + "max": 13 + }, + "npc": "Royal Captain" + } + }, + { + "fileOverride": "recoverthepast-royalcaptain-8", + "lineInfo": { + "dialogue": "You understand that those of us who serve Her Majesty in such well regarded positions have a certain... strict code of honor we must follow, yes?", + "line": { + "current": 5, + "max": 13 + }, + "npc": "Royal Captain" + } + }, + { + "fileOverride": "recoverthepast-royalcaptain-9", + "lineInfo": { + "dialogue": "Otherwise, how could we be certain our ranks are pure of any misdeeds? We must set an example for the people of our great province.", + "line": { + "current": 6, + "max": 13 + }, + "npc": "Royal Captain" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-27", + "lineInfo": { + "dialogue": "I- yes, sir, I do.", + "line": { + "current": 7, + "max": 13 + }, + "npc": "Reynauld" + } + }, + { + "fileOverride": "recoverthepast-royalcaptain-10", + "lineInfo": { + "dialogue": "Now, what do you think might happen if one of our own happened to... bend, or break that code of honor? What sort of a precedent would that set?", + "line": { + "current": 8, + "max": 13 + }, + "npc": "Royal Captain" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-28", + "lineInfo": { + "dialogue": "Captain, I-", + "line": { + "current": 9, + "max": 13 + }, + "npc": "Reynauld" + } + }, + { + "fileOverride": "recoverthepast-royalcaptain-11", + "lineInfo": { + "dialogue": "It is with no great pleasure that I inform you that you, Reynauld, are to be stripped of your rank and arrested under charges of dishonor and conspiracy against the Queen.", + "line": { + "current": 10, + "max": 13 + }, + "npc": "Royal Captain" + } + }, + { + "fileOverride": "recoverthepast-royalcaptain-12", + "lineInfo": { + "dialogue": "Your accomplice, the supplier, was caught the other day. I'm told he spent very little time grappling with the thought before choosing to spill your secrets.", + "line": { + "current": 11, + "max": 13 + }, + "npc": "Royal Captain" + } + }, + { + "fileOverride": "recoverthepast-royalcaptain-13", + "lineInfo": { + "dialogue": "There is no place for your sort in our ranks, Reynauld. A shame it had to come to this.", + "line": { + "current": 12, + "max": 13 + }, + "npc": "Royal Captain" + } + }, + { + "fileOverride": "recoverthepast-drpicard-29", + "lineInfo": { + "dialogue": "Assistant! Snap out of it! There's more to discuss.", + "line": { + "current": 13, + "max": 13 + }, + "npc": "Dr. Picard" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "recoverthepast-tasim-19", + "lineInfo": { + "dialogue": "...so, what, you haven't tested any of this before now? What if this magic is dangerous? With how Reynauld reacted, I'm convinced it even might-", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-drpicard-30", + "lineInfo": { + "dialogue": "Now, now, calm yourself. Just because I didn't do any proper tests before this doesn't mean it isn't safe! I've done the calculations! They all work out fine!", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-tasim-20", + "lineInfo": { + "dialogue": "...Oh, soldier, you're back. That was a little intense, wasn't it?", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-drpicard-31", + "lineInfo": { + "dialogue": "Yes, yes, very intense, whatever- we still weren't able to see what comes next! I swear, I was able to see more when I looked at my own memories! It's ridiculous!", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-32", + "lineInfo": { + "dialogue": "Hmph. Maybe it just needs more power... If I increase the amount of mana I put into the spell, then-", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-tasim-21", + "lineInfo": { + "dialogue": "Hold on. You want to put more magic into this, when it's already unstable?", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-drpicard-33", + "lineInfo": { + "dialogue": "Yes, fine, I understand you've taken issue with my methodology. But it works! This has worked thrice now!", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-34", + "lineInfo": { + "dialogue": "Don't you want to know what your life was like before? Even if it's not what you want to see, isn't it better to know?", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-tasim-22", + "lineInfo": { + "dialogue": "...Fine. We can look at my memories. I don't know that I necessarily agree... but alright.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-drpicard-35", + "lineInfo": { + "dialogue": "Excellent, I'm glad to hear that! Now. Activating in three... two... one... go!", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Dr. Picard" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "recoverthepast-royalcaptain-14", + "lineInfo": { + "dialogue": "All hands on deck! Arrest that insurgent!", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Royal Captain" + } + }, + { + "fileOverride": "recoverthepast-tasim-23", + "lineInfo": { + "dialogue": "Huh?! What's going-", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-royalcaptain-15", + "lineInfo": { + "dialogue": "Grr... He couldn't have gotten far. All of you, search the city! Leave no corner unturned! Don't let him get away!", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Royal Captain" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "recoverthepast-tasim-24", + "lineInfo": { + "dialogue": "I- oh, this is bad... What can I-...", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-tasim-25", + "lineInfo": { + "dialogue": "...Damn it. Damn it all. I can't just let the man bleed out, even if he's-...", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Tasim" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "recoverthepast-tasim-26", + "lineInfo": { + "dialogue": "It's fine, you'll be fine... I know what to do, even if I really shouldn't...", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-aledar-1", + "lineInfo": { + "dialogue": "G-gah! Wh-where am I? Who are you? I need to get-", + "line": { + "current": 8, + "max": 12 + }, + "npc": "???" + } + }, + { + "fileOverride": "recoverthepast-aledar-2", + "lineInfo": { + "dialogue": "Oh. You're- you're cursed.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "recoverthepast-tasim-27", + "lineInfo": { + "dialogue": "I-", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-royalsoldier-1", + "lineInfo": { + "dialogue": "He's in here! And he has an accomplice! Arrest them both!", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Royal Soldier" + }, + "settings": { + "falloff": 80 + } + }, + { + "fileOverride": "recoverthepast-drpicard-36", + "lineInfo": { + "dialogue": "My magic is struggling to keep hold... but it's clear there's more to see! Increasing power...", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Dr. Picard" + }, + "settings": { + "followPlayer": true + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "recoverthepast-aledar-3", + "lineInfo": { + "dialogue": "...You shouldn't have gotten involved, you know.", + "line": { + "current": 1, + "max": 25 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "recoverthepast-tasim-28", + "lineInfo": { + "dialogue": "So, what? I should have just let you bleed out in my home? Don't be ridiculous.", + "line": { + "current": 2, + "max": 25 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-aledar-4", + "lineInfo": { + "dialogue": "Yes! You should have! Because now, not only have I been arrested for crimes against the crown, but you've also been outed as one of the cursed. Wouldn't have happened if you had just... stood by.", + "line": { + "current": 3, + "max": 25 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "recoverthepast-tasim-29", + "lineInfo": { + "dialogue": "...It was the right thing to do. I couldn't just stand by when there was something I could do to help.", + "line": { + "current": 4, + "max": 25 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-aledar-5", + "lineInfo": { + "dialogue": "Well, a lot of good that's done us. You know no one gets out of here, right? When they take you, you're never heard from again! So. That's where we're at.", + "line": { + "current": 5, + "max": 25 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "recoverthepast-tasim-30", + "lineInfo": { + "dialogue": "I-...", + "line": { + "current": 6, + "max": 25 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-royalsoldier-2", + "lineInfo": { + "dialogue": "Tasim. It's your time. Follow me.", + "line": { + "current": 7, + "max": 25 + }, + "npc": "Royal Soldier" + } + }, + { + "fileOverride": "recoverthepast-aledar-6", + "lineInfo": { + "dialogue": "Good luck out there, Tasim. You'll need it.", + "line": { + "current": 8, + "max": 25 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "recoverthepast-royalinquisitor-1", + "lineInfo": { + "dialogue": "Ahem. We're ready for the process. Prepare the Adjustor.", + "line": { + "current": 9, + "max": 25 + }, + "npc": "Royal Inquisitor" + } + }, + { + "fileOverride": "recoverthepast-tasim-31", + "lineInfo": { + "dialogue": "The- the what? What are you going to do to-", + "line": { + "current": 10, + "max": 25 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-royalinquisitor-2", + "lineInfo": { + "dialogue": "Silence. Before we begin, I want to make one thing clear. We do not need your ilk in Fruma. We do not want your ilk in Fruma.", + "line": { + "current": 11, + "max": 25 + }, + "npc": "Royal Inquisitor" + } + }, + { + "fileOverride": "recoverthepast-royalinquisitor-3", + "lineInfo": { + "dialogue": "What we will do with you today is a kindness, a mercy. If the world were to have its way, you would be far worse off. Remember that as we continue.", + "line": { + "current": 12, + "max": 25 + }, + "npc": "Royal Inquisitor" + } + }, + { + "fileOverride": "recoverthepast-royalinquisitor-4", + "lineInfo": { + "dialogue": "Now. Let us begin.", + "line": { + "current": 13, + "max": 25 + }, + "npc": "Royal Inquisitor" + } + }, + { + "fileOverride": "recoverthepast-royalinquisitor-5", + "lineInfo": { + "dialogue": "You are a new recruit, being sent to the Wynn Province to fight in their war. You enlisted because you thought your unique... talents... would be useful.", + "line": { + "current": 14, + "max": 25 + }, + "npc": "Royal Inquisitor" + } + }, + { + "fileOverride": "recoverthepast-royalinquisitor-6", + "lineInfo": { + "dialogue": "Fruma is nothing but a speck in your history. A fact set in stone, with details lost to the hypothetical past. You think of it fondly, but remember nothing.", + "line": { + "current": 15, + "max": 25 + }, + "npc": "Royal Inquisitor" + } + }, + { + "fileOverride": "recoverthepast-royalinquisitor-7", + "lineInfo": { + "dialogue": "You will fight in their war. You will live for it, you will die for it. You will be of Wynn forever, and Fruma will be glad to be rid of you.", + "line": { + "current": 16, + "max": 25 + }, + "npc": "Royal Inquisitor" + } + }, + { + "fileOverride": "recoverthepast-royalinquisitor-8", + "lineInfo": { + "dialogue": "Understood?", + "line": { + "current": 17, + "max": 25 + }, + "npc": "Royal Inquisitor" + } + }, + { + "fileOverride": "recoverthepast-tasim-32", + "lineInfo": { + "dialogue": "I-...", + "line": { + "current": 18, + "max": 25 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-royalinquisitor-9", + "lineInfo": { + "dialogue": "Must I repeat myself? Do you understand?", + "line": { + "current": 19, + "max": 25 + }, + "npc": "Royal Inquisitor" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "recoverthepast-royalinquisitor-10", + "lineInfo": { + "dialogue": "I will ask once more. Is your directive understood?", + "line": { + "current": 21, + "max": 25 + }, + "npc": "Royal Inquisitor" + } + }, + { + "fileOverride": "recoverthepast-tasim-33", + "lineInfo": { + "dialogue": "...it is understood.", + "line": { + "current": 22, + "max": 25 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-royalinquisitor-11", + "lineInfo": { + "dialogue": "Wonderful. Take this one to the caravan. It looks like we'll be able to fit two more for today's batch.", + "line": { + "current": 23, + "max": 25 + }, + "npc": "Royal Inquisitor" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "recoverthepast-royalinquisitor-12", + "lineInfo": { + "dialogue": "Now what might you be...?", + "line": { + "current": 25, + "max": 25 + }, + "npc": "Royal Inquisitor" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "recoverthepast-drpicard-37", + "lineInfo": { + "dialogue": "........ant.......", + "line": { + "current": 1, + "max": 5 + }, + "npc": "???" + } + }, + { + "fileOverride": "recoverthepast-drpicard-38", + "lineInfo": { + "dialogue": "......istant.....", + "line": { + "current": 2, + "max": 5 + }, + "npc": "???" + } + }, + { + "fileOverride": "recoverthepast-drpicard-39", + "lineInfo": { + "dialogue": "......assistant!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "???" + } + }, + { + "fileOverride": "recoverthepast-drpicard-40", + "lineInfo": { + "dialogue": "Assistant! Snap out of it! You've gone in too deep, the memory is sucking you in!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-41", + "lineInfo": { + "dialogue": "Find an exit, now, or you'll be trapped forever with no chance of escape! Quickly! GO!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Dr. Picard" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "recoverthepast-drpicard-42", + "lineInfo": { + "dialogue": "Good grief- there you are! Do you understand how dangerous that was?!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-43", + "lineInfo": { + "dialogue": "What do you think happens to me if one of my assistants gets trapped in their memories forever! Nothing good!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-44", + "lineInfo": { + "dialogue": "...Fine, fine. It did give us more information. Don't do it again, though! Come on, come over here, we have much to discuss.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Dr. Picard" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "recoverthepast-drpicard-45", + "lineInfo": { + "dialogue": "...Hmph. I'll admit, I'm-... I'm not sure what to do with this information.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-46", + "lineInfo": { + "dialogue": "The memory restorification orb worked about as well as I could expect for a single use... but, good grief, that was upsetting to watch.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-47", + "lineInfo": { + "dialogue": "It stands to reason both Caid and Reynauld also experienced this... and my magic couldn't break through that wall...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-48", + "lineInfo": { + "dialogue": "Is this what they're doing to their criminals out there, in Fruma? Casting them out to fight in Wynn's war?", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-49", + "lineInfo": { + "dialogue": "...I'll have to think on how much I want to delve into memories. In any case! At the very start of this, I promised you we could view your memories.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-50", + "lineInfo": { + "dialogue": "The offer still stands, if you'd like to take it. Just step up to the orb, like the others did.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Dr. Picard" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "recoverthepast-tasim-34", + "lineInfo": { + "dialogue": "Didn't the doctor want to talk to you? You should talk to him first.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "recoverthepast-drpicard-51", + "lineInfo": { + "dialogue": "Well? The offer still stands, if you'd like to take it. Just step up to the orb, like the others did.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dr. Picard" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "recoverthepast-drpicard-52", + "lineInfo": { + "dialogue": "H-huh?! The orb! My beautiful memory restorification orb! It's ruined!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-53", + "lineInfo": { + "dialogue": "...Oh, whatever. I have the blueprints stored somewhere around here. I can always make another... but still.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Dr. Picard" + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "recoverthepast-drpicard-54", + "lineInfo": { + "dialogue": "Oh! Oh, right! My apologies, I completely forgot to check in with you! Are you alright?", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-55", + "lineInfo": { + "dialogue": "None of the other test subjects experienced this powerful a reaction... strange. It's almost like we were accessing memories that didn't exist...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-56", + "lineInfo": { + "dialogue": "...Well. Ehm. In any case- I'll need to continue my research. There's more to learn, I'm sure...", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-57", + "lineInfo": { + "dialogue": "As thanks for your help- here, a reward. Ah, also- I believe your friend is just outside the tower. You might want to check in on him.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Dr. Picard" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "recoverthepast-drpicard-58", + "lineInfo": { + "dialogue": "There's much more we don't know about Fruma... and, given what we've seen recently, I suspect not all is well within those walls.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Dr. Picard" + } + }, + { + "fileOverride": "recoverthepast-drpicard-59", + "lineInfo": { + "dialogue": "Might there even be... a war within the Fruman walls? No, no, that's ridiculous. Those memories didn't seem to show the signs of one...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Dr. Picard" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "recoverthepast-tasim-35", + "lineInfo": { + "dialogue": "Cursed. He called me cursed. What does that mean for me..?", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-tasim-36", + "lineInfo": { + "dialogue": "And the Inquisitor... I don't know what to think. All of us- what we thought we knew when we arrived in Wynn... None of it was true.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-tasim-37", + "lineInfo": { + "dialogue": "...Did the two of us really meet through sheer random luck? He was running from something, and... fell straight into my life.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Tasim" + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "recoverthepast-tasim-38", + "lineInfo": { + "dialogue": "I- I need some space to think. To... reflect. Can you-... please don't tell Aledar about any of this.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-tasim-39", + "lineInfo": { + "dialogue": "He doesn't need to know about all of this. He's- he's better off not knowing.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-tasim-40", + "lineInfo": { + "dialogue": "...I'm going to head for the Gavel Province, I think. It's across the ocean, far enough from- from all of this.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-tasim-41", + "lineInfo": { + "dialogue": "When you get stronger, you should go there too. Maybe we'll even run into each other, eventually.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "recoverthepast-tasim-42", + "lineInfo": { + "dialogue": "I guess this is goodbye for now, then. Not forever- but for now. I'll see you around, soldier.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Tasim" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "recoverthepast-tasim-43", + "lineInfo": { + "dialogue": "...I'm just resting here, a little. I'll be on my way soon.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "recoverthepast-caid-36", + "lineInfo": { + "dialogue": "...Oh. Hello. My boat's back to normal, if you haven't noticed.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-37", + "lineInfo": { + "dialogue": "I... can't really bring myself to care, though. Maybe I should just stay here, a while.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-38", + "lineInfo": { + "dialogue": "You know, even though watching my memories was unpleasant, I can't say it wasn't worth it. I've started recovering bits and pieces.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-39", + "lineInfo": { + "dialogue": "I had a sister, back there. We drifted apart a bit, before the end. She didn't really approve of what I was doing.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Caid" + } + }, + { + "fileOverride": "recoverthepast-caid-40", + "lineInfo": { + "dialogue": "...She must still be there, come to think of it. I hope she's doing well.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Caid" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "recoverthepast-scoutreynauld-29", + "lineInfo": { + "dialogue": "Ah. You again.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Scout Reynauld" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-30", + "lineInfo": { + "dialogue": "...I certainly regret following you to that doctor and his damned contraption. Those were things I didn't need to know about myself.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Scout Reynauld" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-31", + "lineInfo": { + "dialogue": "The more I think about it, the more certain I am that I don't wish to remember anymore.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Scout Reynauld" + } + }, + { + "fileOverride": "recoverthepast-scoutreynauld-32", + "lineInfo": { + "dialogue": "...It does make me appreciate my new life in Wynn more, though. I'd like to do my best to not fall back into those habits.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Scout Reynauld" + } + } + ] + } + } + }, + "Redbeard's Booty": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-marston-1", + "lineInfo": { + "dialogue": "Ah, ahoy matey! Are ye here to get a glimpse of ol' Redbeard's sunken galleon as well?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Marston" + } + }, + { + "fileOverride": "redbeardsbooty-marston-2", + "lineInfo": { + "dialogue": "A fine ship it once was, aye? Accordin' to the stories, it sank in one o' the greatest sea battles in history! The cap'n sank beneath the waves, ne'er to be seen again!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Marston" + } + }, + { + "fileOverride": "redbeardsbooty-marston-3", + "lineInfo": { + "dialogue": "...Say. Have ye ever wanted to go on a real treasure hunt? Ye look like someone with an eye for treasure, aye?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Marston" + } + }, + { + "fileOverride": "redbeardsbooty-marston-4", + "lineInfo": { + "dialogue": "Good for ye then! I bought meself a real treasure map on Pirate Cove, a fine deal if ye ask me. And, if the jack wasn't fibbing, it leads to the feared Redbeard's real treasure!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Marston" + } + }, + { + "fileOverride": "redbeardsbooty-marston-5", + "lineInfo": { + "dialogue": "I ventured 'round, spied some fine jacks at the island, and I collected a crew to join me on a grand, fantastic voyage!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Marston" + } + }, + { + "fileOverride": "redbeardsbooty-marston-6", + "lineInfo": { + "dialogue": "O' course, there always be room for another! Ye joinin'? We could use another hand.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Marston" + } + }, + { + "fileOverride": "redbeardsbooty-marston-7", + "lineInfo": { + "dialogue": "Aye! Let's find the booty and bring back some doubloons! Here be that map I snagged. Swim or whatever ye landlubbers do to get to Pirate Cove. It'll be the first house to the right when ye arrive.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Marston" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-marston-8", + "lineInfo": { + "dialogue": "Do ye remember where to go?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Marston" + } + }, + { + "fileOverride": "redbeardsbooty-marston-9", + "lineInfo": { + "dialogue": "No? The crew be loiterin' at Pirate Cove. I'll be along soon, don't ye worry!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Marston" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-martim-1", + "lineInfo": { + "dialogue": "And that be when ye will...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Martim" + } + }, + { + "fileOverride": "redbeardsbooty-karkun-1", + "lineInfo": { + "dialogue": "Cor lad...ye don' look like a pirate ta me, and I be but a young lass!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Karkun" + } + }, + { + "fileOverride": "redbeardsbooty-martim-2", + "lineInfo": { + "dialogue": "'s right, bucko. Who be ye, bargin' into our home in yer fancy armour 'n whatnot?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Martim" + } + }, + { + "fileOverride": "redbeardsbooty-argus-1", + "lineInfo": { + "dialogue": "Ah, ye be accompanyin' Marston, eh? Well if ye insist on that, where be the man 'himself?", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Argus" + } + }, + { + "fileOverride": "redbeardsbooty-argus-2", + "lineInfo": { + "dialogue": "Comin' later? Hm. Well, more hands always be helpful. Let us go down to me ship, the Black Ring.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Argus" + } + }, + { + "fileOverride": "redbeardsbooty-martim-3", + "lineInfo": { + "dialogue": "So he told ye about the plan? We'll bathe in doubloons when we get back! Ah, me fair lass will be so happy.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Martim" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-karkun-2", + "lineInfo": { + "dialogue": "Aha, quick on yer feet, lad! Ye got 'ere before us!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Karkun" + } + }, + { + "fileOverride": "redbeardsbooty-argus-3", + "lineInfo": { + "dialogue": "No trace o' Marston yet?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Argus" + } + }, + { + "fileOverride": "redbeardsbooty-martim-4", + "lineInfo": { + "dialogue": "How's about we wait up fer him? He's the one who's givin us the opportunity fer this hunt, anyways.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Martim" + } + }, + { + "fileOverride": "redbeardsbooty-argus-4", + "lineInfo": { + "dialogue": "I be getting impatient... The whole crew is 'ere, 'cept fer him!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Argus" + } + }, + { + "fileOverride": "redbeardsbooty-karkun-3", + "lineInfo": { + "dialogue": "Argh! Where be our mate? It be getting dark out! We will have to leave Marston at land.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Karkun" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-karkun-4", + "lineInfo": { + "dialogue": "Do ya have the map Marston bought?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Karkun" + } + }, + { + "fileOverride": "redbeardsbooty-martim-5", + "lineInfo": { + "dialogue": "Let us take a looksie at the map and see where to go.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Martim" + } + }, + { + "fileOverride": "redbeardsbooty-argus-5", + "lineInfo": { + "dialogue": "It seems like one of these islands have the treasure... A'ight, yer in charge, landlubber! Set us on a course fer an island!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Argus" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-karkun-5", + "lineInfo": { + "dialogue": "Ahoy, this must be the booty. Fret not, Argus is keepin' the ship prepared so we can leave.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Karkun" + } + }, + { + "fileOverride": "redbeardsbooty-martim-6", + "lineInfo": { + "dialogue": "A'ight, let's us dig it up, jacks!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Martim" + } + }, + { + "fileOverride": "redbeardsbooty-karkun-6", + "lineInfo": { + "dialogue": "Aha, I see somethin' gleaming in there! Methinks we hit gold, lads.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Karkun" + } + }, + { + "fileOverride": "redbeardsbooty-karkun-7", + "lineInfo": { + "dialogue": "Now Martim, knock the lubber out.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Karkun" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-karkun-8", + "lineInfo": { + "dialogue": "What? Another clue! This be just a wild grook hunt, where be the real booty?! No one ever got rich off a heap o' keys!! Maybe this 'ere jewel attached will sell...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Karkun" + } + }, + { + "fileOverride": "redbeardsbooty-martim-7", + "lineInfo": { + "dialogue": "Wait, there be a clue on the key! Presented to the ruined Galleon, a true path forward will arise.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Martim" + } + }, + { + "fileOverride": "redbeardsbooty-martim-8", + "lineInfo": { + "dialogue": "Garh...I be losin' my patience. Argus arrived, let's ditch the lubber before they awake, hm? This island be hidden by magic, ain't no way they're gettin' found.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Martim" + } + }, + { + "fileOverride": "redbeardsbooty-karkun-9", + "lineInfo": { + "dialogue": "Arright! This key... We might be able to bring Redbeard 'imself back to life... He'll strike terror in the seas again, and we will be 'is crew!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Karkun" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-marston-10", + "lineInfo": { + "dialogue": "Can't say I expected all that... Those dogs are quick, eh?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Marston" + } + }, + { + "fileOverride": "redbeardsbooty-marston-11", + "lineInfo": { + "dialogue": "Fer a landlubber, ye sure are quick. When I got ta Pirate Cove, ye were already but a speck on the horizon.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Marston" + } + }, + { + "fileOverride": "redbeardsbooty-marston-12", + "lineInfo": { + "dialogue": "Seems they found a way ta open ol' Redbeard's graveyard... Speakin' of, what'n the name o' Davy Jones' Locket happened out there?!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Marston" + } + }, + { + "fileOverride": "redbeardsbooty-marston-13", + "lineInfo": { + "dialogue": "Ye look a bit bruised! Reckon ye ran aground o' trouble with 'em too, eh?", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Marston" + } + }, + { + "fileOverride": "redbeardsbooty-marston-14", + "lineInfo": { + "dialogue": "Well, lad! Methinks ye oughta go in after 'em! We may be a rowdy lot, but a mutiny's somethin' ye don't tolerate.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Marston" + } + }, + { + "fileOverride": "redbeardsbooty-marston-15", + "lineInfo": { + "dialogue": "They don't deserve that treasure, lad! It ain't be mine either, since I missed ye. That gold be yours fer the takin...so take it!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Marston" + } + }, + { + "fileOverride": "redbeardsbooty-marston-16", + "lineInfo": { + "dialogue": "Speakin' of...I ain't got much a penny ta my name, but I found this fish while ye were gone. I hear it sells for a decent haul, so here.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Marston" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-marston-17", + "lineInfo": { + "dialogue": "It be disappointin' that I wasn't able to accompany ye. Mighta been able to thump the dogs together, eh?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Marston" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-martim-9", + "lineInfo": { + "dialogue": "Eh heh... We've done it, mateys! Treasure an' glory on the seas be ours!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Martim" + } + }, + { + "fileOverride": "redbeardsbooty-argus-6", + "lineInfo": { + "dialogue": "Arrgh! An' all we got to do is guard the captain's hoard fer a while! Let's get goin'!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Argus" + } + }, + { + "fileOverride": "redbeardsbooty-karkun-10", + "lineInfo": { + "dialogue": "Huh?! You again! When will ye get the hint, lubber? Ye ain't welcome 'ere!! Martim! Get th' gate shut!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Karkun" + } + }, + { + "fileOverride": "redbeardsbooty-martim-10", + "lineInfo": { + "dialogue": "No way through without th' keys... We'll be waitin' for ye! If ye can make it past th' rest, heh...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Martim" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-redbeard-1", + "lineInfo": { + "dialogue": "Arrgh! So me new recruits weren't wrong, eh?! A stowaway! On me ship! This treasure be mine, ye hear?!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + }, + { + "fileOverride": "redbeardsbooty-redbeard-2", + "lineInfo": { + "dialogue": "I've seen Landlubbers like ye come an' go, an' not a single one 'as bested me in combat! An' ye won't be any different, stowaway!!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-redbeard-3", + "lineInfo": { + "dialogue": "Let down the gates, me mateys! Don't let tha stowaway through... OR AH'LL SEND YE BACK TO THA' MUCK YE ROSE FROM!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-redbeard-4", + "lineInfo": { + "dialogue": "Huh?! Which of ye rats let the Landlubber through to tha key?! DON'T LET THA STOWAWAY GET BACK TO ME SHIP!!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-redbeard-5", + "lineInfo": { + "dialogue": "YER ALL WORTHLESS!! ENABLE ME TRAP, BLOW THE STOWAWAY TO BITS!!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-redbeard-6", + "lineInfo": { + "dialogue": "Ye've dodged me crew fer far too long, stowaway... DODGE THIS THEN, EH?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Redbeard" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-redbeard-7", + "lineInfo": { + "dialogue": "Call down th' cannons, mateys! DEFEND ME TREASURE!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Redbeard" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-marston-18", + "lineInfo": { + "dialogue": "Ah, ahoy matey! Are ye here to get a glimpse of ol' Redbeard's sunken galleon as well? A fine ship it once was, aye?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Marston" + } + }, + { + "fileOverride": "redbeardsbooty-marston-19", + "lineInfo": { + "dialogue": "Lots o' treasure attached to that name, ye know? If ye were Level 61, maybe ye'd be able to join me on a fine treasure hunt.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Marston" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-argus-7", + "lineInfo": { + "dialogue": "It's you... You're the one who doomed us. And for what?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Argus" + } + }, + { + "fileOverride": "redbeardsbooty-argus-8", + "lineInfo": { + "dialogue": "Back then, you didn't feel an ounce of remorse, did you?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Argus" + } + }, + { + "fileOverride": "redbeardsbooty-martim-11", + "lineInfo": { + "dialogue": "If you're that willing to kill... Then just try it. Get 'em!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Martim" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-corruptedredbeard-1", + "lineInfo": { + "dialogue": "Yarrr! They return for more plunderin'! I've been missin' this!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Corrupted Redbeard" + } + }, + { + "fileOverride": "redbeardsbooty-corruptedredbeard-2", + "lineInfo": { + "dialogue": "Hav' at ya, soldier, see if ya can do anythin' against THIS!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Corrupted Redbeard" + } + }, + { + "fileOverride": "redbeardsbooty-corruptedredbeard-3", + "lineInfo": { + "dialogue": "Behol' me crew!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Corrupted Redbeard" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-corruptedredbeard-4", + "lineInfo": { + "dialogue": "Blimey! Seems ya've gotten p'etty far!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Corrupted Redbeard" + } + }, + { + "fileOverride": "redbeardsbooty-corruptedredbeard-5", + "lineInfo": { + "dialogue": "Why don' you go say hello to ya mateys?!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Corrupted Redbeard" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "redbeardsbooty-corruptedredbeard-6", + "lineInfo": { + "dialogue": "Alrighty, Landlubber! I'll battle ye meself!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Redbeard" + } + } + ] + } + } + }, + "Reincarnation": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "reincarnation-batelu-1", + "lineInfo": { + "dialogue": "Hello adventurer! I see you want to solve the mystery of Bob's tomb also? Glad to meet you.", + "line": { + "current": 1, + "max": 13 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-2", + "lineInfo": { + "dialogue": "My name is Batelu. Lately, I've been studying these strange symbols on the walls.", + "line": { + "current": 2, + "max": 13 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-3", + "lineInfo": { + "dialogue": "It's about Bob. Hopefully you do not believe the stories of his death, right? Bob couldn't have died so easily. Not to something so mundane as a wolf.", + "line": { + "current": 3, + "max": 13 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-4", + "lineInfo": { + "dialogue": "He wasn't only strong, he was absolutely un-killable, a master in almost every skill.", + "line": { + "current": 4, + "max": 13 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-5", + "lineInfo": { + "dialogue": "I believe he knew he was about to die. How? What of? Nobody knows, but he left this world prepared.", + "line": { + "current": 5, + "max": 13 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-6", + "lineInfo": { + "dialogue": "You see, it says here Bob had three loyal animals. Before dying, he scattered them across the ocean.", + "line": { + "current": 6, + "max": 13 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-7", + "lineInfo": { + "dialogue": "I think those animals are the key to accessing his real tomb...", + "line": { + "current": 7, + "max": 13 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-8", + "lineInfo": { + "dialogue": "You see that little gap right there? It's the entrance...", + "line": { + "current": 8, + "max": 13 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-9", + "lineInfo": { + "dialogue": "Unfortunately, nobody was able to remove the spell blocking it.", + "line": { + "current": 9, + "max": 13 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-10", + "lineInfo": { + "dialogue": "But I can. I know how to open the passage to Bob. This is where the animals will come in useful...", + "line": { + "current": 10, + "max": 13 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-11", + "lineInfo": { + "dialogue": "I believe Bob did something to those animals. I think if we could reunite them in some way, we could open the passage.", + "line": { + "current": 11, + "max": 13 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-12", + "lineInfo": { + "dialogue": "Bring me [1 Cluckles' Favourite Feather], [1 Baab's Wool] & [1 Mooington's Skin] if you can find them.", + "line": { + "current": 12, + "max": 13 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-13", + "lineInfo": { + "dialogue": "I am sure that together, we can open the passage. Good luck.", + "line": { + "current": 13, + "max": 13 + }, + "npc": "Batelu" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "reincarnation-batelu-14", + "lineInfo": { + "dialogue": "Wonderful! We can now open the passage to the true tomb of Bob...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-15", + "lineInfo": { + "dialogue": "I am not worthy enough to enter it. I did not complete the task of the animals, I merely read it. You shall go alone. Be careful.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Batelu" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "reincarnation-bob-1", + "lineInfo": { + "dialogue": "I am Bob, master of the arts of Wynn.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Bob" + } + }, + { + "fileOverride": "reincarnation-bob-2", + "lineInfo": { + "dialogue": "Let me explain why you are here.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Bob" + } + }, + { + "fileOverride": "reincarnation-bob-3", + "lineInfo": { + "dialogue": "My animals, were my greatest allies in my travels through the world.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Bob" + } + }, + { + "fileOverride": "reincarnation-bob-4", + "lineInfo": { + "dialogue": "I travelled too far, mined too deep, and of course, challenged what should not be challenged. My time in Wynn was coming to an end.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Bob" + } + }, + { + "fileOverride": "reincarnation-bob-5", + "lineInfo": { + "dialogue": "I knew so, too. But I refused to leave without giving the power i had attained to those worthy of it.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Bob" + } + }, + { + "fileOverride": "reincarnation-bob-6", + "lineInfo": { + "dialogue": "Using what ability I had left to me, I transferred my power to my animals, in three pieces. In the hope that those worthy to harness it will seek them out.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Bob" + } + }, + { + "fileOverride": "reincarnation-bob-7", + "lineInfo": { + "dialogue": "The spell I placed on the door to this realm will only break to the one who collects my power. But it cannot have escaped your notice, you do not have my power.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Bob" + } + }, + { + "fileOverride": "reincarnation-bob-8", + "lineInfo": { + "dialogue": "The truth is, you must pass a test, the ultimate test. Hone your skills you have learnt throughout your travels, and face me. Face me, and earn your place amongst soldiers of Wynn.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Bob" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "4": { + "dialogues": [ + { + "fileOverride": "reincarnation-batelu-16", + "lineInfo": { + "dialogue": "Ah! You have returned! Tell me, what did you find within?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-17", + "lineInfo": { + "dialogue": "...You faced Bob himself in combat? And you triumphed? That's quite remarkable!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-18", + "lineInfo": { + "dialogue": "And he gave you his Seal of Approval... Hm. If that is the case, then there is something I may do for you.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-19", + "lineInfo": { + "dialogue": "Before Bob passed, he left his mythical weapons with a trusted friend. They were, so he said, to be kept for one who would be worthy to wield them...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-20", + "lineInfo": { + "dialogue": "Yes... Yes, I am certain. You have proven yourself worthy. Take this relic, the Stone of Myths, and bring it to the Temple of the Legends.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-21", + "lineInfo": { + "dialogue": "Within, you will find a merchant who will offer you a weapon in exchange for it. I wish you luck with your future travels.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Batelu" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "reincarnation-batelu-22", + "lineInfo": { + "dialogue": "Hi! My name is Batelu, I've been studying those strange symbols on the walls for quite a while now.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-23", + "lineInfo": { + "dialogue": "I've learned a lot about Bob. Unfortunately, I do not think I am the person you are looking for.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Batelu" + } + }, + { + "fileOverride": "reincarnation-batelu-24", + "lineInfo": { + "dialogue": "If you are looking for Bob's corpse, it's under the stairs in the icy chamber. Talk to me when you are level 74, I've got some work for you.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Batelu" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "reincarnation-batelu-25", + "lineInfo": { + "dialogue": "You can't enter there yet!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Batelu" + } + } + ] + } + } + }, + "Rise of the Quartron": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-nasea-1", + "lineInfo": { + "dialogue": "Shipment 3A and 4B, fully accounted for... shipments 5C and 6A...missing 50% of quartz content?!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-2", + "lineInfo": { + "dialogue": "Agh, this is getting worse! There's never been so much loss...whoever this is, they're getting bold...", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-3", + "lineInfo": { + "dialogue": "Ugh, go AWAY! Quit hovering over my shoulder like that- wait, a Human? Since when did you get here?", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-4", + "lineInfo": { + "dialogue": "What, you like listening to the melodious sound of my voice or something? Or do you intend to help out?", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-5", + "lineInfo": { + "dialogue": "Well, I'm flattered either way, and I could certainly use the help. Quartz is going missing from my shipments.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-6", + "lineInfo": { + "dialogue": "Obviously one of the laborers is siphoning it to someplace, and I can't have that happening. So, be a private eye, humie.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-7", + "lineInfo": { + "dialogue": "This is actually pretty dire- quartz has some magicality to it, see. It likes to soak up magic power, which means it can be weaponized.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-8", + "lineInfo": { + "dialogue": "We tend not to use it for weapons since it can overcharge, but that's neither here nor there, is it?", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-9", + "lineInfo": { + "dialogue": "Every siphoned shipment has gone through Dado. Interrogate him! He hangs out past the big red tent, near the house with red flags.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Nasea" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-dado-1", + "lineInfo": { + "dialogue": "Okay, these go to division P, and...look, I'm busy allocating these deliveries to Llevigar. Go pester someone else, okay?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Dado" + } + }, + { + "fileOverride": "riseofthequartron-dado-2", + "lineInfo": { + "dialogue": "...what. You...think I... Pfff... Pffhahaaaah! Ohhh, that's RICH coming from a human of all things!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Dado" + } + }, + { + "fileOverride": "riseofthequartron-dado-3", + "lineInfo": { + "dialogue": "\"Oh, me, the hired gun species that kills for money, will accuse you, a storied worker of seven years, of illegal activity!\" Wow, you HYPOCRITE!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Dado" + } + }, + { + "fileOverride": "riseofthequartron-dado-4", + "lineInfo": { + "dialogue": "I'm hardly even angry about this! But, yeah, you freak. You got the wrong guy, surprise! Your brain workin' right in there?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Dado" + } + }, + { + "fileOverride": "riseofthequartron-dado-5", + "lineInfo": { + "dialogue": "I bet you got some wires crossed in there, huh? Go scuttle on back to town and kill someone's Wybel for pocket change or something.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Dado" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-nasea-10", + "lineInfo": { + "dialogue": "I'm just going to take a wild guess and say that asking him nicely whether he committed theft didn't bring up any answers.", + "line": { + "current": 1, + "max": 16 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-11", + "lineInfo": { + "dialogue": "What, he brushed you off like THAT? Jeez, I knew he was a jerk, but really? That's just uncalled for.", + "line": { + "current": 2, + "max": 16 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-12", + "lineInfo": { + "dialogue": "We have to make him talk...if shipments keep going missing, my contractors are going to look elsewhere!", + "line": { + "current": 3, + "max": 16 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-13", + "lineInfo": { + "dialogue": "We need to prove that he's guilty...wait, you came to ME for ideas? This is why I asked you for help! Am I really back to square one?", + "line": { + "current": 4, + "max": 16 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-lari-1", + "lineInfo": { + "dialogue": "Aah, Nasea!", + "line": { + "current": 5, + "max": 16 + }, + "npc": "???" + } + }, + { + "fileOverride": "riseofthequartron-nasea-14", + "lineInfo": { + "dialogue": "I...what are you doing here, uh...Larry? Were you missing quartz too??", + "line": { + "current": 6, + "max": 16 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-lari-2", + "lineInfo": { + "dialogue": "Ah, it's...Lari. No, the quartz shipment found its way fine...", + "line": { + "current": 7, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "riseofthequartron-lari-3", + "lineInfo": { + "dialogue": "But, there was hardly an effect. Your idea was, unfortunately, a dead end.", + "line": { + "current": 8, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "riseofthequartron-nasea-15", + "lineInfo": { + "dialogue": "Well, I did warn you that it was only an idea. I manage the mine, I don't practice purification magic. Don't pin anything on me for that.", + "line": { + "current": 9, + "max": 16 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-lari-4", + "lineInfo": { + "dialogue": "I did not intend to imply that. Your help was appreciated, fate simply had opposing plans...", + "line": { + "current": 10, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "riseofthequartron-lari-5", + "lineInfo": { + "dialogue": "...is this human a part of your operations, miss?", + "line": { + "current": 11, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "riseofthequartron-nasea-16", + "lineInfo": { + "dialogue": "Well, in a sense. Someone's siphoning quartz, but our suspect wasn't intimidated by the ten tons of armor, so we're at a loss. Any ideas?", + "line": { + "current": 12, + "max": 16 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-lari-6", + "lineInfo": { + "dialogue": "...as a matter of fact, I do have a solution. Elven botany describes a flower that grows decently close by, the \"Tattytale\" flower.", + "line": { + "current": 13, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "riseofthequartron-lari-7", + "lineInfo": { + "dialogue": "It weakens the will of those who catch a whiff of its petals, making them pliable to questions. It's...unpleasant, but if it is needed, I suppose.", + "line": { + "current": 14, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "riseofthequartron-lari-8", + "lineInfo": { + "dialogue": "There is a cave infested with spiders, and covered with webs in the western mountain. It is the only place it grows outside of Aldorei, unfortunately.", + "line": { + "current": 15, + "max": 16 + }, + "npc": "Lari" + } + }, + { + "fileOverride": "riseofthequartron-lari-9", + "lineInfo": { + "dialogue": "Nasea, since it didn't help, I've returned the quartz. I thank you for your help...and I shall bid you both adieu.", + "line": { + "current": 16, + "max": 16 + }, + "npc": "Lari" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-dado-6", + "lineInfo": { + "dialogue": "Hey, everyone's least-favorite attack dog! Here boy! You want the emerald? Go kill all the flies in my house! Come on boy!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Dado" + } + }, + { + "fileOverride": "riseofthequartron-dado-7", + "lineInfo": { + "dialogue": "Aw, flowers. How sweet of you! Sorry, but I don't cave to psychopaths or flattery, hehehee!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Dado" + } + }, + { + "fileOverride": "riseofthequartron-dado-8", + "lineInfo": { + "dialogue": "I...huff... What was THAT for?! Are you offended that I don't like your flo- What? What am I doing with the quartz?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Dado" + } + }, + { + "fileOverride": "riseofthequartron-dado-9", + "lineInfo": { + "dialogue": "Uh, isn't it obvious? I'm working overtime and sending it up to Popo, duh. Where else would I be sending it?", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Dado" + } + }, + { + "fileOverride": "riseofthequartron-dado-10", + "lineInfo": { + "dialogue": "What- Where's Popo sending it? Um...no clue. Whoever it is, they're super rich though. They pay me more than my house is worth every shipment!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Dado" + } + }, + { + "fileOverride": "riseofthequartron-dado-11", + "lineInfo": { + "dialogue": "Not sure why you need to- What? Where's Popo? Uh, he said he'd meet me at the cart track overpass, near the teal flags.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Dado" + } + }, + { + "fileOverride": "riseofthequartron-dado-12", + "lineInfo": { + "dialogue": "This was going to be our first meeting, so I don't know what he looks like, and likewise he's never seen me.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Dado" + } + }, + { + "fileOverride": "riseofthequartron-dado-13", + "lineInfo": { + "dialogue": "...uh. Okay, I have no clue why I told you all of that...um, have you got any more of those flowers though? It was actually really good...", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Dado" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-popo-1", + "lineInfo": { + "dialogue": "Ah, you must- Wait, never mind. I was expecting a visit from someone else.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Popo" + } + }, + { + "fileOverride": "riseofthequartron-popo-2", + "lineInfo": { + "dialogue": "Wait, you're Dado? I guess humans have more brain capacity than orcs after all, hehah!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Popo" + } + }, + { + "fileOverride": "riseofthequartron-popo-3", + "lineInfo": { + "dialogue": "Okay, down to business. I'm gonna look busy to cover for you while you get to the base for briefing. You'll get the details there.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Popo" + } + }, + { + "fileOverride": "riseofthequartron-popo-4", + "lineInfo": { + "dialogue": "You stick out like a sore thumb, but thankfully humans like to get into lots of weird spots, so it won't look too out of place.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Popo" + } + }, + { + "fileOverride": "riseofthequartron-popo-5", + "lineInfo": { + "dialogue": "Use the small rail here, flick the lever. It'll look like you're just...doing what humans do, instead of drawing suspicion.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Popo" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-harnort-1", + "lineInfo": { + "dialogue": "Interesting, a human's been swept up in our plans. Hadn't expected the work force to diversify so fast.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Harnort" + } + }, + { + "fileOverride": "riseofthequartron-harnort-2", + "lineInfo": { + "dialogue": "Time for the rundown, oh I love explaining this! I think you'll find what I have to say quite interesting, yes yes!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Harnort" + } + }, + { + "fileOverride": "riseofthequartron-harnort-3", + "lineInfo": { + "dialogue": "You see, quartz is a powerful magical material- moreso than many know! It can absorb and harness magical energy, but what more? I had to find out!", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Harnort" + } + }, + { + "fileOverride": "riseofthequartron-harnort-4", + "lineInfo": { + "dialogue": "The rubes in my research department got me kicked out for suggesting we further our research. What kind of scientist is scared to make advancements?!", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Harnort" + } + }, + { + "fileOverride": "riseofthequartron-harnort-5", + "lineInfo": { + "dialogue": "But without a board of directors breathing down my neck, my research has led me exactly where I'd hoped, and even more, yes yes!", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Harnort" + } + }, + { + "fileOverride": "riseofthequartron-guard-1", + "lineInfo": { + "dialogue": "Oi. Got a guest taking the secret passage.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Guard" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-dado-14", + "lineInfo": { + "dialogue": "Harnort! I'M Dado! This sicko mugged me for info! They're gonna ruin us both!", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Dado" + } + }, + { + "fileOverride": "riseofthequartron-harnort-6", + "lineInfo": { + "dialogue": "Guards!! GUARDS!! Capture them! Stop them! Tie them up, do something!! Our research can't go to waste, not at this vital point!!", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Harnort" + } + }, + { + "fileOverride": "riseofthequartron-dado-15", + "lineInfo": { + "dialogue": "HA! That's what you get for showing me that amazi- HORRIBLE flower! Outta here!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Dado" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-guard-2", + "lineInfo": { + "dialogue": "Knock 'em down, boys!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "riseofthequartron-guard-3", + "lineInfo": { + "dialogue": "Aah, they're really tough!! Don't let them take down more of my buddies!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "riseofthequartron-guard-4", + "lineInfo": { + "dialogue": "Why are we fighting face-to-face?! They're destroying us!!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Guard" + } + }, + { + "fileOverride": "riseofthequartron-guard-5", + "lineInfo": { + "dialogue": "What the hell are humans made of?! Overwhelm them!! We hardly have any guys left!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Guard" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-harnort-7", + "lineInfo": { + "dialogue": "...so it's come to this then. I knew the names of all those guards. I didn't hurt anyone to meet my goal.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Harnort" + } + }, + { + "fileOverride": "riseofthequartron-harnort-8", + "lineInfo": { + "dialogue": "You...I won't let their sacrifices be in vain! Llevigar needs to see what quartz is truly capable of! I MUST show them.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Harnort" + } + }, + { + "fileOverride": "riseofthequartron-harnort-9", + "lineInfo": { + "dialogue": "My Quartrons are the future! They need to see it! It will have been worth the scheming, and the thieving, and the burnt bridges!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Harnort" + } + }, + { + "fileOverride": "riseofthequartron-harnort-10", + "lineInfo": { + "dialogue": "But you- you couldn't leave well enough alone. You stepped in, and callously threw away a hundred lives to stop the inevitable!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Harnort" + } + }, + { + "fileOverride": "riseofthequartron-harnort-11", + "lineInfo": { + "dialogue": "One life for a hundred is a fair trade!!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Harnort" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-harnort-12", + "lineInfo": { + "dialogue": "N-no! NO! NO, NO! You idiot, you blundering HUMAN! A hundred lives lost in vain to your destructiveness!!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Harnort" + } + }, + { + "fileOverride": "riseofthequartron-harnort-13", + "lineInfo": { + "dialogue": "Why did they ever open the doors?! You all deserve to burn apart! You've ruined everything!!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Harnort" + } + }, + { + "fileOverride": "riseofthequartron-harnort-14", + "lineInfo": { + "dialogue": "The Quartron's energy spike is overloading the lab's quartz! This entire room is going to explode and kill everyone in it! ARE YOU PROUD?!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Harnort" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-harnort-15", + "lineInfo": { + "dialogue": "Aaah! Not responding?! You- You...YOU! You've destroyed the future! MY future! GAVEL'S future!!!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Harnort" + } + }, + { + "fileOverride": "riseofthequartron-harnort-16", + "lineInfo": { + "dialogue": "The futures of a hundred men or more!! You humans deserve to burn in hell for your careless destruction!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Harnort" + } + }, + { + "fileOverride": "riseofthequartron-harnort-17", + "lineInfo": { + "dialogue": "The energy output by the detonations is overcharging the quartz in the walls... This entire lab is a deathtrap now! Do us all a favor- SIT STILL AND DIE ALREADY!!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Harnort" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-harnort-18", + "lineInfo": { + "dialogue": "How did you get back into my lair?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Harnort" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-nasea-17", + "lineInfo": { + "dialogue": "...you've got some serious explaining to do. First you disappear to go get that Tattle flower, or whatever it was.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-18", + "lineInfo": { + "dialogue": "Then Dado ran through here screaming that he was drugged or mugged, and ran off to the east ridge.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-19", + "lineInfo": { + "dialogue": "Then, he came back, asking me if I'd found any more of those flowers, and while he was blabbering the ENTIRE MOUNTAIN SHOOK.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-20", + "lineInfo": { + "dialogue": "So, spill it. I wanted you to figure out where my quartz was going, and you made one of my workers an addict and caused a freaking landslide!!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-21", + "lineInfo": { + "dialogue": "...uh huh. Mhm. ... ...yeah, go on. Uh, okay, I can buy that... ...I'd never believe you if you hadn't given me the proof.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-22", + "lineInfo": { + "dialogue": "A militarized quartz mech...yeesh. That guy sounds like a piece of work. Guess that wasn't really your fault after all.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-23", + "lineInfo": { + "dialogue": "I'll round up the police to get all those guards and them. ...what's with that look? Almost looks like you don't think anyone'll be there. Anyways...", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-24", + "lineInfo": { + "dialogue": "Okay, so I'll cut you a quick deal. I'll pay you now for figuring this out, and if you do just one more thing for me then you'll get something extra.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-25", + "lineInfo": { + "dialogue": "Take the elevator past the yellow flags and go into the private site, you have my permission. I'll meet you up there.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Nasea" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-nasea-26", + "lineInfo": { + "dialogue": "Coming up behind you.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-27", + "lineInfo": { + "dialogue": "This is the newest mining annex, but we've hit a bit of a brick wall. Well...a gravel wall.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-28", + "lineInfo": { + "dialogue": "So, if you can open up this area, you'll get access to the mine and whatever you find in it.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-29", + "lineInfo": { + "dialogue": "You see the gravel wall? See if you can't dig through this for us.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-30", + "lineInfo": { + "dialogue": "Hm! Clean work there. Pretty impressive, I'd say. So, as promised, you have your mine access, and...", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-31", + "lineInfo": { + "dialogue": "...the core you showed me folded up into a ring. Really high-tech stuff, but I can't use it, so you can take it. Just head inside now.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Nasea" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-nasea-32", + "lineInfo": { + "dialogue": "I wonder if that huge detonation is going to interfere with any more of our projects...it's annoying, but nothing for it.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Nasea" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-nasea-33", + "lineInfo": { + "dialogue": "Oh no, these shipments don't add up at all.. Huh? Who are you? Go away, you won't be able to help me until you are combat level 49 and mining level 15.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Nasea" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-nasea-34", + "lineInfo": { + "dialogue": "Come back when you have a solid lead on the missing quartz.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Nasea" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "riseofthequartron-nasea-35", + "lineInfo": { + "dialogue": "I have to be off though, lots of work to get to. Hm. It looks like the core you showed me folded up into a ring. Really high-tech stuff, but I can't use it, so you can take it.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Nasea" + } + }, + { + "fileOverride": "riseofthequartron-nasea-36", + "lineInfo": { + "dialogue": "Suppose that's all, then! Here's your payment. I'll see you around.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Nasea" + } + } + ] + } + } + }, + "Royal Trials": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "royaltrials-skyraiderguard-1", + "lineInfo": { + "dialogue": "Back off! No'ne enters 'til the pirate queen is chosen. What's a landwalker like ye doin' here?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Skyraider Guard" + } + }, + { + "fileOverride": "royaltrials-skyraiderguard-2", + "lineInfo": { + "dialogue": "Participate? Are ye crazy? Ain't no way a landlubber is wearing the crown.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Skyraider Guard" + } + }, + { + "fileOverride": "royaltrials-skyraiderguard-3", + "lineInfo": { + "dialogue": "Off with ya now! Before I call the gals to gut you. And dun' go wandering round chatting to any skyraiders!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Skyraider Guard" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "royaltrials-skyraiderguard-4", + "lineInfo": { + "dialogue": "Watcha be doin' here?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Skyraider Guard" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "royaltrials-skyraiderguard-5", + "lineInfo": { + "dialogue": "Another contestant, eh? That outfit looks a bit funny on ye, but I'll let yer in. Hurry up!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Skyraider Guard" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "royaltrials-skyraiderguard-6", + "lineInfo": { + "dialogue": "Aye, my queen!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Skyraider Guard" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "royaltrials-skyraiderguard-7", + "lineInfo": { + "dialogue": "Hey! I told yer, ye not gettin' in if yer not a skyraider!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Skyraider Guard" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "royaltrials-skyraiderguard-8", + "lineInfo": { + "dialogue": "Stop! The new Queen is being chosen here, and ye can only try out from level 98 onwards. Leave now! Ain't even a skyraider, bloody idiot!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Skyraider Guard" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "royaltrials-hrona-1", + "lineInfo": { + "dialogue": "Yer wantin' to be pirate queen, ye? Don' worry, I can help ye.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Hrona" + } + }, + { + "fileOverride": "royaltrials-hrona-2", + "lineInfo": { + "dialogue": "Y'see, the other pirates ain't fit for the role. They're dumb 'n weak. All they've got is looks.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Hrona" + } + }, + { + "fileOverride": "royaltrials-hrona-3", + "lineInfo": { + "dialogue": "Yer got the lot! Looks and talent.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Hrona" + } + }, + { + "fileOverride": "royaltrials-hrona-4", + "lineInfo": { + "dialogue": "Y'know, the guard, she's dumb too. A simple disguise will fool 'er. Issue is, ye dun' look like a skyraider at all!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Hrona" + } + }, + { + "fileOverride": "royaltrials-hrona-5", + "lineInfo": { + "dialogue": "Yer in luck, though. A skyraider will sell anything for a price - just look around the town and see if ye can persuade anyone to part with their outfit.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Hrona" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "royaltrials-hrona-6", + "lineInfo": { + "dialogue": "Don' waste your time 'round me! You've got trials to attend.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Hrona" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "royaltrials-hrona-7", + "lineInfo": { + "dialogue": "Congratulations, my queen! May yer rule be the best one!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Hrona" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "royaltrials-hrona-8", + "lineInfo": { + "dialogue": "Move along, landwalker!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Hrona" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "royaltrials-egpla-1", + "lineInfo": { + "dialogue": "Aye? A landwalker, wanderin' around our base? Whatcha' want?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Egpla" + } + }, + { + "fileOverride": "royaltrials-egpla-2", + "lineInfo": { + "dialogue": "My outfit?!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Egpla" + } + }, + { + "fileOverride": "royaltrials-egpla-3", + "lineInfo": { + "dialogue": "... aye, I suppose I could be tempted to pass it on to ye... for a price.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Egpla" + } + }, + { + "fileOverride": "royaltrials-egpla-4", + "lineInfo": { + "dialogue": "Here, these are what I would trade it to ye for.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Egpla" + } + }, + { + "fileOverride": "royaltrials-egpla-5", + "lineInfo": { + "dialogue": "If yer thinkin' emeralds... [30 Emerald Blocks] seems like a fair price, heh.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Egpla" + } + }, + { + "fileOverride": "royaltrials-egpla-6", + "lineInfo": { + "dialogue": "Of course, if yer running low on funds, how about ye grab me [3 Dragonling Eggs] instead? Y'know, the ingredient. I'm 'oping to raise some 'o the lil critters!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Egpla" + } + }, + { + "fileOverride": "royaltrials-egpla-7", + "lineInfo": { + "dialogue": "But if neither of them tickle ye fancy... I've always wanted [1 Shiny Shell] - they're just so sparkly! Ye can find them in the cave south-east of here, beside the ladders.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Egpla" + } + }, + { + "fileOverride": "royaltrials-egpla-8", + "lineInfo": { + "dialogue": "Ye get me one o' those three, landwalker, and ye can have my outfit!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Egpla" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "royaltrials-egpla-9", + "lineInfo": { + "dialogue": "Landwalker! Have ye found any of the items yet?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Egpla" + } + }, + { + "fileOverride": "royaltrials-egpla-10", + "lineInfo": { + "dialogue": "Remember, I'd trade it to ye for [30 Emerald Blocks], [3 Dragonling Eggs] or [1 Shiny Shell] from the cave to the south-east!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Egpla" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "royaltrials-egpla-11", + "lineInfo": { + "dialogue": "So, landwalker, are ye ready to pay up? I can see emeralds in ye pocket, hand 'em over.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Egpla" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "royaltrials-egpla-12", + "lineInfo": { + "dialogue": "Aye, landwalker! Is that the sparkle of a shiny shell I spot in ye pocket?! Lemme have a look...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Egpla" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "royaltrials-egpla-13", + "lineInfo": { + "dialogue": "Alrigh'! Those're exactly what I've been lookin' for. Give it here, lemme have a look...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Egpla" + } + }, + { + "fileOverride": "royaltrials-egpla-14", + "lineInfo": { + "dialogue": "Alright, landwalker. Ye can have me outfit. 'ere, lemme just get changed inside.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Egpla" + } + }, + { + "fileOverride": "royaltrials-egpla-15", + "lineInfo": { + "dialogue": "Here ye go, landlubber. I hope ye get some kinda use out of it, whatever ye want it for.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Egpla" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "royaltrials-egpla-16", + "lineInfo": { + "dialogue": "Aye, landwalker. Hope yer getting some use outta that outfit!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Egpla" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "royaltrials-egpla-17", + "lineInfo": { + "dialogue": "Eh? Get outta here, landwalker. I'm a busy gal, ain' got time to babysit one of ye.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Egpla" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "royaltrials-egpla-18", + "lineInfo": { + "dialogue": "Aye, my queen! T'was an honour to watch ye wearing my outfit as you battled for blood and glory.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Egpla" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "royaltrials-angrycontestant-1", + "lineInfo": { + "dialogue": "Ugh! Ye can't be the queen, ye can barely fly an airship!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Angry Contestant" + } + }, + { + "fileOverride": "royaltrials-angrycontestant-2", + "lineInfo": { + "dialogue": "No! I'll be the queen! I'm much more qualified than any of you sky rats!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Angry Contestant" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "royaltrials-trialsoverseer-1", + "lineInfo": { + "dialogue": "Gather round, ladies. The next Queen is about to be selected!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-2", + "lineInfo": { + "dialogue": "As ye know, our previous queen suffered a... nasty fate, murdered on her very own airship by a Wynn soldier.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-3", + "lineInfo": { + "dialogue": "But in the ashes of her honour, a new queen shall rise! Three trials. That's what ye all face now.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-4", + "lineInfo": { + "dialogue": "Only one, who passes all trials laid before her, will pass and gain the title of Skyraider Queen.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-5", + "lineInfo": { + "dialogue": "Now, I introduce ye all to the first trial, to test yer capability at a vital skill for queenship - combat!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-6", + "lineInfo": { + "dialogue": "Ladies, you may now begin!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Trials Overseer" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "royaltrials-trialsoverseer-7", + "lineInfo": { + "dialogue": "Arr, that weeded out the weak. A queen must be strong to lead.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-8", + "lineInfo": { + "dialogue": "Now, to the second challenge - the task of flight! Ye can't be a queen if ye can't fly yer airship!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-9", + "lineInfo": { + "dialogue": "Make sure ye bring yer sharpest eyes, girls, one false move and death awaits.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-10", + "lineInfo": { + "dialogue": "This task should get rid of the rest of ye unworthy.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Trials Overseer" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "royaltrials-trialsoverseer-11", + "lineInfo": { + "dialogue": "Well lookie here, an amateur made it through her flight.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-12", + "lineInfo": { + "dialogue": "Well let’s see how you hold up in the final task ladies.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-13", + "lineInfo": { + "dialogue": "Yer ain’ a pirate at all if ye can't steal, but this is different.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-14", + "lineInfo": { + "dialogue": "This is the real deal. Stealin’ from a highly secure mansion.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-15", + "lineInfo": { + "dialogue": "Yer job is to steal a priceless treasure from the richest family in the sky.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-16", + "lineInfo": { + "dialogue": "We'll be waiting with a getaway airship at the extraction point, everyone else'll be left behind.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-17", + "lineInfo": { + "dialogue": "Remember, this be the real thing, and the consequences of failure will be severe. Good luck, ladies.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Trials Overseer" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "royaltrials-trialsoverseer-18", + "lineInfo": { + "dialogue": "This is the garden we'll tunnel into, and yer'll 'ave to find a way into the Mansion, maybe yer can just ask nicely, heh.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-19", + "lineInfo": { + "dialogue": "Then yer'll have to sneak through these corridors to reach the treasure - and don't let the guards find yer, or they'll lock yer up and throw away the key.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-20", + "lineInfo": { + "dialogue": "This, o' course, is the mythical treasure that yer want to grab and get outta here, stat. I'm sure there'll be some extra defenses around, though...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-21", + "lineInfo": { + "dialogue": "And finally yer'll have to escape outta this window right 'ere - I'll be waitin' with an airship to carry all of ye out.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Trials Overseer" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "24": { + "dialogues": [ + { + "fileOverride": "royaltrials-mansionguard-1", + "lineInfo": { + "dialogue": "Oi', you! Whatcha' think yer' doin' sneakin' around these parts? This be a restricted area! Yer' headed to the jail cell!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mansion Guard" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "royaltrials-mansionguard-2", + "lineInfo": { + "dialogue": "Aye', men! Tha' treasure has been stolen! Prepare the defenses!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mansion Guard" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "royaltrials-mansionguard-3", + "lineInfo": { + "dialogue": "Aye, we caught the nasty thief! We'll be lockin' him up till' he rots!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mansion Guard" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "royaltrials-trialsoverseer-22", + "lineInfo": { + "dialogue": "Ah, I thought yer might be the first one back. Yer got a queenly look about ye...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-23", + "lineInfo": { + "dialogue": "Head into the airship behind me, lassie. We'll wait a second for the others.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Trials Overseer" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "royaltrials-trialsoverseer-24", + "lineInfo": { + "dialogue": "Move along, ya' got clearance to board the airship!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Trials Overseer" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "royaltrials-trialsoverseer-25", + "lineInfo": { + "dialogue": "Aha! I figured it'd be ye to win o'er the rest of that lot... Ye've earned the proper sovereignty of bein' our ruler, our queen of the Skyraiders.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-26", + "lineInfo": { + "dialogue": "Don't be worryin', we got this airship armoured somethin' heavy, and we're miles away from their cannons... Nothin' to be afraid of, we're safe in this ship.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-27", + "lineInfo": { + "dialogue": "But, first things first, let’s take a look inside that fancy box ye got, see what mythical treasures lay guarded behind those grubby guardsmen, shall we?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-28", + "lineInfo": { + "dialogue": "By the skies and seas...", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-29", + "lineInfo": { + "dialogue": "I hafta wonder now if this weren't bein' guarded for a bit of a nefarious reason. This be... Quite the weapon. It'd be deadly if this got used.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-30", + "lineInfo": { + "dialogue": "Well, thanks to ye, us Skyraiders might have it now, but using this weapon against civilization would be beyond terrible. We might be pirates but we ain't heartless!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-31", + "lineInfo": { + "dialogue": "I think we'll just have to keep this locked up nice n' tight once we get back. We'll be sure to tie this little cataclysm-in-a-box down much safer th'n those idiot men did.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-32", + "lineInfo": { + "dialogue": "Aha! Just gettin' back now. Let's head down and start the ceremony, shall we?", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Trials Overseer" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "royaltrials-trialsoverseer-33", + "lineInfo": { + "dialogue": "I am pleased to introduce our 734th Skyraider Queen. Fer the sake of our people, let her reign last more than two weeks.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-34", + "lineInfo": { + "dialogue": "I, on behalf on the rest of the Skyraider people, have the honor of decoratin' you with the highest decoration of the Skyraiders, [The Queen’s Headpiece].", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-35", + "lineInfo": { + "dialogue": "Please use your sovereignty to lead us to the riches we deserve.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Trials Overseer" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "royaltrials-trialsoverseer-36", + "lineInfo": { + "dialogue": "Yer Majesty. What an honour to have such a beautiful queen.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-37", + "lineInfo": { + "dialogue": "Now that ye've been crown, we must give ye the reward.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-38", + "lineInfo": { + "dialogue": "Benefits of being a queen I 'spose.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Trials Overseer" + } + }, + { + "fileOverride": "royaltrials-trialsoverseer-39", + "lineInfo": { + "dialogue": "Please accept this, yer majesty.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Trials Overseer" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "royaltrials-trialsoverseer-40", + "lineInfo": { + "dialogue": "Greetings, your majesty!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Trials Overseer" + } + } + ] + } + } + }, + "Sand-Swept Tomb": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "sst-hashr-1", + "lineInfo": { + "dialogue": "Who is the fool that has opened this accursed cage?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "sst-hashr-2", + "lineInfo": { + "dialogue": "You are not of the old empire... Not one of those who forced me in here.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + }, + { + "fileOverride": "sst-hashr-3", + "lineInfo": { + "dialogue": "Why do you take arms against me? I only tried to save my people from my father!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "sst-hashr-4", + "lineInfo": { + "dialogue": "If you insist on ending me, then I'll dispose of you like I did that wretched emperor!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Hashr" + } + } + ] + } + }, + "settings": { + "followPlayer": true + } + }, + "Sea Skipper": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-1", + "lineInfo": { + "dialogue": "Where are ya headed? Nemract, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-2", + "lineInfo": { + "dialogue": "Where are ya headed? Rooster Island, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-3", + "lineInfo": { + "dialogue": "Where are ya headed? Bear Zoo Island, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-4", + "lineInfo": { + "dialogue": "Where are ya headed? Durum Isles, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-5", + "lineInfo": { + "dialogue": "Where are ya headed? Selchar, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-6", + "lineInfo": { + "dialogue": "Where are ya headed? Half Moon Island, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-7", + "lineInfo": { + "dialogue": "Where are ya headed? Mage Island, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-8", + "lineInfo": { + "dialogue": "Where are ya headed? Llevigar, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-9", + "lineInfo": { + "dialogue": "Where are ya headed? Ice Nations, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-10", + "lineInfo": { + "dialogue": "Where are ya headed? Nesaak, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-11", + "lineInfo": { + "dialogue": "Where are ya headed? Skiens Island, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-12", + "lineInfo": { + "dialogue": "Where are ya headed? Volcanic Isles, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-13", + "lineInfo": { + "dialogue": "Where are ya headed? Zhight Island, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-14", + "lineInfo": { + "dialogue": "Where are ya headed? Maro Peaks, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-15", + "lineInfo": { + "dialogue": "Where are ya headed? Galleon's Graveyard, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-16", + "lineInfo": { + "dialogue": "Where are ya headed? Pirate Cove, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-17", + "lineInfo": { + "dialogue": "Where are ya headed? Dead Island, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-18", + "lineInfo": { + "dialogue": "Where are ya headed? Jofash Docks, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-19", + "lineInfo": { + "dialogue": "So, this is your first time ridin' the ol' Seaskipper, eh? It's okay if you're a wee bit seasick.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-20", + "lineInfo": { + "dialogue": "Did I ever tell you about how I fended off an entire pirate ship?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-21", + "lineInfo": { + "dialogue": "I've heard tales around Nemract's Bar, about one of the greatest treasure hunts of all time.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-22", + "lineInfo": { + "dialogue": "Seems like it's a long travel ahead. How about some fishin’ to kill time, hm? Never done it?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-23", + "lineInfo": { + "dialogue": "Sometimes, no matter where I am, I'll hear someone shoutin’ like they're right next to me.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-24", + "lineInfo": { + "dialogue": "I've been sailin' for years, I know every island in the sea like the back of my hand.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-25", + "lineInfo": { + "dialogue": "You'll never believe what I salvaged earlier today.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-26", + "lineInfo": { + "dialogue": "Tomatoes, check... Carrots, check... Did that box jus' move?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-27", + "lineInfo": { + "dialogue": "Did I ever tell you the story about how I got into the Seaskipper business in the first place?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-28", + "lineInfo": { + "dialogue": "I just got back from a trip to Nemract, and I gotta tell ya all about this crazy story I 'eard. ", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-29", + "lineInfo": { + "dialogue": "Some people really don't like waitin' through these trips. I try and tell stories to pass the time.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-30", + "lineInfo": { + "dialogue": "One of my ol' mates in Selchar buys valuable ocean treasures. You could make a lot of emeralds off of 'im.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-31", + "lineInfo": { + "dialogue": "Ah, sorry 'bout the mess here! I don't get many clients, so keeping the ship clean isn't what I do.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-32", + "lineInfo": { + "dialogue": "Y'know, I rarely get a client who talks to me.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-33", + "lineInfo": { + "dialogue": "Did you ever 'ear about the Bear Zoo on that island? Almost no one has!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-34", + "lineInfo": { + "dialogue": "Fetch me some Nemract Whiskey, my throat is sore from all this talking and this accursed hot weather... hic!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-35", + "lineInfo": { + "dialogue": "Corkus is one of the most interestin' places I've ever sailed to. All those crazy machines are incredible...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-36", + "lineInfo": { + "dialogue": "Y'know, there's a sailor tale of a ghost ship swimmin' around the ocean. Many say it's fake, but I've seen with my own eyes!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-37", + "lineInfo": { + "dialogue": "I've 'ad the Ice Islands on my brain for a while now. I'll tell you all about them. ", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-38", + "lineInfo": { + "dialogue": "Y'know, you look like someone who'd use my service more than once.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-39", + "lineInfo": { + "dialogue": "Hey, have you heard about Gavel's legendary hero, Siegfried?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-40", + "lineInfo": { + "dialogue": "You know, I'm surprised I've found someone willin' to listen to all of my stories. ", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-41", + "lineInfo": { + "dialogue": "Have you ev'r heard the tale of the Troll Tower? It rests upon a small island, in a part of the sea where few travel. ", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-42", + "lineInfo": { + "dialogue": "I've had a lot of passengers with a few screws loose, and today I'll tell ye the tale of the craziest of 'em all.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-43", + "lineInfo": { + "dialogue": "You ever heard of Sarnfic? It's an old, sunken city in the ocean.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-44", + "lineInfo": { + "dialogue": "The locals over at Jofash are weird. One time I met a crazy captain who only spoke in rhymes.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-45", + "lineInfo": { + "dialogue": "There's a lot of stories about a mysterious island, called Gateway Island.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-46", + "lineInfo": { + "dialogue": "Have you ever been to the Legendary Island? Y'know, the island just southeast of Corkus?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-47", + "lineInfo": { + "dialogue": "Did I ever tell you how I got this key? You see, one day I was attacked by a pirate ship!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-48", + "lineInfo": { + "dialogue": "You ev'r notice how ev'ry identifier is hidin' a stash of potatoes?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-49", + "lineInfo": { + "dialogue": "Ah, I almost forgot! Take this Reset Scroll! I doubt that I'll ever need one.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-50", + "lineInfo": { + "dialogue": "Y'hear? One o' my old wizardy kind-o-friends needed a ride down to mage islan', and o' course I'd help 'im. I'm a sea cap'n, if ya didn' notice!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-51", + "lineInfo": { + "dialogue": "Let me tell ya, ol' Zhight is a real lunatic, and it seems to have rubbed off onto his neighbors.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-52", + "lineInfo": { + "dialogue": "Have you heard tales about Captain Redbeard? Back when I was young, he terrorized the seas!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-53", + "lineInfo": { + "dialogue": "Do ya 'member that time I rescued ya on a random island?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-54", + "lineInfo": { + "dialogue": "They seemed to be praisin' soldiers by kidnappin' more of them. Odd tactic, but I ain't one to judge.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-55", + "lineInfo": { + "dialogue": "I 'eard they're tryin' to train a chicken now. Fended off a huge beast or somethin'.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "56": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-56", + "lineInfo": { + "dialogue": "My love of the sea goes way back to my childhood. I grew up by the shores o' Gavel.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "57": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-57", + "lineInfo": { + "dialogue": "So, do you like me ship? I've had the ol' Seaskipper for years now!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "58": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-58", + "lineInfo": { + "dialogue": "Did ya know that Detlas and Selchar are sister cities?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "59": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-59", + "lineInfo": { + "dialogue": "Say, did I ever tell you about the dock I set up near Skien's island?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "60": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-60", + "lineInfo": { + "dialogue": "So, there's this other ship at Selchar that takes ya to the island of Corkus. C.S.S. Wavebreaker, they call it.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "61": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-61", + "lineInfo": { + "dialogue": "You ever heard of Regular Island? Well, that's what the people there are callin' it, anyways. Odd guys, those are.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "62": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-62", + "lineInfo": { + "dialogue": "Have you been to that big ol' gate just south of Corkus? It's a sight to behold, alright.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "63": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-63", + "lineInfo": { + "dialogue": "I've been thinking, one day I'm gonna be too old for this job.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "64": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-64", + "lineInfo": { + "dialogue": "Did I ever tell ya about the one time I met a renowned, but retired theater director in Llevigar?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "65": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-65", + "lineInfo": { + "dialogue": "I've heard tale of people who travel the mountain paths to get from Wynn to Gavel instead of goin' by boat.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "66": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-66", + "lineInfo": { + "dialogue": "Say, you ever been to Rodoroc? It's a huge dwarven city off in Gavel.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "67": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-67", + "lineInfo": { + "dialogue": "So, I noticed I've been getting less human customers recently. It's been worryin' me, I mean I'm not aware of any competitors.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "68": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-68", + "lineInfo": { + "dialogue": "Just on my last stop, I was chattin' with an acquaintance of mine on Mage Island. He told me about what a terrifyin' monster you were about to take on in the Jungle.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "69": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-69", + "lineInfo": { + "dialogue": "Ye know, I saw you sailin' on that Corkian vessel some time back.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "70": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-70", + "lineInfo": { + "dialogue": "Ya know, recently I've been noticin' some strange trend where once in about every, say, year or so I get a sudden spike in payin' customers. And I ain't got the faintest clue of where they've all suddenly come from!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "71": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-71", + "lineInfo": { + "dialogue": "Ya know, some of you soldier types can get mighty strange at times.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "72": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-72", + "lineInfo": { + "dialogue": "I can see that gloomy isle off in the distance... There, ahead, that's where old Skien used to live.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "73": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-73", + "lineInfo": { + "dialogue": "Besides the occasional surge of robots and the bitter relations between the humans and the native folk, I've heard that Corkus was a nice place to live in.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "74": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-74", + "lineInfo": { + "dialogue": "Hey, look over there! D'you see that overgrown structure in the distance?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "75": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-75", + "lineInfo": { + "dialogue": "Oh, I see you've brought a friend along with you today! It's always nice to share a voyage with someone!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "76": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-76", + "lineInfo": { + "dialogue": "HEY, OLD MAN!! SO I'VE BEEN WONDERING... WHAT'S THE DEAL WITH THIS, UH, BUSINESS YOU'VE GOT RUNNING HERE?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Talking Mushroom" + } + } + ] + }, + "77": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-77", + "lineInfo": { + "dialogue": "JEEZ, CAN THIS GUY HURRY UP? THE SALT IN THE WIND IS MAKING ME ROT.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Talking Mushroom" + } + } + ] + }, + "78": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-78", + "lineInfo": { + "dialogue": "Woah! Hold onto yer helmet, these waves are rougher than usual!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "79": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-79", + "lineInfo": { + "dialogue": "Hey soldier, le' me tell ya a real good piece of advice.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "80": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-80", + "lineInfo": { + "dialogue": "Welcome to the V.S.S. Seaskipper, from Seasail Enterprises! There's nothin' better than Seasail if you're lookin' to travel!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Seaskipper Captain" + } + }, + { + "fileOverride": "seaskipper-seaskippercaptain-81", + "lineInfo": { + "dialogue": "Just hop on the boat and buy a pass so you can get goin' to almost anywhere on the ocean!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Seaskipper Captain" + } + }, + { + "fileOverride": "seaskipper-seaskippercaptain-82", + "lineInfo": { + "dialogue": "You can even take your pals along with you for free if you're in a party!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "81": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-83", + "lineInfo": { + "dialogue": "I'm afraid you cannot afford that boat.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper" + } + } + ] + }, + "82": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-84", + "lineInfo": { + "dialogue": "There you go. Come again!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper" + } + } + ] + }, + "83": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-85", + "lineInfo": { + "dialogue": "Ohoh, that reminds me! I’ve got a letter for you - special delivery from a Corkian fellow. White hair, goggles, the lot.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "84": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-86", + "lineInfo": { + "dialogue": "Where are ya headed? Isles Of Fiction, huh? A'ight! I'll get ya there in no time.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "85": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-87", + "lineInfo": { + "dialogue": "So, this is your first time legitimately ridin' my boat, eh? I 'ought that pirate adventure would've scarred you!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + }, + "86": { + "dialogues": [ + { + "fileOverride": "seaskipper-seaskippercaptain-88", + "lineInfo": { + "dialogue": "Ah, I almost forgot! Take this Ability Shard! I doubt that I'll ever need one.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seaskipper Captain" + } + } + ] + } + }, + "settings": { + "followPlayer": true + } + }, + "Shattered Minds": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "shatteredminds-likeru-1", + "lineInfo": { + "dialogue": "Aha, perfect! You'll be perfect! Lucky a human decided to come here!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Likeru" + } + }, + { + "fileOverride": "shatteredminds-likeru-2", + "lineInfo": { + "dialogue": "I'll get to the point- I want you to go get something for me, and then bring it back here. Simple, right?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Likeru" + } + }, + { + "fileOverride": "shatteredminds-likeru-3", + "lineInfo": { + "dialogue": "When you do that, I'm going to fix it up and try something out on you. Something magically enlightening!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Likeru" + } + }, + { + "fileOverride": "shatteredminds-likeru-4", + "lineInfo": { + "dialogue": "Oh, don't give me that look, it should be perfectly safe! Unless you've been mired in darkness for the past however many years...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Likeru" + } + }, + { + "fileOverride": "shatteredminds-likeru-5", + "lineInfo": { + "dialogue": "Anyway, what I need is a specific kind of mushroom that grows close by, the Bluecap Mushroom.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Likeru" + } + }, + { + "fileOverride": "shatteredminds-likeru-6", + "lineInfo": { + "dialogue": "They grow underground- in a cave out the gate northwest of here. I'll even pay you if you bring it back, so what have you got to lose?", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Likeru" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "shatteredminds-professoreih-1", + "lineInfo": { + "dialogue": "Looks like someone rolled about the air fuzz too much, so indeed hello! A light hello to yourself, soldier, and a greetings to Professor Eih, which is me!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "???" + } + }, + { + "fileOverride": "shatteredminds-professoreih-2", + "lineInfo": { + "dialogue": "I don't rhyme all the instances, I feel the need to say. But what do you say? Very little! But I bet you're wondering where you are.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Professor Eih" + } + }, + { + "fileOverride": "shatteredminds-professoreih-3", + "lineInfo": { + "dialogue": "I am no gambling man, but the chips are down and it is time to play 52-Pickup with the puzzle pieces, and I'll eat my bowtie if you aren't ready.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Professor Eih" + } + }, + { + "fileOverride": "shatteredminds-professoreih-4", + "lineInfo": { + "dialogue": "The betting pool says the way to go is the opposite of in front, so that leaves someplace we can't talk about in front of the kids as your path!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Professor Eih" + } + }, + { + "fileOverride": "shatteredminds-professoreih-5", + "lineInfo": { + "dialogue": "I will be around! Or asquare, as it were. Technically amultiplesquares, replete with alines! And abevels! And other some such things like-", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Professor Eih" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "shatteredminds-professoreih-6", + "lineInfo": { + "dialogue": "The punks scramble like eggs, and your skillet is sizzling! Certainly the heat in the kitchen is too much- so where is the fire extinguisher?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Professor Eih" + } + }, + { + "fileOverride": "shatteredminds-professoreih-7", + "lineInfo": { + "dialogue": "It won't rocket you! The hole in the shape of a door looms out of your transparent grasp- frogs can't skip leg day, so be froggy! Bounce and jump!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Professor Eih" + } + }, + { + "fileOverride": "shatteredminds-professoreih-8", + "lineInfo": { + "dialogue": "Swoosh and sprint! Speed and non-slip shoes! With a CLICK upon me I give you all but one, as much as you need!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Professor Eih" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "shatteredminds-professoreih-9", + "lineInfo": { + "dialogue": "The colors! Shimmering as a prism- oh, no one likes those things. The writing is on the wall, but the window mugs it for pocket change! The inhumanity!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Professor Eih" + } + }, + { + "fileOverride": "shatteredminds-professoreih-10", + "lineInfo": { + "dialogue": "Use your eyes as ears and hear what I shall write! The cockpit is missing ground control and the cornfields all look the same in endless rows!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Professor Eih" + } + }, + { + "fileOverride": "shatteredminds-professoreih-11", + "lineInfo": { + "dialogue": "So Eih, esquire professor PhD, will provide the coordinates in helpfully non-literal fashion, and one's joystick shall lead the holder to bliss!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Professor Eih" + } + }, + { + "fileOverride": "shatteredminds-professoreih-12", + "lineInfo": { + "dialogue": "At one's boots, the colors paint themselves towards an orientation. Above one's head, the lights match and fling you the same!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Professor Eih" + } + }, + { + "fileOverride": "shatteredminds-professoreih-13", + "lineInfo": { + "dialogue": "I'm all out of airplane food, but the goal is more than peanuts- it's progress, just opposite our position. Fly well!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Professor Eih" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "shatteredminds-questionmark-1", + "lineInfo": { + "dialogue": "Hey, look to your left for a moment.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "shatteredminds-professoreih-14", + "lineInfo": { + "dialogue": "Familiar to the nursing home, with no IV in sight! Phenomenal, and now my gambling metaphors will be apropos!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Professor Eih" + } + }, + { + "fileOverride": "shatteredminds-professoreih-15", + "lineInfo": { + "dialogue": "A solid, 100% pure, statue-made-out-of-tons-of-things what looks like me! I call it, “Ill Of The Ooze, Young!” And it begets your path amongst the lilypads.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Professor Eih" + } + }, + { + "fileOverride": "shatteredminds-professoreih-16", + "lineInfo": { + "dialogue": "Likeru? No, no, she can’t find you here- her eyes deceive her. But I won't! Not any more than the film reel degrades, and the theater is ahead!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Professor Eih" + } + }, + { + "fileOverride": "shatteredminds-professoreih-17", + "lineInfo": { + "dialogue": "Now, don't tell the kids about this one either! The way forward is through my masterpiece- but I can't imagine a gullet glorious!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Professor Eih" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "shatteredminds-yahya-1", + "lineInfo": { + "dialogue": "Don't come any closer... I don't want to have to fight...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "???" + } + }, + { + "fileOverride": "shatteredminds-yahya-2", + "lineInfo": { + "dialogue": "I-I'm warning you. You'll stand no match against me...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "???" + } + }, + { + "fileOverride": "shatteredminds-yahya-3", + "lineInfo": { + "dialogue": "That's it...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "???" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "shatteredminds-professoreih-18", + "lineInfo": { + "dialogue": "There we are! Snapped out of it! Though perhaps writing in the mud was better- Soon it will dry.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Professor Eih" + } + }, + { + "fileOverride": "shatteredminds-professoreih-19", + "lineInfo": { + "dialogue": "Without the static of the fungal caps, the radio station will be off-air- and the device unplugged!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Professor Eih" + } + }, + { + "fileOverride": "shatteredminds-professoreih-20", + "lineInfo": { + "dialogue": "Scratch it in your eyelids- the lightbulb screwed between the arches, and the feather-duster's sunset shades will reveal my deepest compatriot. Quick now, wake!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Professor Eih" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "shatteredminds-elderberusia-1", + "lineInfo": { + "dialogue": "Ugh. Rats chewing the roots. They've their place, it simply isn't here. Neither is your place in the koi pond, stranger.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Elder Berusia" + } + }, + { + "fileOverride": "shatteredminds-elderberusia-2", + "lineInfo": { + "dialogue": "I believe Likeru tossed you into the deep end without meaning, so to speak. I understand your being overwhelmed, but still...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Elder Berusia" + } + }, + { + "fileOverride": "shatteredminds-elderberusia-3", + "lineInfo": { + "dialogue": "Speaking of which, it might behoove you to let her know you've recovered. Though, should you need rest, you may take it here.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Elder Berusia" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "shatteredminds-likeru-7", + "lineInfo": { + "dialogue": "Ehm. Okay, that was...a bad idea. Should NOT have done that with a human. Uh, noted for the futu- oh, you're actually alright?!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Likeru" + } + }, + { + "fileOverride": "shatteredminds-likeru-8", + "lineInfo": { + "dialogue": "You came back and just leapt into the koi pond! I thought you'd drowned down there!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Likeru" + } + }, + { + "fileOverride": "shatteredminds-likeru-9", + "lineInfo": { + "dialogue": "I guess the spores from the Bluecaps got to you before you could bring them back. I wonder what you saw?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Likeru" + } + }, + { + "fileOverride": "shatteredminds-likeru-10", + "lineInfo": { + "dialogue": "You reacted like you were crazy when I tried to talk with you... You were supposed to get visions of the light! A deep connection!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Likeru" + } + }, + { + "fileOverride": "shatteredminds-likeru-11", + "lineInfo": { + "dialogue": "Wait, maybe it's cause of that portal...the signals got mixed? I'll have to look into this more...but hey, I got the Bluecap, anyways, so...", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Likeru" + } + }, + { + "fileOverride": "shatteredminds-likeru-12", + "lineInfo": { + "dialogue": "Here, your payment- and a little extra I whipped up too. Um, really sorry about all that!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Likeru" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "shatteredminds-likeru-13", + "lineInfo": { + "dialogue": "The Bluecap Mushrooms grow in a cave out the gate northwest of here.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Likeru" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "shatteredminds-likeru-14", + "lineInfo": { + "dialogue": "Yeah...the more I think on it, the more that the corruption portal messing with the visions makes sense.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Likeru" + } + }, + { + "fileOverride": "shatteredminds-likeru-15", + "lineInfo": { + "dialogue": "Well, if you ever want to try again and see if I'm wrong go ahead, but please don't dive into the pond again?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Likeru" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "shatteredminds-likeru-16", + "lineInfo": { + "dialogue": "Mmm, might not be strong enough mentally... Hey, come back around Level 70, I have something to try.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Likeru" + } + } + ] + } + } + }, + "Silent Expanse": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "silentexpanse-miner-1", + "lineInfo": { + "dialogue": "'Ey, boss, ya sure this is where we need t'blow things up? There's equipment an' all here. This place been empty for a while now too.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Miner" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-minerchief-1", + "lineInfo": { + "dialogue": "The small spec I found might not've been much, but it could mean that there are more emeralds nearby. That's why I brought our friend here to confirm.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Miner Chief" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-geologist-1", + "lineInfo": { + "dialogue": "Hm. Do you hear that? The sound indicates a large body of crystals just right behind these rocks.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Geologist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-minerchief-2", + "lineInfo": { + "dialogue": "I knew it! Blow 'er up!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Miner Chief" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-geologist-2", + "lineInfo": { + "dialogue": "These... These are not emeralds.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Geologist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-miner-2", + "lineInfo": { + "dialogue": "Let's see 'ere... Red, purple, green n' yellow. Say, boss, ain't these them crystal that lad not too long ago asked ya 'bout?", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Miner" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-minerchief-3", + "lineInfo": { + "dialogue": "These are not just some 'crystals'. They're... Dangerous. All of you, listen up - never speak a word of what you saw here.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Miner Chief" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-minerchief-4", + "lineInfo": { + "dialogue": "Both of you, back to your posts, now! I'll make sure these are never seen again.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Miner Chief" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "silentexpanse-olmmage-1", + "lineInfo": { + "dialogue": "Crystalites. This is bad. Froner? FRONER? Are you there? We have a BIG problem.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Olm Mage" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-olmastrologist-1", + "lineInfo": { + "dialogue": "What? More meteors hitting the mountains again? When has that ever been an issue before?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Olm Astrologist" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-olmmage-2", + "lineInfo": { + "dialogue": "There’s a series of fireballs heading towards the city.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Olm Mage" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-olmastrologist-2", + "lineInfo": { + "dialogue": "How long have we got left? We need to inform th-", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Olm Astrologist" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "silentexpanse-bakal-1", + "lineInfo": { + "dialogue": "Master. I have arrived. You wished to speak with me?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-thedernbeast-1", + "lineInfo": { + "dialogue": "The forts of the humans still stand. You have failed.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-bakal-2", + "lineInfo": { + "dialogue": "Master, we have spread your will across the province as you ordered.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-thedernbeast-2", + "lineInfo": { + "dialogue": "Peon, you have spread my influence. My will remains foreign. They yet hope. The Olm do not. And so we could claim their lands. But here, we may not.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-thedernbeast-3", + "lineInfo": { + "dialogue": "I must be present. In my gaze, no thing shall hide. Do you understand?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-bakal-3", + "lineInfo": { + "dialogue": "I do not, Master. You cannot possibly intend to leave?", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "silentexpanse-thedernbeast-4", + "lineInfo": { + "dialogue": "The tower stands. Bring my gaze there. From on high, it shall blossom. And then my will shall exert upon all.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "???" + }, + "settings": { + "falloff": 200 + } + } + ] + } + } + }, + "Sky Islands": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "skyislands-derangedswordsman-1", + "lineInfo": { + "dialogue": "HEY! Who the hell are you, huh?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Deranged Swordsman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-derangedswordsman-2", + "lineInfo": { + "dialogue": "Oh, I know your type, short-nose.. I bet you wanted to snatch my sword, ain't that right?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Deranged Swordsman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-derangedswordsman-3", + "lineInfo": { + "dialogue": "Well guess what? YOU CAN'T HAVE IT! I'd never let a piece of worthless scum like you STEAL from ME!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Deranged Swordsman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-derangedswordsman-4", + "lineInfo": { + "dialogue": "You won't take my sword... I won't let ANYONE take MY sword away from ME!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Deranged Swordsman" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-derangedswordsman-5", + "lineInfo": { + "dialogue": "Oh, what was that, human? YOU WANTED TO FIGHT?!?! I'LL KILL YOU!!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Deranged Swordsman" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "skyislands-ghostlyskyraider1-1", + "lineInfo": { + "dialogue": "Oi, have ye heard back from the c'mmander yet?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ghostly Skyraider" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-ghostlyskyraider2-1", + "lineInfo": { + "dialogue": "Nah. las' I heard, she was losin it' over some villagers comin' near the city.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ghostly Skyraider" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-ghostlyskyraider1-2", + "lineInfo": { + "dialogue": "Yeah... Speakin' about that... the villagers 're really startin' to push their luck, huh?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ghostly Skyraider" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-ghostlyskyraider3-1", + "lineInfo": { + "dialogue": "OI! What're ya ladies doin', relaxin in here?! The villagers just landed!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ghostly Skyraider" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-ghostlyskyraider2-2", + "lineInfo": { + "dialogue": "Huh? Villagers? Here? We goin' to fight them off?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ghostly Skyraider" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-ghostlyskyraider3-2", + "lineInfo": { + "dialogue": "No, ya idiot! There are too many of them! Let 'em have Ahmsord if they want it so bad! We're headin' to our outpost southeast of 'ere!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ghostly Skyraider" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "skyislands-farcor-1", + "lineInfo": { + "dialogue": "Ah... So another has sought me out. What is it you seek, human? Wealth? Power?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-2", + "lineInfo": { + "dialogue": "I am afraid you will be sorely disappointed... I will offer you neither.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-3", + "lineInfo": { + "dialogue": "If you have found your way here, you must know my story. I left Gavel a millennium ago...", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-4", + "lineInfo": { + "dialogue": "Your people were not to blame for what befell this land. None of those who yet remain below can take the whole blame, truly... But still, they all had their part to play.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-5", + "lineInfo": { + "dialogue": "I have seen the Doguns fall, have watched as that Decay has twisted the land below. I remember, too, what those elves had done, all those years ago...", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-6", + "lineInfo": { + "dialogue": "You are not the first to visit me, nor, I suspect, will you be the last. And when you leave, I will humbly await the next.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-7", + "lineInfo": { + "dialogue": "I regret that you came all this way for no reward... Perhaps I will gift you this book. It reminds me of days long past, before all this tragedy came to pass...", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-8", + "lineInfo": { + "dialogue": "Now, human, leave me to rest. I have lived a long life, and I am very weary...", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "skyislands-farcor-9", + "lineInfo": { + "dialogue": "Hm... You are still here? Not many have stayed after hearing what I have to say. None, but one...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-10", + "lineInfo": { + "dialogue": "Have you come to seek my wisdom, then? What is it you have come for?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "skyislands-farcor-11", + "lineInfo": { + "dialogue": "The Ahms region... It was my home and domain, once. Before those fools refused to listen to my warnings.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-12", + "lineInfo": { + "dialogue": "And a great land it once was. Similar to the Canyon which still lies to the west, yes, yet... Simpler. Greater. The walls did not shift, for their Protector had not yet encountered a threat it could not handle.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-13", + "lineInfo": { + "dialogue": "I roamed the land and gave my wisdom to any who would ask. They grew wiser, and they grew more powerful, all with my assistance...", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-14", + "lineInfo": { + "dialogue": "Truly, I should have seen the signs long before the Fracturing. They were growing arrogant, and thought that they knew better than me.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-15", + "lineInfo": { + "dialogue": "And so, even as I warned them of incoming calamity, they chose to embrace their Protector. Not of their creation, no... But it was theirs nonetheless.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-16", + "lineInfo": { + "dialogue": "And as their Protector failed them, and fractured their land into pieces... They fell back on me. They sought my wisdom once more. They did not deserve it. So I left.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-17", + "lineInfo": { + "dialogue": "...I suppose it is unfair to claim they all deserved that calamity. One section of the region, inhabited by folk unlike the others... They heeded my warnings. They prepared.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-18", + "lineInfo": { + "dialogue": "I do not know what came of them, after the Fracturing. Perhaps they, too, fell into the deep Void below. And yet... They prepared. They listened.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-19", + "lineInfo": { + "dialogue": "Hm. My apologies, I have been rambling on for far too long. I thank you for indulging this old man and his stories.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "skyislands-farcor-20", + "lineInfo": { + "dialogue": "You would wish to restore this land...? Hm... No. No, I do not believe this can be done. It has been lost for far too long...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-21", + "lineInfo": { + "dialogue": "Ah, but that does not mean things cannot improve. You know this full well, yes? The war of the Heights has come to an end, and the Great Protector has been calmed...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-22", + "lineInfo": { + "dialogue": "I am glad this world is improving... Though I only wish such change could have come about sooner.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "skyislands-farcor-23", + "lineInfo": { + "dialogue": "Hm... I have not descended into that dangerous abyss, for I fear the beings from between would not take well to my presence.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-24", + "lineInfo": { + "dialogue": "From what I can discern, it feels... strange. It is not of our realm, nor is it of the three which clash eternal. It is distinctly other.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-25", + "lineInfo": { + "dialogue": "I would urge you to stay alert if you choose to explore that place. Danger lurks in the unknown.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "skyislands-farcor-26", + "lineInfo": { + "dialogue": "Ah... Yes. He came seeking my wisdom, many years ago. Though he did not plan to stay long, his visit soon became an extended stay.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-27", + "lineInfo": { + "dialogue": "It is... A light in my memory of millennia. We spoke of much, while he stayed here. He had theories and observations, and he sought my wisdom to confirm them.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-28", + "lineInfo": { + "dialogue": "I am unsure what came of him. His plans, as he spoke of them, would take him directly into danger. As he departed, he promised he would return if he succeeded.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-29", + "lineInfo": { + "dialogue": "...As you would imagine, I have not seen him since. I worry for his safety, but I trusted his capabilities. I remain hopeful that, someday, he will come to me with good tidings. Until then, I will wait.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "skyislands-talkingmushroom-1", + "lineInfo": { + "dialogue": "HEY! I HAVE A QUESTION, ACTUALLY!! SINCE YOU'RE SO WISE, COULD YOU TELL ME WHERE I WENT WRONG IN MY LIFE TO END UP IN THIS IDIOT'S POCKET?!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Talking Mushroom" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-30", + "lineInfo": { + "dialogue": "Ah... But of course. I have seen your journey, little mushroom. You have traveled quite a long way, have you not? Far from where you once called home...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-31", + "lineInfo": { + "dialogue": "You remind me of myself, in a way. A home left behind in a fit of anger, with no way to make amends.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-farcor-32", + "lineInfo": { + "dialogue": "Keep moving forward, little one. Someday, you will be at peace with your mistakes.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "skyislands-farcor-33", + "lineInfo": { + "dialogue": "...I see. I thank you for your kindness, human. It seems to be a rarity, these days...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Farcor" + }, + "settings": { + "falloff": 200 + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "skyislands-villager-1", + "lineInfo": { + "dialogue": "Oi! Clomi! Get the cotton out of your ears!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Villager" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-priest-1", + "lineInfo": { + "dialogue": "Ah.. Good evening.. What brings you here today, brother?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Priest" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-villager-2", + "lineInfo": { + "dialogue": "It's our Colossus, it's gone insane! It's destroying everything surrounding it for miles!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Villager" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-priest-2", + "lineInfo": { + "dialogue": "Now, now. Don't speak of our Grand Colossus like that! I'm sure there's some sort of explanation for this...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Priest" + }, + "settings": { + "falloff": 200 + } + }, + { + "fileOverride": "skyislands-villager-3", + "lineInfo": { + "dialogue": "What? Do you not believe me? Fine! Come with me, and see for yourself!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Villager" + }, + "settings": { + "falloff": 200 + } + } + ] + } + } + }, + "Stable Story": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "stablestory-enkser-1", + "lineInfo": { + "dialogue": "Looking for able-bodied adventurers! Preferably with no friends or family, but I'm not picky!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Enkser" + } + }, + { + "fileOverride": "stablestory-enkser-2", + "lineInfo": { + "dialogue": "You see, I'm a horse merchant. Make my living selling these beauties to adventurers like you.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Enkser" + } + }, + { + "fileOverride": "stablestory-enkser-3", + "lineInfo": { + "dialogue": "I work at this barn, selling the horses I raise in Ternaves out here to rich Detlas folk.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Enkser" + } + }, + { + "fileOverride": "stablestory-enkser-4", + "lineInfo": { + "dialogue": "Until these rabble-rousing troublemakers blew a tunnel through my barn and smuggled MY horses out.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Enkser" + } + }, + { + "fileOverride": "stablestory-enkser-5", + "lineInfo": { + "dialogue": "Usually, I'd be charging a high price for these horses- Not to be rude, but one you couldn't afford.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Enkser" + } + }, + { + "fileOverride": "stablestory-enkser-6", + "lineInfo": { + "dialogue": "So, let's cut a deal- They stole my stable key. If you can go to my barn in Ternaves...", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Enkser" + } + }, + { + "fileOverride": "stablestory-enkser-7", + "lineInfo": { + "dialogue": "And return that key to me, I'll so charitably bestow upon you one of my horses. This deal is sweeter than you realize, too...", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Enkser" + } + }, + { + "fileOverride": "stablestory-enkser-8", + "lineInfo": { + "dialogue": "Betty'll be there to help! Strong as she is, don't you DARE let them touch her!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Enkser" + } + }, + { + "fileOverride": "stablestory-enkser-9", + "lineInfo": { + "dialogue": "Now, best be on your way. Ternaves is a fair bit down the Black Road from here, off to the east.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Enkser" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "stablestory-etustheblind-1", + "lineInfo": { + "dialogue": "MOO! ALBERT! SOMEONE IS HERE... I CAN SMELL IT. MOO.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Etus The Blind" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "stablestory-enkser-10", + "lineInfo": { + "dialogue": "Looking for able-bodied adventurers, preferably with no friends or-", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Enkser" + } + }, + { + "fileOverride": "stablestory-enkser-11", + "lineInfo": { + "dialogue": "Hey, it's you! Got my barn key?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Enkser" + } + }, + { + "fileOverride": "stablestory-enkser-12", + "lineInfo": { + "dialogue": "Ah, god bless. And I presume Betty did all the work while you just- lounged around.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Enkser" + } + }, + { + "fileOverride": "stablestory-enkser-13", + "lineInfo": { + "dialogue": "I kid! I kid. But as the great bovine above as my witness if I see the smallest bruise I will-", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Enkser" + } + }, + { + "fileOverride": "stablestory-enkser-14", + "lineInfo": { + "dialogue": "Eh, nevermind all that. A horse I promised, and a horse you shall have. Much thanks to you.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Enkser" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "stablestory-enkser-15", + "lineInfo": { + "dialogue": "Hey! Look who's here! So, how's the horse doing?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Enkser" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "stablestory-enkser-16", + "lineInfo": { + "dialogue": "Aaah dang! I had some work for you, but I can't ask such a low level. Come back when you are level 13!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Enkser" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "stablestory-enkser-17", + "lineInfo": { + "dialogue": "Hey, where do you think you're going? You can't just buy a horse like that! Talk to me if you want access... dang tourists...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Enkser" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "stablestory-enkser-18", + "lineInfo": { + "dialogue": "I wouldn't enter that if I were you...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Enkser" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "stablestory-enkser-19", + "lineInfo": { + "dialogue": "Hey, have you found my [1 Stable Key] yet? It should be somewhere in this tunnel right there.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Enkser" + } + } + ] + } + } + }, + "Star Thief": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "starthief-agent-1", + "lineInfo": { + "dialogue": "Hey you! Human. What are you doing here?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Agent" + } + }, + { + "fileOverride": "starthief-agent-2", + "lineInfo": { + "dialogue": "Under Villager law any extra terrestrial or extra voidal entities are prohibited and owned by the state.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Agent" + } + }, + { + "fileOverride": "starthief-agent-3", + "lineInfo": { + "dialogue": "Seeing as you are new to the land, I can't see you being prosecuted, especially a Ragni Guard.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Agent" + } + }, + { + "fileOverride": "starthief-agent-4", + "lineInfo": { + "dialogue": "This meteor is different to what we've seen before. We suspect that direct contact with the meteor is dangerous.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Agent" + } + }, + { + "fileOverride": "starthief-agent-5", + "lineInfo": { + "dialogue": "The magical radiation doesn't seem to be affecting you at all though. Do you not feel anything? Perhaps you could help me locate it.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Agent" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "starthief-thief-1", + "lineInfo": { + "dialogue": "It's... mine.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "starthief-thief-2", + "lineInfo": { + "dialogue": ".... I can't control myself...fjfjfj This rock...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Thief" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "starthief-thief-3", + "lineInfo": { + "dialogue": "What is... this feeling... No I won't listen..", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Thief" + } + }, + { + "fileOverride": "starthief-thief-4", + "lineInfo": { + "dialogue": "I can't... control... my mind... end me.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Thief" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "starthief-agent-6", + "lineInfo": { + "dialogue": "Hello again. Did you find the meteor down there? Why on earth are you holding some?!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Agent" + } + }, + { + "fileOverride": "starthief-agent-7", + "lineInfo": { + "dialogue": "I see. This material is incredibly rare and magically powerful. Meteors fall all over Gavel and come in a variety of colours and potency.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Agent" + } + }, + { + "fileOverride": "starthief-agent-8", + "lineInfo": { + "dialogue": "We don't fully understand them, but we know they are dangerous. Every scientist who has studied them has lost their minds.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Agent" + } + }, + { + "fileOverride": "starthief-agent-9", + "lineInfo": { + "dialogue": "The meteors hold many secrets and powers, maybe the ones we need to end your war. Thank you, here's a small reward for helping us.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Agent" + } + } + ] + } + } + }, + "Studying the Corrupt": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "studyingthecorrupt-viraex-1", + "lineInfo": { + "dialogue": "Garoth? Sorry that name doesn't ring a bell. He could have lived here, but...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Viraex" + } + }, + { + "fileOverride": "studyingthecorrupt-viraex-2", + "lineInfo": { + "dialogue": "The buildings here have been destroyed and rebuilt so many times.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Viraex" + } + }, + { + "fileOverride": "studyingthecorrupt-viraex-3", + "lineInfo": { + "dialogue": "If you say he lived here many years ago, the oldest building is the church.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Viraex" + } + }, + { + "fileOverride": "studyingthecorrupt-viraex-4", + "lineInfo": { + "dialogue": "Now that you mention it, there were odd stories about the basement of the church.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Viraex" + } + }, + { + "fileOverride": "studyingthecorrupt-viraex-5", + "lineInfo": { + "dialogue": "My grandfather told me about it. I still have a key to the place, you are welcome to check it out for yourself.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Viraex" + } + }, + { + "fileOverride": "studyingthecorrupt-viraex-6", + "lineInfo": { + "dialogue": "I heard they found some weird rooms down there so they just left the place alone. Wise move, if you ask me.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Viraex" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "studyingthecorrupt-garothsjournal-1", + "lineInfo": { + "dialogue": "The year is 623 AP. My base of operations has been completed, along with a safety bunker.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Garoth's Journal: Day 4" + } + }, + { + "fileOverride": "studyingthecorrupt-garothsjournal-2", + "lineInfo": { + "dialogue": "It's become extremely dangerous to continue my studies. With the Twains gone, the corrupt run wild.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Garoth's Journal: Day 18" + } + }, + { + "fileOverride": "studyingthecorrupt-garothsjournal-3", + "lineInfo": { + "dialogue": "My studies have yielded poor results. I know only what we already knew.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Garoth's Journal: Day 53" + } + }, + { + "fileOverride": "studyingthecorrupt-garothsjournal-4", + "lineInfo": { + "dialogue": "That simple creatures become enraged and corrupt, the fallen both old and new will rise near corruption.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Garoth's Journal" + } + }, + { + "fileOverride": "studyingthecorrupt-garothsjournal-5", + "lineInfo": { + "dialogue": "My studies have hit a wall. I know from my extended stay that humans will not corrupt through proximity or touch.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Garoth's Journal: Day 91" + } + }, + { + "fileOverride": "studyingthecorrupt-garothsjournal-6", + "lineInfo": { + "dialogue": "The corruption seems to affect everything differently. Land, animal, human, mind. It's incomprehensible.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Garoth's Journal" + } + }, + { + "fileOverride": "studyingthecorrupt-garothsjournal-7", + "lineInfo": { + "dialogue": "I fear there is nothing else to do but study the portal entrance for myself.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Garoth's Journal: Day 147" + } + }, + { + "fileOverride": "studyingthecorrupt-garothsjournal-8", + "lineInfo": { + "dialogue": "If there is a \"cure\" I'm sure it will have something to do with understanding the portal.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Garoth's Journal" + } + }, + { + "fileOverride": "studyingthecorrupt-garothsjournal-9", + "lineInfo": { + "dialogue": "I leave this journal in the hopes that it will be found and help those understand this plight better than I. Though I admit, my information is not helpful.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Garoth's Journal" + } + }, + { + "fileOverride": "studyingthecorrupt-garothsjournal-10", + "lineInfo": { + "dialogue": "The corruption acts independently and without intelligence. It does not think, it simply does. It's like an idea, a concept. An idea is something that can not be destroyed.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Garoth's Journal" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "studyingthecorrupt-adventuringmage-1", + "lineInfo": { + "dialogue": "What business does a Ragni soldier have here? These are restricted grounds!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Adventuring Mage" + } + }, + { + "fileOverride": "studyingthecorrupt-adventuringmage-2", + "lineInfo": { + "dialogue": "Finding Garoth's old camp? Yes, it's been said to be around here, but it's old, and the entrance has probably fallen apart.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Adventuring Mage" + } + }, + { + "fileOverride": "studyingthecorrupt-adventuringmage-3", + "lineInfo": { + "dialogue": "How about you look around here, it should be very near, and when you have found it, I'll help you open it!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Adventuring Mage" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "studyingthecorrupt-adventuringmage-4", + "lineInfo": { + "dialogue": "*Mumbling* ... Hey what are you doing here! This is off limits!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Adventuring Mage" + } + }, + { + "fileOverride": "studyingthecorrupt-adventuringmage-5", + "lineInfo": { + "dialogue": "Right, finding Garoth's old camp...", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Adventuring Mage" + } + }, + { + "fileOverride": "studyingthecorrupt-adventuringmage-6", + "lineInfo": { + "dialogue": "You say the blocked off entrance is over there?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Adventuring Mage" + } + }, + { + "fileOverride": "studyingthecorrupt-adventuringmage-7", + "lineInfo": { + "dialogue": "I doubt you'd be able to move it with any spell you know.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Adventuring Mage" + } + }, + { + "fileOverride": "studyingthecorrupt-adventuringmage-8", + "lineInfo": { + "dialogue": "Well, allow me to assist.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Adventuring Mage" + } + }, + { + "fileOverride": "studyingthecorrupt-adventuringmage-9", + "lineInfo": { + "dialogue": "The spells around here have to be a bit stronger to deal with the... Well, you know.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Adventuring Mage" + } + }, + { + "fileOverride": "studyingthecorrupt-adventuringmage-10", + "lineInfo": { + "dialogue": "Wait for it...", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Adventuring Mage" + } + }, + { + "fileOverride": "studyingthecorrupt-adventuringmage-11", + "lineInfo": { + "dialogue": "And there you go. I hope you find what you’re looking for. Get out of here as soon as you’re done.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Adventuring Mage" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "studyingthecorrupt-adventuringmage-12", + "lineInfo": { + "dialogue": "Walk inside then, soldier! What are you standing around here for?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Adventuring Mage" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "studyingthecorrupt-garothsnote-1", + "lineInfo": { + "dialogue": "This... was a mistake. Beyond the portal holds no answers.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Garoth's Note" + } + }, + { + "fileOverride": "studyingthecorrupt-garothsnote-2", + "lineInfo": { + "dialogue": "I can feel my mind slipping through my very mindscape, I fear this may be my very last entry.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Garoth's Note" + } + }, + { + "fileOverride": "studyingthecorrupt-garothsnote-3", + "lineInfo": { + "dialogue": "As I studied the portal closely, I found myself staring for hours, longing to enter. Just as I forced myself to leave.. I was pushed.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Garoth's Note" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "7": { + "dialogues": [ + { + "fileOverride": "studyingthecorrupt-pottur-1", + "lineInfo": { + "dialogue": "Stop, Stop, Stop!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Pottur" + } + }, + { + "fileOverride": "studyingthecorrupt-pottur-2", + "lineInfo": { + "dialogue": "This isn't working. Great, now a Ragni soldier is here for a progress report.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Pottur" + } + }, + { + "fileOverride": "studyingthecorrupt-pottur-3", + "lineInfo": { + "dialogue": "Soldier, we haven't made any progress getting to Garoth.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Pottur" + } + }, + { + "fileOverride": "studyingthecorrupt-pottur-4", + "lineInfo": { + "dialogue": "Truth is, we simply don't know enough about him to know how to deal with this.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Pottur" + } + }, + { + "fileOverride": "studyingthecorrupt-pottur-5", + "lineInfo": { + "dialogue": "Maybe if you could help us find out more we could figure this out.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Pottur" + } + }, + { + "fileOverride": "studyingthecorrupt-pottur-6", + "lineInfo": { + "dialogue": "Garoth, many years ago lived and studied in Elkurn. It might be a good place to start.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Pottur" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "studyingthecorrupt-pottur-7", + "lineInfo": { + "dialogue": "Welcome back soldier. Still no luck here I'm afraid. Did you find out anything about Garoth's past?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Pottur" + } + }, + { + "fileOverride": "studyingthecorrupt-pottur-8", + "lineInfo": { + "dialogue": "... I see. We had no idea he was corrupted. We didn't even consider that for a second!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Pottur" + } + }, + { + "fileOverride": "studyingthecorrupt-pottur-9", + "lineInfo": { + "dialogue": "Well if that's the case it might just be a simple case of...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Pottur" + } + }, + { + "fileOverride": "studyingthecorrupt-pottur-10", + "lineInfo": { + "dialogue": "Success!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Pottur" + } + }, + { + "fileOverride": "studyingthecorrupt-pottur-11", + "lineInfo": { + "dialogue": "I can't believe it was that simple. Magic can be like forcing a square into a circle, you just got to change your tact. Thanks for your help soldier.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Pottur" + } + } + ] + } + } + }, + "Supply and Delivery": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-ope-1", + "lineInfo": { + "dialogue": "Oh, man... What am I going to do now...", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-2", + "lineInfo": { + "dialogue": "O-oh! H-hello soldier! Wow, what a coincidence that we're both here... in Detlas... today...", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-3", + "lineInfo": { + "dialogue": "What? Don't look at me like that! We had a perfectly fair interaction which we both benefited from. I got the plant, and you... well. You gained experience?", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-4", + "lineInfo": { + "dialogue": "Look, alright, I get it! But I can't pay you back either way. The mayor sent me here to pick up a crate of supplies for the village.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-5", + "lineInfo": { + "dialogue": "The issue is... I've already run out of money on- uh, unrelated purchases. And even if I had the money, I couldn't buy the supply crate anyway...", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-6", + "lineInfo": { + "dialogue": "Those two over there who run the market banned me from ever using it after I tried to buy out the world's supplies of magical powders.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-7", + "lineInfo": { + "dialogue": "Look, it's not my fault I'm making big market moves. I'm just, you know- smarter than all these other folks!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-8", + "lineInfo": { + "dialogue": "... The point is. I could really use your help right now! I- I promise, I'll pay you back for it this time.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-9", + "lineInfo": { + "dialogue": "All you need to do is go over to the Trade Market, and buy the supply crate for me. Please?", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Ope" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-ope-10", + "lineInfo": { + "dialogue": "... What? They also banned you from the market?! Well, great. What're we supposed to do now?", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-11", + "lineInfo": { + "dialogue": "Well, do you have any other friends we could get involved? There was... that other soldier guy, right? His name was... Tim. Or something.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-12", + "lineInfo": { + "dialogue": "Look- alright, I get it, I'm a jerk who doesn't remember peoples' names! Could you just ask him to buy the supplies for us? He's our last hope... probably.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Ope" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-ope-13", + "lineInfo": { + "dialogue": "Well? Did you buy the supply crate yet?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-14", + "lineInfo": { + "dialogue": "All you need to do is go over to the Trade Market, and buy the supply crate for me. It's not that hard!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ope" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-ope-15", + "lineInfo": { + "dialogue": "Hey, good work! Now you'll need to pick up the supply crate.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ope" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-ope-16", + "lineInfo": { + "dialogue": "Perfect! Now, quickly, come back over here, before those two realize you're working with me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ope" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-ope-17", + "lineInfo": { + "dialogue": "You got the item? Good. Good, good good.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-18", + "lineInfo": { + "dialogue": "Okay! Now, we're onto step two. So, you see, this package still needs to make it to Alekin Village...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-19", + "lineInfo": { + "dialogue": "And. Well. You're the one holding the crate, not me! So... you know!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-20", + "lineInfo": { + "dialogue": "Well, you see. I really don't want to do it. And I'm not going to!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-21", + "lineInfo": { + "dialogue": "So either you run the supplies to Alekin Village... or we both run away and start new lives, and we avoid the consequences of our actions!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-22", + "lineInfo": { + "dialogue": "...no? No. Okay. Worth a shot. Well, you know the way by now! No need for me to, uh, get in your way! Heh...", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ope" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-ope-23", + "lineInfo": { + "dialogue": "Great! You know the way by now, surely! No need for me to, uh, get in your way!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-24", + "lineInfo": { + "dialogue": "Just take those supplies to Alekin Village, and. Well. Things will work out.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-25", + "lineInfo": { + "dialogue": "...probably.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ope" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-tasim-1", + "lineInfo": { + "dialogue": "Oh, hey soldier! Are you just here to hang out? Or- that look on your face tells me you're here for something else.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tasim" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-tasim-2", + "lineInfo": { + "dialogue": "...Oh. Well, that explains that. Though- is there a reason you can't get it yourself?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Tasim" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-tasim-3", + "lineInfo": { + "dialogue": "I... guess so? Is there a reason you can't do it yourself?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "supplyanddelivery-tasim-4", + "lineInfo": { + "dialogue": "...You're banned from the market? How did you even manage that? We haven't even been in Detlas for that long!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "supplyanddelivery-tasim-5", + "lineInfo": { + "dialogue": "You- what!? Nevermind, I don't actually want to know. Come on, lead the way. I'll buy... whatever it is you need.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Tasim" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-tasim-6", + "lineInfo": { + "dialogue": "You- what!? Nevermind, I don't actually want to know. Come on, lead the way. I'll buy whatever it is Ope needs.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Tasim: Tasim" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-tasim-7", + "lineInfo": { + "dialogue": "Alright. So I'm just buying a supply crate...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Tasim" + } + }, + { + "fileOverride": "supplyanddelivery-tasim-8", + "lineInfo": { + "dialogue": "Here it is. I wish you luck with... whatever it is you're up to.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tasim" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-ope-26", + "lineInfo": { + "dialogue": "He bought you the item? Good. Good, good good. Okay! That was... harder than expected.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ope" + } + }, + { + "fileOverride": "supplyanddelivery-ope-27", + "lineInfo": { + "dialogue": "Now, we're onto step two. So, you see, this package still needs to make it to Alekin Village...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ope" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-ope-28", + "lineInfo": { + "dialogue": "Hey! I- uh, I can't help but notice that. You're still here. With the crate. You need to bring it to Alekin Village, remember?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ope" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-mayoralvin-1", + "lineInfo": { + "dialogue": "Ah... So you do. I thought I had sent Ope to pick that up...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "supplyanddelivery-mayoralvin-2", + "lineInfo": { + "dialogue": "More of his shenanigans, I suppose. I am sorry you have had to deal with him twice.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "supplyanddelivery-mayoralvin-3", + "lineInfo": { + "dialogue": "When he returns to the village, I'm going to need to have a word with him... Ah, but of course, I should pay you for your troubles.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "supplyanddelivery-mayoralvin-4", + "lineInfo": { + "dialogue": "I hope these emeralds will suffice. Additionally... we have recently fixed up one of our broken carts, which makes the trip to Detlas and back.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Mayor Alvin" + } + }, + { + "fileOverride": "supplyanddelivery-mayoralvin-5", + "lineInfo": { + "dialogue": "You may feel free to use it whenever you like! As thanks for all you have done for us.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Mayor Alvin" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-wagondriver-1", + "lineInfo": { + "dialogue": "Howdy! Lookin' to hitch a ride off to Alekin Village? Sorry to say, but the wagon's broken down.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Wagon Driver" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-wagondriver-2", + "lineInfo": { + "dialogue": "Howdy! Lookin' to hitch a ride off to Detlas? Sorry to say, but the wagon's broken down.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Wagon Driver" + } + }, + { + "fileOverride": "supplyanddelivery-wagondriver-3", + "lineInfo": { + "dialogue": "I reckon it won't be long 'till it's fixed up, but you'll have to make the journey yourself for now.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Wagon Driver" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-wagondriver-4", + "lineInfo": { + "dialogue": "Howdy! Lookin' to hitch a ride off to Detlas? Well, lucky you! The wagon's been fixed up all nice and new!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Wagon Driver" + } + }, + { + "fileOverride": "supplyanddelivery-wagondriver-5", + "lineInfo": { + "dialogue": "Just hop on aboard, and I'll get you to Detlas in a jiffy!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Wagon Driver" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-wagondriver-6", + "lineInfo": { + "dialogue": "Ain't far to Detlas from here! We'll be there in a jiffy, just you wait.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Wagon Driver" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-wagondriver-7", + "lineInfo": { + "dialogue": "Howdy! Lookin' to hitch a ride off to Alekin Village? Well, lucky you! The wagon's been fixed up all nice and new!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Wagon Driver" + } + }, + { + "fileOverride": "supplyanddelivery-wagondriver-8", + "lineInfo": { + "dialogue": "Just hop on aboard, and I'll get you to Alekin Village in a jiffy!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Wagon Driver" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "supplyanddelivery-wagondriver-9", + "lineInfo": { + "dialogue": "Ain't far to Alekin Village from here! We'll be there in a jiffy, just you wait.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Wagon Driver" + } + } + ] + } + } + }, + "Taking the Tower": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "takingthetower-lieutenantvan-1", + "lineInfo": { + "dialogue": "Hello, soldier. Making your way to Detlas, are you?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Lieutenant Van" + } + }, + { + "fileOverride": "takingthetower-lieutenantvan-2", + "lineInfo": { + "dialogue": "Just carry on in the direction you're headed. You'll make it there in no time.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Lieutenant Van" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-1", + "lineInfo": { + "dialogue": "Oh, soldier! Hey! It's good to see you again- I didn't notice you arrived. Is Tasim with you?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-2", + "lineInfo": { + "dialogue": "Oh, shoot, I have something I need to get to. We'll have to talk later!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Aledar" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-3", + "lineInfo": { + "dialogue": "Oh, soldier! Hey! It's good to see you and Tasim again. Hope you didn't have too many adventures without me!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-4", + "lineInfo": { + "dialogue": "Tasim told me all about the corrupted force you took out. I wish I could have been here to help!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-5", + "lineInfo": { + "dialogue": "...Oh! Since you're here- I was about to head out to join Lieutenant Van's squad to take back a tower overtaken by corrupteds. You should come with us, too!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-6", + "lineInfo": { + "dialogue": "Well? What do you think? Want to get some real combat experience? It shouldn't take long.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-7", + "lineInfo": { + "dialogue": "Oh. Alright.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-8", + "lineInfo": { + "dialogue": "Well, I'll still be here for a while. If you change your mind, let me know!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Aledar" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-9", + "lineInfo": { + "dialogue": "Perfect. Well, no time better than the present! Let's get going.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-10", + "lineInfo": { + "dialogue": "Oh, wait. There's a stop we've got to make first. Follow me to the Powder Master!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Aledar" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-11", + "lineInfo": { + "dialogue": "Tasim's gone off to the training room, if you were looking for him. He's really jumping straight into it, which... is good! We all need to get stronger so we can defend the province.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Aledar" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-12", + "lineInfo": { + "dialogue": "Hey, you're back! Have you changed your mind? Want to join a raid on a corrupted tower?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Aledar" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-13", + "lineInfo": { + "dialogue": "Alright, so. There's something I've been told about the tower we're going to be attacking which we can prepare for!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-14", + "lineInfo": { + "dialogue": "Apparently, the big bad at the top of the tower is weak to ❉ Water damage! And so, here we are at the Powder Master.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-15", + "lineInfo": { + "dialogue": "You can apply various elemental powders to your weapons here, which lets them deal types of damage they might not have been able to before.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-16", + "lineInfo": { + "dialogue": "In this case, you can apply a ❉ Water powder, so that your weapon will be more effective against the corrupted enemies at the tower!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-17", + "lineInfo": { + "dialogue": "I, uh... don't remember the whole elemental speech off the top of my head. If you want to know more about those, you'll have to talk to Captain Ragon in the barracks. He has a whole course about it!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-18", + "lineInfo": { + "dialogue": "...The point is- here. Take this elemental powder and talk to the Powder Master to apply it. Let me know when you're done!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Aledar" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-19", + "lineInfo": { + "dialogue": "Got the powder on your weapon? Good, that means we're ready.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-20", + "lineInfo": { + "dialogue": "Lieutenant Van and the others are by that bunch of houses in the Detlas Suburbs- you probably saw it on your way in.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-21", + "lineInfo": { + "dialogue": "Lead the way! I'll be right behind you.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Aledar" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-22", + "lineInfo": { + "dialogue": "Let's keep going! Lieutenant Van and the others are by that bunch of houses in the Detlas Suburbs, remember?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "takingthetower-lieutenantvan-3", + "lineInfo": { + "dialogue": "Ah, Aledar! Good to see you here. Who's this with you?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Lieutenant Van" + } + }, + { + "fileOverride": "takingthetower-aledar-23", + "lineInfo": { + "dialogue": "This is soldier, sir. They're here to join our assault, if you'll allow it.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-lieutenantvan-4", + "lineInfo": { + "dialogue": "Hm... Well, I don't see why not. The more the merrier, that's what I say.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Lieutenant Van" + } + }, + { + "fileOverride": "takingthetower-lieutenantvan-5", + "lineInfo": { + "dialogue": "If everyone's here, we can begin. Here's the plan! We'll need to fight off some of the forces near the base of the tower, so that someone can climb to the top.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Lieutenant Van" + } + }, + { + "fileOverride": "takingthetower-lieutenantvan-6", + "lineInfo": { + "dialogue": "It doesn't much matter who does the job, so long as it gets done. If you see an opportunity- go for it!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Lieutenant Van" + } + }, + { + "fileOverride": "takingthetower-lieutenantvan-7", + "lineInfo": { + "dialogue": "If you need to retreat, or the corrupteds are slain, regroup here! Understood?", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Lieutenant Van" + } + }, + { + "fileOverride": "takingthetower-aledar-24", + "lineInfo": { + "dialogue": "Yes, sir!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-lieutenantvan-8", + "lineInfo": { + "dialogue": "Good. Alright soldiers, let's take back that tower!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Lieutenant Van" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "takingthetower-lieutenantvan-9", + "lineInfo": { + "dialogue": "Go on, head for the tower! If we're lucky, we'll be able to clear out the corrupteds who have taken over it.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Lieutenant Van" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-25", + "lineInfo": { + "dialogue": "Alright. It's time to take on the tower! We've got this, soldier.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-26", + "lineInfo": { + "dialogue": "Hey, soldier, there you are! Come on, let's climb that tower!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-27", + "lineInfo": { + "dialogue": "We did it, we killed the corrupted! Come on, let's get back to Lieutenant Van with the news!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-28", + "lineInfo": { + "dialogue": "We did it! Let's get back to Lieutenant Van and tell him the news.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "takingthetower-lieutenantvan-10", + "lineInfo": { + "dialogue": "It seems everyone has returned. Well? Have the corrupted forces been vanquished?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Lieutenant Van" + } + }, + { + "fileOverride": "takingthetower-aledar-29", + "lineInfo": { + "dialogue": "They have, lieutenant! soldier and I reached the top and defeated the corrupted.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-lieutenantvan-11", + "lineInfo": { + "dialogue": "Fine work, soldiers! Another great victory for the Detlas army. With the leader killed, it shouldn't be too difficult to clear out the rest of them.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Lieutenant Van" + } + }, + { + "fileOverride": "takingthetower-lieutenantvan-12", + "lineInfo": { + "dialogue": "I'll let the Admiral know of your victory today, soldiers. And- here, some payment for your work.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Lieutenant Van" + } + }, + { + "fileOverride": "takingthetower-lieutenantvan-13", + "lineInfo": { + "dialogue": "The two of you have a promising future. I look forward to serving with you in the future!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Lieutenant Van" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-30", + "lineInfo": { + "dialogue": "That was good fighting out there, soldier! I'm going to head back to Detlas for now, see if there's anything else I can do around there.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Aledar" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "takingthetower-lieutenantvan-14", + "lineInfo": { + "dialogue": "We'll take care of the remaining stragglers, don't you worry. Thank you for your work today, soldier.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Lieutenant Van" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-31", + "lineInfo": { + "dialogue": "Good to see you, soldier! I haven't been up to much since we took back the Raging Tower.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-32", + "lineInfo": { + "dialogue": "I've been waiting for Tasim to finish up whatever he's been doing. He's been nonstop training since he got here, you know.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-33", + "lineInfo": { + "dialogue": "Hey, maybe it'd be worth your time to join him! If you talk to Captain Ragon over there, he'll probably teach you some things.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Aledar" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-34", + "lineInfo": { + "dialogue": "Perfect! Well, no time better than the present! Let's get going.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-35", + "lineInfo": { + "dialogue": "Oh, wait. There's a stop we've got to make first. Follow me to the Powder Master!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Aledar" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "takingthetower-aledar-36", + "lineInfo": { + "dialogue": "Oh. Alright.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Aledar" + } + }, + { + "fileOverride": "takingthetower-aledar-37", + "lineInfo": { + "dialogue": "Well, I'll still be here for a while. If you change your mind, let me know!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Aledar" + } + } + ] + } + } + }, + "Talking Mushroom - World": { + "contexts": { + "abondedmines": { + "dialogues": [ + { + "fileOverride": "talkingmushroomabondedmines", + "lineInfo": { + "dialogue": "... WOW. I'M SPEECHLESS. HUMAN, ARE YOU SEEING THIS PLACE? WITH THE NUMBER OF EMERALDS HERE... WE'RE GONNA BE RICH!!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "afterrecipefordistaster": { + "dialogues": [ + { + "fileOverride": "talkingmushroomafterrecipefordistaster", + "lineInfo": { + "dialogue": "OH MY, LOOK WHO'S BACK. HERE I THOUGHT I WAS FREE OF YOUR GRASP AND THEN YOU COME BACK HERE.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ] + }, + "almujsemeraldlabyrinth": { + "dialogues": [ + { + "fileOverride": "talkingmushroom-almujsemeraldlabyrinth", + "lineInfo": { + "dialogue": "LOOK AT THIS! WHAT DO YOU MEAN WHAT?! OPEN YOUR EYES! WE'RE RICH! MODESTY CAN GO IN THE TRASH, HUMAN.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "baabsabondedmines": { + "dialogues": [ + { + "fileOverride": "talkingmushroom-baabsabondedmines-1", + "lineInfo": { + "dialogue": "...AND I HAD THOUGHT SOME OF YOUR PREVIOUS LOONEY ADVENTURES HAD INDICATED YOU WERE A BUMBLING IDIOT, BUT YOU'VE REALLY OUTDONE YOURSELF... WHERE EVEN ARE WE?!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "talkingmushroom-baabsabondedmines-2", + "lineInfo": { + "dialogue": "KNOWING YOUR ADVENTURING TRACK RECORD, IT LEADS ME TO BELIEVE IT'S BEST TO AVOID THIS PLACE, UNLESS YOU'RE LOOKING FOR SOME DUMB SECRET THAT NO ONE CARES ABOUT.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "talkingmushroom-baabsabondedmines-3", + "lineInfo": { + "dialogue": "DO I HAVE ANY SECRETS YOU ASK? WELL THE KEY TO SUCCESS IS TO HIDE AND LOCK AWAY YOUR SECRETS AND TO NEVER TELL THEM TO ANYONE. YOU DON'T COUNT AS ANYONE. YOU'RE TOO DUMB FOR THAT.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "talkingmushroom-baabsabondedmines-4", + "lineInfo": { + "dialogue": "ON A SIDE NOTE, I'VE ALWAYS THOUGHT ABOUT SOMETHING... WHAT COMPELS YOU TO BE AN ADVENTURER AND EXPLORE THE WORLD? FIRST YOU BRING ME HERE, BUT WHAT NEXT? THE MIDDLE OF NOWHERE?!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "backstorry": { + "dialogues": [ + { + "fileOverride": "talkingmushroombackstorry", + "lineInfo": { + "dialogue": "Y-YOU CAN'T BE SERIOUS. YOU... YOU SHOULDN'T BE HERE. I LOST THAT KEY A LONG TIME AGO, BUT SOMEHOW... YOU FOUND IT AND MADE YOUR WAY HERE. RIGHT, LET ME EXPLAIN.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "bearzoo": { + "dialogues": [ + { + "fileOverride": "talkingmushroombearzoo", + "lineInfo": { + "dialogue": "YOU KNOW, THIS PLACE IS NICE. MUCH BETTER THAN ALL THE OTHER PLACES YOU GO TO.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "beforeeyefight": { + "dialogues": [ + { + "fileOverride": "talkingmushroombeforeeyefight", + "lineInfo": { + "dialogue": "ALRIGHT, HOLD UP, LET ME GET SOMETHING STRAIGHT HERE. YOU ACTUALLY THINK IT'S A GOOD IDEA TO GO INSIDE THAT OMINOUS DOME THAT'S LITERALLY ERUPTING WITH THIS HORRIBLE DARK SENSATION FOR... WHAT REASON??.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "beforerecipefordisaster": { + "dialogues": [ + { + "fileOverride": "talkingmushroombeforerecipefordisaster", + "lineInfo": { + "dialogue": "OH GREAT, ANOTHER ONE. JUST FANTASTIC. WHAT'S WITH THE FACE, HUH? NEVER SEEN A TALKING MUSHROOM BEFORE? GO AWAY!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ] + }, + "botomlesspit": { + "dialogues": [ + { + "fileOverride": "talkingmushroombotomlesspit", + "lineInfo": { + "dialogue": "OH. OH, I DON'T- I DON'T LIKE THIS PLACE. AT ALL. WH-WHERE ARE WE??", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "bucie": { + "dialogues": [ + { + "fileOverride": "talkingmushroombucie", + "lineInfo": { + "dialogue": "SO, WHAT IS THIS PLACE? IS IT A BRIDGE, OR IS IT A TOWN? MAKE UP YOUR DAMN MIND, VILLAGERS!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "canarycallscave": { + "dialogues": [ + { + "fileOverride": "talkingmushroomcanarycallscave", + "lineInfo": { + "dialogue": "URGH, WHAT IS THAT AWFUL STENCH?! IT'S ALMOST OVERPOWERING YOUR OWN RANCIDNESS! I MEAN, DO YOU EVER BATHE?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "corkusbastion": { + "dialogues": [ + { + "fileOverride": "talkingmushroomcorkusbastion", + "lineInfo": { + "dialogue": "I BET THE PERSON WHO LIVES HERE DIDN'T EVEN COME UP WITH THIS ROBOT. IT'S TOO GOOD TO BE ORIGINAL.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "corkuscity": { + "dialogues": [ + { + "fileOverride": "talkingmushroomcorkuscity", + "lineInfo": { + "dialogue": "HEY MEATBAG, DON'T YOU THINK YOU'RE A LITTLE FAT FOR THAT THING? WAIT, YOU'RE SERIOUS? STO-AAAHHH!!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "corkuscloud": { + "dialogues": [ + { + "fileOverride": "talkingmushroomcorkuscloud", + "lineInfo": { + "dialogue": "HUH, THIS VIEW IS GOOD. PSST... I DON'T WANT TO ACKNOWLEDGE THE FACT THAT WE'RE STANDING ON A CLOUD IN FEAR OF IT FALLING APART LIKE SOME CLICHÉ... GOOOOOD VIEW.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "deathrealm": { + "dialogues": [ + { + "fileOverride": "talkingmushroomdeathrealm", + "lineInfo": { + "dialogue": "ARGH, I'M CURSED, I SWEAR IT! EVEN THE SWEET RELEASE OF DEATH HASN'T GOTTEN ME AWAY FROM YOU! YOU'RE LIKE A COCKROACH!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "derneltreeguardien": { + "dialogues": [ + { + "fileOverride": "talkingmushroomderneltreeguardien", + "lineInfo": { + "dialogue": "A TREE GUARDIAN? SERIOUSLY?! THAT'S ABOUT AS BELIEVABLE AS A TALKING MUSH...OH WAIT. HUH. CARRY ON.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "desert": { + "dialogues": [ + { + "fileOverride": "talkingmushroomdesert", + "lineInfo": { + "dialogue": "WHAT IS THIS PLACE? IT SMELLS LIKE DUST ... AND SAND. WEIRD.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "dooroftime": { + "dialogues": [ + { + "fileOverride": "talkingmushroomdooroftime", + "lineInfo": { + "dialogue": "WAIT, I'VE HEARD OF THIS PLACE. TIME GOES SLOWER HERE, DOESN'T IT?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "elkurn": { + "dialogues": [ + { + "fileOverride": "talkingmushroomelkurn", + "lineInfo": { + "dialogue": "OH, HEY, THIS PLACE IS NICE! IT HAS EVERYTHING A PLACE COULD NEED! MUSHROOMS, COZY HOUSES, BEINGS OF GREAT POWER...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "endportal": { + "dialogues": [ + { + "fileOverride": "talkingmushroomendportal", + "lineInfo": { + "dialogue": "PLEASE. LISTEN TO ME FOR ONE MOMENT. IF YOU GO ANYWHERE NEAR THAT... THING... WE ARE GOING TO DIE. PLEASE. GO BACK.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "eyeballforest": { + "dialogues": [ + { + "fileOverride": "talkingmushroomeyeballforest", + "lineInfo": { + "dialogue": "...ALRIGHT. I'VE ACCEPTED THAT YOU GO TO WEIRD PLACES, BUT THIS CROSSES THE LINE. WHERE THE BLOODY HELL ARE WE?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "fantasticvoyage": { + "dialogues": [ + { + "fileOverride": "talkingmushroomfantasticvoyage", + "lineInfo": { + "dialogue": "HOW DID YOU MANAGE TO GET ME TO SOMEPLACE DARKER THAN THE INSIDE OF YOUR SATCHEL? WHAT, DID YOU CRAWL UP SOMETHING'S-", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "feathersflydog": { + "dialogues": [ + { + "fileOverride": "talkingmushroomfeathersflydog", + "lineInfo": { + "dialogue": "SATISFIED YET? CAN YOU TRY UNHINGING HIS JAW AND PUTTING YOUR ARM IN THERE?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "flightindistress": { + "dialogues": [ + { + "fileOverride": "talkingmushroomflightindistress", + "lineInfo": { + "dialogue": "*GASP* *PANT* IS THERE ZERO AIR UP HERE? GET ME DOWN THIS INSTANT! OR IS YOUR BRAIN SO TINY IT DOESN'T NEED OXYGEN TO SURVIVE?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "forbiddenprison": { + "dialogues": [ + { + "fileOverride": "talkingmushroomforbiddenprison", + "lineInfo": { + "dialogue": "... WOW. I'M... I'M ACTUALLY SHOCKED.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "frumagate": { + "dialogues": [ + { + "fileOverride": "talkingmushroomfrumagate", + "lineInfo": { + "dialogue": "HEY HEY HEY, WHERE DO YOU THINK YOU'RE GOING? THERE'S A BOUNTY ON MY HEAD HERE SINCE... THE INCIDENT... CAN YOU JUST AVOID THIS PLACE LIKE YOU AVOID MY ADVICE?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "geilboardcemetary": { + "dialogues": [ + { + "fileOverride": "talkingmushroomgeilboardcemetary", + "lineInfo": { + "dialogue": "I'M GONNA BE STUCK WITH YOU FOREVER, AREN'T I? MAY AS WELL THROW ME IN ONE OF THOSE GRAVES RIGHT NOW!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "guildhall": { + "dialogues": [ + { + "fileOverride": "talkingmushroom-guildhall-1", + "lineInfo": { + "dialogue": "PSST, HEY IDIOT. DOESN'T THIS PLACE REMIND YOU OF THAT MASSIVE TOWER WITH THE BIG EYE ON IT? YOU KNOW, IN THAT... PLACE?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "talkingmushroom-guildhall-2", + "lineInfo": { + "dialogue": "NOW THAT I THINK OF IT, MOST OF THE STRUCTURES WE COME ACROSS LOOK LIKE THAT TOWE-", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "heartoflevingar": { + "dialogues": [ + { + "fileOverride": "talkingmushroomheartoflevingar", + "lineInfo": { + "dialogue": "OH NO. WHAT DID THAT BUTTON DO? WHAT DID THE BUTTON DO? DID YOU BREAK IT? I BET YOU BROKE IT!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "hiddencamp": { + "dialogues": [ + { + "fileOverride": "talkingmushroomhiddencamp", + "lineInfo": { + "dialogue": "WOAH, WAIT. WHERE ARE WE? WHAT ARE YOU DOING HE-", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "houseoftwain": { + "dialogues": [ + { + "fileOverride": "talkingmushroomhouseoftwain", + "lineInfo": { + "dialogue": "WOW, LOTS OF POWERFUL MAGIC HERE, HUH?? MUCH STRONGER THAN ANYTHING YOU COULD EVER DO, THAT'S FOR SURE!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "kandon": { + "dialogues": [ + { + "fileOverride": "talkingmushroomkandon", + "lineInfo": { + "dialogue": "REALLY COOL CITY, HUH? BUILT UP ON THE CLIFFS, VERY STYLISH, IS THAT WHAT YOU'RE THINKING?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "lientrance": { + "dialogues": [ + { + "fileOverride": "talkingmushroomlientrance", + "lineInfo": { + "dialogue": "OH, I'VE HEARD OF THIS PLACE!! THERE'S SOME CRAZY STRONG MECHS IN THERE, RIGHT?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "lightmonolith": { + "dialogues": [ + { + "fileOverride": "talkingmushroomlightmonolith", + "lineInfo": { + "dialogue": "WOW... THIS PLACE LOOKS... NICE, ACTUALLY. IT LOOKS NICE! YOU KNOW, I THINK DESPITE THE HORRORS WE'VE GONE THROUGH TO GET HERE, I'M GLAD WE CAME HERE.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "lightrealmpond": { + "dialogues": [ + { + "fileOverride": "talkingmushroomlightrealmpond", + "lineInfo": { + "dialogue": "SO, I'VE BEEN WONDERING, DO YOU OFTEN MAKE A HABIT OF GOING PLACES WHERE YOU SHOULDN'T BE GOING?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "lightrealmtree": { + "dialogues": [ + { + "fileOverride": "talkingmushroomlightrealmtree", + "lineInfo": { + "dialogue": "HEY, HUMAN, TAKE A LOOK!! YOU CAN SEE THE WHOLE LIGHT REALM FROM UP HERE!!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "llevingar": { + "dialogues": [ + { + "fileOverride": "talkingmushroomllevingar", + "lineInfo": { + "dialogue": "WOW, REAL GRAND CITY HERE, HUH? THIS PLACE IS HUGE! AND PROBABLY A MESS TO NAVIGATE, REALLY POORLY DESIGNED IF YOU THINK ABOUT IT.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "mehme": { + "dialogues": [ + { + "fileOverride": "talkingmushroommehme", + "lineInfo": { + "dialogue": "WOW, GET A LOAD OF THIS GUY! HE LOOKS DUMBER THAN YOU DO, HUMAN!! A LITTLE FAMILIAR, ACTUALLY... SORT OF LIKE-", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "mesacanyoneggs": { + "dialogues": [ + { + "fileOverride": "talkingmushroommesacanyoneggs", + "lineInfo": { + "dialogue": "I KNOW THESE CANYON EGGS GET LARGE BUT I HAVE TO ASK, HOW DID THE BIRD FIT IN HERE TO MANAGE THIS?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "moltencoreprison": { + "dialogues": [ + { + "fileOverride": "talkingmushroommoltencoreprison", + "lineInfo": { + "dialogue": "... HEY, HUMAN, TELL ME SOMETHING. WHY ARE YOU OUT HERE AND NOT IN ONE OF THOSE CELLS?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "moltenheights": { + "dialogues": [ + { + "fileOverride": "talkingmushroommoltenheights", + "lineInfo": { + "dialogue": "YOU KNOW WHAT, TO HECK WITH THIS! I'M BAILING, SEE YA LATER! HAVE A TERRIBLE LIFE, YOU INGRATE!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "monumenttosifried": { + "dialogues": [ + { + "fileOverride": "talkingmushroommonumenttosifried", + "lineInfo": { + "dialogue": "HEY IDIOT, WHERE ARE WE?? THIS PLACE SMELLS LIKE-", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "mountwynn": { + "dialogues": [ + { + "fileOverride": "talkingmushroommountwynn", + "lineInfo": { + "dialogue": "WHY IS IT SO HOT IN HERE? OH, YOU HAD BETTER NOT BE THINKING WHAT I THINK YOU'RE THINKING! I'M NOT GONNA BE A ROASTED MUSHROOM TODAY!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "mushroomcave": { + "dialogues": [ + { + "fileOverride": "talkingmushroommushroomcave", + "lineInfo": { + "dialogue": "HEY NUMBSKULL, LEAVE ME HERE, ALRIGHT? I SAW SOME NICE CAPS OVER THERE.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "nexusoflight": { + "dialogues": [ + { + "fileOverride": "talkingmushroomnexusoflight", + "lineInfo": { + "dialogue": "HEY IDIOT, WHERE ARE WE THIS TIME! IT FEELS ALL... BRIGHT, ALMOST EXCESSIVELY SO-", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "nivadetlasbridge": { + "dialogues": [ + { + "fileOverride": "talkingmushroomnivadetlasbridge", + "lineInfo": { + "dialogue": "THIS BRIDGE SEEMS DIFFERENT SINCE YOU LAST CROSSED IT, OR IS IT JUST ME? IT MIGHT JUST BE YOUR 247TH TIME CROSSING IT THAT'S DISORIENTATING ME... OR DID I LOSE COUNT AGAIN?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "onethousandmetersunder": { + "dialogues": [ + { + "fileOverride": "talkingmushroomonethousandmetersunder", + "lineInfo": { + "dialogue": "HEY DWEEB, LOOK OVER THERE! I THINK IT'S... PEOPLE?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "orangewybelactor": { + "dialogues": [ + { + "fileOverride": "talkingmushroomorangewybelactor", + "lineInfo": { + "dialogue": "I KNEW IT! IT'S ALL A CONSPIRACY!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "otherworldyoccurence": { + "dialogues": [ + { + "fileOverride": "talkingmushroomotherworldyoccurence", + "lineInfo": { + "dialogue": "GREAT JOB! YOU SOMEHOW MANAGED TO FALL OUT OF REALITY BY DOING ABSOLUTELY NOTHING!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "outofmymind": { + "dialogues": [ + { + "fileOverride": "talkingmushroomoutofmymind", + "lineInfo": { + "dialogue": "HAHA, LOOK! YOU'RE PRACTICALLY ONE OF THEM, YOU FIT RIGHT IN! NOW STAY HERE LIKE A GOOD ANIMAL AND LET ME GO MY OWN WAY.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "outofmymind2": { + "dialogues": [ + { + "fileOverride": "talkingmushroomoutofmymind2", + "lineInfo": { + "dialogue": "WOAH, WHAT THE HELL WAS THAT! THIS IS SOMEONE'S PRIVATE PROPERTY, YOU CAN'T JUST GO AROUND RANDOMLY BREAKING PEOPLE'S WINDOWS!!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "outsideeo": { + "dialogues": [ + { + "fileOverride": "talkingmushroomoutsideeo", + "lineInfo": { + "dialogue": "...I DON'T KNOW WHAT MANIC IDEA YOU'RE ABOUT TO HAVE NOW, BUT I'M GOING TO PUT AN END TO IT RIGHT NOW. YOU DO NOT WANT TO GO IN THERE.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "ozothgut": { + "dialogues": [ + { + "fileOverride": "talkingmushroomozothgut", + "lineInfo": { + "dialogue": "WHO KNEW BEING EATEN ALIVE BY A FIRE-BREATHING DRAGON IS BETTER THAN BEING STUCK WITH YOU?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "prick": { + "dialogues": [ + { + "fileOverride": "talkingmushroomprick", + "lineInfo": { + "dialogue": "PRICK.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "psiloshouse": { + "dialogues": [ + { + "fileOverride": "talkingmushroompsiloshouse", + "lineInfo": { + "dialogue": "BRILLIANT. ABSOLUTELY BRILLIANT! HOW BRAINDEAD ARE YOU?! THERE'S NOTHING HERE!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "qirahive": { + "dialogues": [ + { + "fileOverride": "talkingmushroomqirahive", + "lineInfo": { + "dialogue": "\"WOW, WHAT EVEN IS THIS PLACE?? FEELS OMINOUS, LOOKS LAME, WHAT ARE WE DOING HERE? DROP ME OFF SOMEPLACE ELSE!\"", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Talking Mushroom" + } + } + ] + }, + "ragni": { + "dialogues": [ + { + "fileOverride": "talkingmushroomragni", + "lineInfo": { + "dialogue": "WHAT IN THE NAME OF ALL THAT IS HOLY IS GOING THROUGH YOUR HEAD?! WE'RE MILES FROM THE SKY ISLANDS!! WHERE IS THIS PLACE?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "ragnioutskirts": { + "dialogues": [ + { + "fileOverride": "talkingmushroomragnioutskirts", + "lineInfo": { + "dialogue": "IF I HAD A MOVABLE NECK, I'D BE TWISTING IT AROUND TO FACE YOU WITH UTTER CONFUSION.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "rat1": { + "dialogues": [ + { + "fileOverride": "talkingmushroomrat1", + "lineInfo": { + "dialogue": "WAIT, I HEAR SOMETHING SQUEAKI- HEY, LOOK! THERE'S A RAT!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "rat2": { + "dialogues": [ + { + "fileOverride": "talkingmushroomrat2", + "lineInfo": { + "dialogue": "WAIT- IT'S RUNNING AWAY! FOLLOW IT!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "rat3": { + "dialogues": [ + { + "fileOverride": "talkingmushroomrat3", + "lineInfo": { + "dialogue": "WHA-... DID WE JUST WATCH A RAT... KILL ITSELF? WHAT THE HELL!?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "regularisland": { + "dialogues": [ + { + "fileOverride": "talkingmushroom-regularisland-1", + "lineInfo": { + "dialogue": "HEY, LOOK, FINALLY, NORMAL PEOPLE! JUST LEAVE ME HERE, LITERALLY ANYBODY WOULD BE BETTER THAN YOU!!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "talkingmushroom-regularisland-2", + "lineInfo": { + "dialogue": "WHAT? WHAT DO YOU MEAN THEY'RE NOT HUMANS? THEY LOOK HUMAN TO ME!!! OH, SO WHAT, ANYBODY WHO'S DIFFERENT FROM YOU IS SUDDENLY 'NOT HUMAN???'", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "talkingmushroom-regularisland-3", + "lineInfo": { + "dialogue": "WOW! AND HERE I WAS THINKING YOU COULDN'T GET ANY WORSE! LET'S JUST GET OUT OF HERE BEFORE THEY HEAR YOU AND START TO TURN ON YOU!!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "rivalbuisness": { + "dialogues": [ + { + "fileOverride": "talkingmushroomrivalbuisness", + "lineInfo": { + "dialogue": "WOAH, HEY, WAIT, WHAT ARE WE DOING HERE?? HUMAN, I'VE BEEN PERMANENTLY EXILED FROM THIS PLACE EVER SINCE I SET UP THAT MUSHROOM SHOP HERE FIVE YEARS AGO!!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "rolportal": { + "dialogues": [ + { + "fileOverride": "talkingmushroomrolportal", + "lineInfo": { + "dialogue": "YOU KNOW, HAVE I EVER TOLD YOU JUST HOW MUCH I HA-", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "secretariodopassage": { + "dialogues": [ + { + "fileOverride": "talkingmushroomsecretariodopassage", + "lineInfo": { + "dialogue": "WOAH, HEY, WH-WHAT ARE WE DOING HERE, HUMAN?? IT'S... IT'S PROBABLY DANGEROUS IN THERE! Y-YOU WOULDN'T WANT TO DIE, WOULD YOU???", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "sleazypotionmerchant": { + "dialogues": [ + { + "fileOverride": "talkingmushroomsleazypotionmerchant", + "lineInfo": { + "dialogue": "WOW, WOW! I CAN'T BELIEVE THIS! THIS SLEAZY POTION MERCHANT CAN JUST HAVE A SECRET CRATE OF MUSHROOMS THAT HE'S PROBABLY TRAFFICKING ILLEGALLY, AND NOBODY BATS AN EYE...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "southcorkuscave": { + "dialogues": [ + { + "fileOverride": "talkingmushroom-southcorkuscave-1", + "lineInfo": { + "dialogue": "YOU KNOW, IT REALLY ASTONISHES ME, THE KINDS OF PLACES YOU GET TO.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "talkingmushroom-southcorkuscave-2", + "lineInfo": { + "dialogue": "LIKE, WHAT EVEN IS THIS PLACE? WHERE ARE WE? WHY IS THIS HERE??", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Talking Mushroom" + } + }, + { + "fileOverride": "talkingmushroom-southcorkuscave-3", + "lineInfo": { + "dialogue": "THE ANSWERS TO THOSE QUESTIONS, IN ORDER, ARE WHO KNOWS, WHO KNOWS, AND WHO KNOWS?!?!?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "tcc": { + "dialogues": [ + { + "fileOverride": "talkingmushroomtcc", + "lineInfo": { + "dialogue": "WOW. NOW THAT IS A BIG GUY. IT LOOKS ANCIENT! I WONDER WHO COULD'VE BUILT SOMETHING LIKE THIS...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "therck": { + "dialogues": [ + { + "fileOverride": "talkingmushroomtherck", + "lineInfo": { + "dialogue": "... STAIRWAY TO HEAVEN, HUH? I DON'T KNOW ABOUT YOU, BUT I DON'T GET THE APPEAL.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "toa": { + "dialogues": [ + { + "fileOverride": "talkingmushroomtoa", + "lineInfo": { + "dialogue": "WOW, GET A LOAD OF THIS PLACE! VERY FANCY. I'M SURE WHATEVER IT IS, IT'S PROBABLY VERY IMPORTANT!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ] + }, + "trippyforest": { + "dialogues": [ + { + "fileOverride": "talkingmushroomtrippyforest", + "lineInfo": { + "dialogue": "OI, WHY'RE YOU TAKING ME ALL THE WAY OUT HERE? MY COUSIN LIVES HERE, I HATE HIM!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "wybelisland": { + "dialogues": [ + { + "fileOverride": "talkingmushroomwybelisland", + "lineInfo": { + "dialogue": "OH, LOOK AT THESE THINGS. THEY'RE KIND OF CUTE. A LITTLE BIT TOO CUTE... IT'S A CONSPIRACY, I TELL YOU!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "yahya": { + "dialogues": [ + { + "fileOverride": "talkingmushroomyahya", + "lineInfo": { + "dialogue": "HEY, THIS PLACE HAS GOT SOME NICE LOOKING CAPS! DROP ME OFF HERE!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Talking Mushroom" + } + } + ] + }, + "zhight": { + "dialogues": [ + { + "fileOverride": "talkingmushroomzhight", + "lineInfo": { + "dialogue": "WAIT, YOU'RE ACTUALLY FALLING FOR THIS STUFF? SERIOUSLY?! IT'S CLEARLY JUST A BUNCH OF SEEDS PAINTED GOLD, ARE YOU QUITE LITERALLY BLIND?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Talking Mushroom" + } + } + ], + "settings": { + "followPlayer": true + } + } + } + }, + "Temple of the Legends": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "templeoflegends-garull-1", + "lineInfo": { + "dialogue": "GWUH! Oh god, don't scare me like that! Who... Who even are you?!", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Garull" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "templeoflegends-garull-2", + "lineInfo": { + "dialogue": "Thank you for listening to me about not being so quiet coming over here. I'm guessing you've got everything?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Garull" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "templeoflegends-garull-3", + "lineInfo": { + "dialogue": "Oh, a visitor? Interesting. I thought I only knew about this cave, considering I was called crazy by my master.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Garull" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "templeoflegends-garull-4", + "lineInfo": { + "dialogue": "Ah, need help about the items? I'm fine with giving you a refresher, yeah.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Garull" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "templeoflegends-garull-5", + "lineInfo": { + "dialogue": "If you see Kelight again, tell him \"I told you so\" about the Creepers!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Garull" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "templeoflegends-jorkin-1", + "lineInfo": { + "dialogue": "You may want to get out of here, traveller. The Nether is very dangerous!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Jorkin" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "templeoflegends-jorkin-2", + "lineInfo": { + "dialogue": "You have the Light Dust, then? Hand it here, I want to see something.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Jorkin" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-1", + "lineInfo": { + "dialogue": "I see you want to enter this mighty temple! Do not deny it, I see it in your eyes.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-2", + "lineInfo": { + "dialogue": "It is only natural, after all, to want to join the esteemed ranks of the Legends, such as myself!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-3", + "lineInfo": { + "dialogue": "However, as a Legend, I am very busy, autographs and the sort, and that's not to mention my guard duty! Let me see if you are even worth my time.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-4", + "lineInfo": { + "dialogue": "Hm... At a glance, you don't look anything special! Why, you may as well be a common soldier, for all I can imagine!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-5", + "lineInfo": { + "dialogue": "Tell me, why should I bother giving you this chance? Because thus far, I'm not impressed.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Kelight" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-6", + "lineInfo": { + "dialogue": "Hm? What are these oddities you have with you? Curious, yet useless. Allow me to dispose of them for you.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kelight" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-7", + "lineInfo": { + "dialogue": "Indeed. Now, run along. Return when you have something truly impressive to show me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kelight" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-8", + "lineInfo": { + "dialogue": "So you return! Very interesting. That certainly puts you a level beyond any others who have tried... But it is not enough.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-9", + "lineInfo": { + "dialogue": "So? Tell me, why should I bother giving you this chance? Because thus far, I'm not impressed.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Kelight" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-10", + "lineInfo": { + "dialogue": "You're stubborn? Hah! Don't make me laugh. Do you think you are the first to attempt entry without anything great to show for it?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-11", + "lineInfo": { + "dialogue": "Of course you aren't. Run along, now. Return when you have something truly impressive to show for yourself.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Kelight" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-12", + "lineInfo": { + "dialogue": "So you are! And so am I. You will not get past me that easily, I'm afraid.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-13", + "lineInfo": { + "dialogue": "Off you go, then. Don't come back unless you have something to show!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Kelight" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-14", + "lineInfo": { + "dialogue": "Yes, I am starting to get that impression. You are such a headache, you know that?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Kelight" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-15", + "lineInfo": { + "dialogue": "Fine! Fine. I'll give you a chance. I'm certain you won't succeed, but anything to get you to stop bothering me.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-16", + "lineInfo": { + "dialogue": "Ahem. Hidden deep within a nearby cave is a beast beyond compare. Corrupted, yes, but nothing like the foes you may have faced before.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-17", + "lineInfo": { + "dialogue": "Rumor has it this creature was one of the miners which first ventured into the Nether Portal... Of course, as a Legend, I would usually disregard such things.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-18", + "lineInfo": { + "dialogue": "In any case, its power cannot be understated. Simply entering its cave will greatly weaken you, even with the best equipment!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-19", + "lineInfo": { + "dialogue": "Getting close to it would quickly corrupt you, which is why you will need protection. Only a light whose origin is from the same realm from which the beast arrived will do the trick.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-20", + "lineInfo": { + "dialogue": "As such, your very first step on your journey to become a Legend will be... to visit a friend of mine who studies the Nether.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-21", + "lineInfo": { + "dialogue": "His name is Jorkin, and he knows more about that realm than anyone else I know. Find him in the Roots of Corruption, and request his aid. Tell him I sent you.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Kelight" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-22", + "lineInfo": { + "dialogue": "...And? Surely you do not hope to bribe me, do you? What use would I have for whatever meager wealth you have?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-23", + "lineInfo": { + "dialogue": "I'm a Legend! I have everything I could possibly need for the rest of my life! Now, run along. Return when you have something concrete to show me.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Kelight" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-24", + "lineInfo": { + "dialogue": "Ha! You? A Legend?! What a joke. You aren't the first to have tried that, by the way. I know each and every member of our ranks, and you are not one of them.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-25", + "lineInfo": { + "dialogue": "Ah, truly, being a gatekeeper of the Temple is an entertaining position. Run along, now. Return when you have something real to show me.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Kelight" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-26", + "lineInfo": { + "dialogue": "Hmph. Ridiculous. I don't need you to convince me of anything! Clearly, you are nothing but a pretender.", + "line": { + "current": 1, + "max": 16 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-27", + "lineInfo": { + "dialogue": "Run along, now. If you don't have anything to show for yourself, don't waste my time!", + "line": { + "current": 2, + "max": 16 + }, + "npc": "Kelight" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-28", + "lineInfo": { + "dialogue": "...But- ah. Since you are still here. Perhaps- no, no, don't be ridiculous, Kelight.", + "line": { + "current": 5, + "max": 16 + }, + "npc": "Kelight" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-29", + "lineInfo": { + "dialogue": "Come on, Kelight, don't do this, you can't just let them get you with the silent treatment...", + "line": { + "current": 7, + "max": 16 + }, + "npc": "Kelight" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-30", + "lineInfo": { + "dialogue": "Oh, fine. You've got me interested. What is special about you? You look like a common soldier, and yet...", + "line": { + "current": 9, + "max": 16 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-31", + "lineInfo": { + "dialogue": "Very well. I will allow you to attempt the trial. Perhaps, then, you will be able to prove yourself.", + "line": { + "current": 10, + "max": 16 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-32", + "lineInfo": { + "dialogue": "Hidden deep within a nearby cave is a beast beyond compare. Corrupted, yes, but nothing like the foes you may have faced before.", + "line": { + "current": 11, + "max": 16 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-33", + "lineInfo": { + "dialogue": "Rumor has it this creature was one of the miners which first ventured into the Nether Portal... Of course, as a Legend, I would usually disregard such things.", + "line": { + "current": 12, + "max": 16 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-34", + "lineInfo": { + "dialogue": "In any case, its power cannot be understated. Simply entering its cave will greatly weaken you, even with the best equipment!", + "line": { + "current": 13, + "max": 16 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-35", + "lineInfo": { + "dialogue": "Getting close to it would quickly corrupt you, which is why you will need protection. Only a light whose origin is from the same realm from which the beast arrived will do the trick.", + "line": { + "current": 14, + "max": 16 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-36", + "lineInfo": { + "dialogue": "As such, your very first step on your journey to become a Legend will be... to visit a friend of mine who studies the Nether.", + "line": { + "current": 15, + "max": 16 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-37", + "lineInfo": { + "dialogue": "His name is Jorkin, and he knows more about that realm than anyone else I know. Find him in the Roots of Corruption, and request his aid. Tell him I sent you.", + "line": { + "current": 16, + "max": 16 + }, + "npc": "Kelight" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-38", + "lineInfo": { + "dialogue": "Well? You've been given a task, haven't you? Don't come back until you've retrieved the light you'll need for protection.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kelight" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-39", + "lineInfo": { + "dialogue": "Hah. Took you long enough! This is the light dust, I presume?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-40", + "lineInfo": { + "dialogue": "I'll hold on to this for now. While it is a vital ingredient for your protection, it is not enough on its own.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-41", + "lineInfo": { + "dialogue": "You'll need an item to focus the magic around yourself, preferably something you'd wear. Hm... How about a helmet? Certainly, it'd do wonders for your poor sense of style.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-42", + "lineInfo": { + "dialogue": "Ahem. As for creating it... I know only one man capable of crafting a piece of armor good enough to ensure your safety.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-43", + "lineInfo": { + "dialogue": "Unfortunately, he will be hard to reach. His name was Garull, and he was the finest craftsman I'd ever met! A bit on the eccentric side, though.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-44", + "lineInfo": { + "dialogue": "He was always ranting and raving about Creepers... he really thought they were real, can you imagine? What complete and utter nonsense.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-45", + "lineInfo": { + "dialogue": "When I suggested the notion to be absurd, he seemed upset by my comments, and stopped visiting. Truly, I don't know what I did wrong. What a ridiculous man.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-46", + "lineInfo": { + "dialogue": "As it stands, I have no idea where you could find him. He spoke of wanting to research the Pigman Ravines several times, though none of our rank have ever seen him there.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-47", + "lineInfo": { + "dialogue": "In any case, it is somewhere to begin your search! Should you manage to find him, and convince him to craft you the helmet, return here and we can proceed.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Kelight" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-48", + "lineInfo": { + "dialogue": "...Hm? Oh, it's you again. Did you manage to actually find the blighter? Good to know he isn't dead, at least.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-49", + "lineInfo": { + "dialogue": "You have the helmet, I presume? Hand it over, here. I'll quickly apply the light dust. Then, you'll be able to enter the cave.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-50", + "lineInfo": { + "dialogue": "Hopefully you'll do better than that last group that tried to fight it. Six fighters strong... never came back.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-51", + "lineInfo": { + "dialogue": "...Well, good luck! I'm certain you'll either succeed, or you'll fail spectacularly. Either or, really.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-52", + "lineInfo": { + "dialogue": "Bring me concrete proof of your triumph over the beast, and I will grant you passage into the Temple of the Legends! Do be quick, would you?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Kelight" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-53", + "lineInfo": { + "dialogue": "... You... You did it? H-how?!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-54", + "lineInfo": { + "dialogue": "Even one so brave and powerful as myself could not possibly survive against-", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-55", + "lineInfo": { + "dialogue": "Er... I mean, of course you were able to defeat the beast! I believed in you from the very start!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-56", + "lineInfo": { + "dialogue": "...Ehm. I suppose you are welcome in the Temple of the Legends, now! You have... certainly proven yourself. My apologies for misjudging you. Feel proud of your accomplishment!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Kelight" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-57", + "lineInfo": { + "dialogue": "I am proud to have you in our temple! Perhaps one day you shall be almost as great as I am!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kelight" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "templeoflegends-kelight-58", + "lineInfo": { + "dialogue": "Only the bravest adventurers who succeed in my quest can enter the temple of the legends.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Kelight" + } + }, + { + "fileOverride": "templeoflegends-kelight-59", + "lineInfo": { + "dialogue": "Only brave warriors of level 68 may attempt to join this temple.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Kelight" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "templeoflegends-rayshyroth-1", + "lineInfo": { + "dialogue": "Oh? Well, greetings. What brings you to our quiet lonely island, let alone all the way up here?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Rayshyroth" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "templeoflegends-rayshyroth-2", + "lineInfo": { + "dialogue": "Aha, you're back with the Sky Vapor! Sorry about the climb, even I find it rather inconvenient at times.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Rayshyroth" + } + } + ] + } + } + }, + "Tempo Town Trouble": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "tempotowntrouble-tyko-1", + "lineInfo": { + "dialogue": "Hey, a little help here? I need to ask a favor real fast! Anyone?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Tyko" + } + }, + { + "fileOverride": "tempotowntrouble-tyko-2", + "lineInfo": { + "dialogue": "Oh, hey! Maybe- Mmm, wait. I don't wanna get you killed, this could be dangerous. Maybe come back when you're Level 25?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Tyko" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "tempotowntrouble-tyko-3", + "lineInfo": { + "dialogue": "Hey, excuse me! I'm in need of- ...yeah, just walk right by me. Maybe I shoulda gone to Detlas for help, these people here have enough problems...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Tyko" + } + }, + { + "fileOverride": "tempotowntrouble-tyko-4", + "lineInfo": { + "dialogue": "Don't suppose you'd be willing to help, huh? Bet you're busy- Wait, you've got spare time? Criminy, only took a week of asking! Good to meet ya.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Tyko" + } + }, + { + "fileOverride": "tempotowntrouble-tyko-5", + "lineInfo": { + "dialogue": "Alright, My name is Tyko, and I got asked to find a capable soldier for- well, lemme explain. So, I’m from a place called Tempo Town, by Time Valley. It's a recent establishment.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Tyko" + } + }, + { + "fileOverride": "tempotowntrouble-tyko-6", + "lineInfo": { + "dialogue": "I'm buddies with the mayor- he set up Tempo Town as kind of a homeless shelter for people whose homes got ruined by corrupted attacks, since Time Valley doesn't seem corrupted.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Tyko" + } + }, + { + "fileOverride": "tempotowntrouble-tyko-7", + "lineInfo": { + "dialogue": "Some old guy with jaundice or something swings by, some kind of keeper- Says to set up on a ridge overlooking a lake. So, we did! Everything was going well for a bit.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Tyko" + } + }, + { + "fileOverride": "tempotowntrouble-tyko-8", + "lineInfo": { + "dialogue": "And then some freaky time monster starts showing up in the middle of the night and tries to bust down our doors! We were told that ridge was safe, but that was clearly a lie.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Tyko" + } + }, + { + "fileOverride": "tempotowntrouble-tyko-9", + "lineInfo": { + "dialogue": "So, that's why I'm here. No one at Tempo Town is tough enough to kill that thing, so I ran over here to ask for some backup. Glad I ran into ya!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Tyko" + } + }, + { + "fileOverride": "tempotowntrouble-tyko-10", + "lineInfo": { + "dialogue": "Lemme write down the coordinates for ya in your book. I'm gonna stick around and see if anyone else feels like helping.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Tyko" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "tempotowntrouble-tyko-11", + "lineInfo": { + "dialogue": "The coordinates to where you need to go should be in your book. Help us out, yeah?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tyko" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "tempotowntrouble-tyko-12", + "lineInfo": { + "dialogue": "Heya! Heard from the mayor that you helped out the town! Can't thank you enough for that.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tyko" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "tempotowntrouble-homelessmayor-1", + "lineInfo": { + "dialogue": "Hello- Welcome to Tempo Town, friend! Established only two months ago, I'm proud to provide aid to those displaced by corrupted raids.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-2", + "lineInfo": { + "dialogue": "Come to think of it, you look like a Ragni representative... Can I bother you to deliver some paperwork to the castle about getting officially established here?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-3", + "lineInfo": { + "dialogue": "Oh, not that kind of soldier? That's too bad... But- oh, this is a shot in the dark, but... maybe you'd be the type of soldier to take out a monster for us?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-4", + "lineInfo": { + "dialogue": "You- you would!? Oh, thank goodness you arrived when you did! You see- we were told by that old man Martyn to settle on this ridge because there apparently weren't any dangerous creatures here!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-5", + "lineInfo": { + "dialogue": "But every night, the same monster emerges from one of the ruins, and tries to smash the buildings down! Every single night, at the same time!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-6", + "lineInfo": { + "dialogue": "The guards are getting run ragged, and I refuse to be responsible for any deaths when I'm trying to save these folks!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-7", + "lineInfo": { + "dialogue": "We found the ruin it came out of, too- Er, one of the folks here, Doug, did! Here, let me write down the location for you- no, no, I insist, let me do it!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-8", + "lineInfo": { + "dialogue": "There's the coordinates in case you forget, but it's in the temple just up the hill! Please, please hurry and take care of that horrible monster!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Homeless Mayor" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "tempotowntrouble-homelessmayor-9", + "lineInfo": { + "dialogue": "The coordinates are in your book, but it's in the temple just up the hill! Please, please hurry and take care of that horrible monster!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Homeless Mayor" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "tempotowntrouble-scout-1", + "lineInfo": { + "dialogue": "Grr... I KNOW I saw that beast go in here, where the heck is it?!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Scout" + } + }, + { + "fileOverride": "tempotowntrouble-scout-2", + "lineInfo": { + "dialogue": "Hey soldier, does that disk look like some type of door to you?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Scout" + } + }, + { + "fileOverride": "tempotowntrouble-scout-3", + "lineInfo": { + "dialogue": "I saw some creature that I've been tracking for a few days disappear around here, and I think it's somewhere behind this disk...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Scout" + } + }, + { + "fileOverride": "tempotowntrouble-scout-4", + "lineInfo": { + "dialogue": "But... There's probably some kind of wacky magic keeping it shut, since I can't get it open at all!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Scout" + } + }, + { + "fileOverride": "tempotowntrouble-scout-5", + "lineInfo": { + "dialogue": "Hey, you're able to use magic, right? Maybe using one of your fancy spells on the disk will get it open?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Scout" + } + }, + { + "fileOverride": "tempotowntrouble-scout-6", + "lineInfo": { + "dialogue": "Stand on the disk and cast any spell. That should probably get it open, then we can finally kill that freak of nature lurking inside of there!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Scout" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "tempotowntrouble-scout-7", + "lineInfo": { + "dialogue": "Let's see... What kind of secrets do these odd temples house?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Scout" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "tempotowntrouble-oldmanmartyn-1", + "lineInfo": { + "dialogue": "What was going through your noggin, soldier?", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "tempotowntrouble-oldmanmartyn-2", + "lineInfo": { + "dialogue": "Do you have any idea what you were doing? Bashing around that room I just sealed off for good?", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "tempotowntrouble-oldmanmartyn-3", + "lineInfo": { + "dialogue": "You need to be careful, soldier! This Valley's secrets are NOT to be meddled with.", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "tempotowntrouble-oldmanmartyn-4", + "lineInfo": { + "dialogue": "I assume the mayor of that place called Tempo Town sent you here. You are going to have to tell that lad that his problems just got worse.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "tempotowntrouble-oldmanmartyn-5", + "lineInfo": { + "dialogue": "The monster you just killed was known as a Time Trouble. They're odd creatures that were forced into a day-long temporal loop by some fools long ago.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "tempotowntrouble-oldmanmartyn-6", + "lineInfo": { + "dialogue": "The only way to keep them at bay effectively is to seal them, like I just did here. But now, that stunt you just pulled sent ripples across the entire Valley. Now, every single Time Trouble is responding to this one's termination!", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "tempotowntrouble-oldmanmartyn-7", + "lineInfo": { + "dialogue": "Now, one Time Trouble I can handle, but this? I can't keep them all at bay... and now, you went and awakened every single one of those critters.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "tempotowntrouble-oldmanmartyn-8", + "lineInfo": { + "dialogue": "I can fix this seal, so you'll have one less to deal with, but the rest of the Troubles will have to be taken down daily with brute force.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "tempotowntrouble-oldmanmartyn-9", + "lineInfo": { + "dialogue": "You're going to have to deal with those, soldier. I have far too much to take care of in this valley.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "tempotowntrouble-oldmanmartyn-10", + "lineInfo": { + "dialogue": "They'll have to be exterminated every single day. Now, I'm sure the wo rk won't be thankless, perhaps you'll be rewarded by the townsfolk of Tempo Town for taking care of them.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "tempotowntrouble-oldmanmartyn-11", + "lineInfo": { + "dialogue": "Now please, be careful in the Valley. I already have to look after one person, nevermind the mess of time that the Olm were so-", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Old Man Martyn" + } + }, + { + "fileOverride": "tempotowntrouble-oldmanmartyn-12", + "lineInfo": { + "dialogue": "...I digress, I'm just rambling again. Now, let me bring us back outside this temple, and you should head back to that shanty town.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Old Man Martyn" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "tempotowntrouble-homelessmayor-10", + "lineInfo": { + "dialogue": "Oh hey, it's you! I hope you've been keeping those Time Troubles at bay.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Homeless Mayor" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "tempotowntrouble-scout-8", + "lineInfo": { + "dialogue": "Oh, hey! I hope that monster wasn't too difficult for you to defeat.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Scout" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "tempotowntrouble-homelessmayor-11", + "lineInfo": { + "dialogue": "Hello- Welcome to Tempo Town, friend! Established only two months ago, I'm proud to provide aid to those displaced by corrupted raids.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-12", + "lineInfo": { + "dialogue": "Come to think of it, you look like a Ragni representative... Can I bother you to deliver some paperwork to the castle about getting officially established here?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-13", + "lineInfo": { + "dialogue": "Oh, not that kind of soldier? That's too bad... I hope you find your visit pleasant anyways.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Homeless Mayor" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "tempotowntrouble-homelessmayor-14", + "lineInfo": { + "dialogue": "You're back! I heard some kind of weird chime coming from the temple on the hill- is that a good sign?", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-15", + "lineInfo": { + "dialogue": "You did?! Oh, thank goodness... Honestly, Martyn told us he would deal with it, but then he just disappeared off into nowhere!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-16", + "lineInfo": { + "dialogue": "Oh, he actually showed his face after you took care of the thing? What, did you beat him to the punch or something?", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-17", + "lineInfo": { + "dialogue": "Wait... What? He was...trying to seal the thing away, instead of killing it, and...you destroying it broke the seal?", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-18", + "lineInfo": { + "dialogue": "And now there's more of them? Why didn't he just tell us?! Now they'll need to be stopped every day to keep them in check!!", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-19", + "lineInfo": { + "dialogue": "Gah, this is a disaster... It isn't your fault, you didn't know- Wait, what's that boxy thing you have? A [Time Fragment]? ...oh, so the monster dropped it.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-20", + "lineInfo": { + "dialogue": "Interesting... One of the townsfolk likes to collect those sorts of things! He's that Mysterious Merchant just behind me.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-21", + "lineInfo": { + "dialogue": "Go talk with him about those! He might give you something worth your while if you trade them with him.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-22", + "lineInfo": { + "dialogue": "...also, while you were away, that strange magic stone up on the hill started glowing. We're not sure what to do with it, really! Might be worth your attention.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Homeless Mayor" + } + }, + { + "fileOverride": "tempotowntrouble-homelessmayor-23", + "lineInfo": { + "dialogue": "...hm. Well, this is a bit awkward- I don't have a reward ready for you. Making this place took a lot of money... Hopefully gratitude is enough- thank you, sincerely!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Homeless Mayor" + } + } + ] + } + } + }, + "The Bigger Picture": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "thebiggerpicture-psilo-1", + "lineInfo": { + "dialogue": "Welcome, large human! What's that look for, never seen a Gnome before?! My house may look small, but it's perfect for me!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-2", + "lineInfo": { + "dialogue": "I actually need some help, you see Razorice plague my home! They are similar to the rats of your province, but vicious and deadly to Gnomes!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-3", + "lineInfo": { + "dialogue": "An easy fix exists for it though. There are many magical mushrooms in this cave and a rare one called Subtraxerim Utilium is the one we need.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-4", + "lineInfo": { + "dialogue": "It emits a sleeping spore that will knock the Razorice out long enough to kill them! I’ve seen one in the cave but every time I go to get it, I fall asleep!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-5", + "lineInfo": { + "dialogue": "Since you're so big, you won't fall asleep! Please retrieve some mushroom for me.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-6", + "lineInfo": { + "dialogue": "I think I left a trail of rainbow spores last time I tried to collect some, just follow the colours through the cave to find the mushroom!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Psilo" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "thebiggerpicture-psilo-7", + "lineInfo": { + "dialogue": "Did you find any? Wait, something is different about you. Have you gotten smaller? Oh my...", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-8", + "lineInfo": { + "dialogue": "... You have.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-9", + "lineInfo": { + "dialogue": "I'm really sorry about this, I didn't think the mushroom would have a different effect on humans! But what did I expect from a mushroom that changes colour?!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-10", + "lineInfo": { + "dialogue": "Do not panic. I have a mushroom in my house that wakes people up; logic says that if the sleeping mushroom shrinks you, then this one should make you grow again!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-11", + "lineInfo": { + "dialogue": "Oh my, you are still shrinking before my eyes. You must hurry to the mushroom. Be careful, though! The Razorice will probably hunt you!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-12", + "lineInfo": { + "dialogue": "I keep it on the top shelf, so you will probably have to fight them at some point... If you take care the razorice whilst you're there, we can kill two birds with one stone! Just follow the cheese crumbs to find them!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-13", + "lineInfo": { + "dialogue": "Good luck! Oh and, do watch out for my pet zombie.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Psilo" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "thebiggerpicture-psilo-14", + "lineInfo": { + "dialogue": "What the... my house! What did you do?!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-15", + "lineInfo": { + "dialogue": "Springy plant? Bookshelf levers? Razorice king?! Hold on a moment, slow down and tell me properly.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-16", + "lineInfo": { + "dialogue": "I see. Well, at least you handled those damned Razorice, and I can actually live inside my house again - not that it'll offer much shelter now you've blown a hole in the side of it!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-17", + "lineInfo": { + "dialogue": "Ah, I suppose that's alright. The mushroom will grow back over to cover it - and righto, your reward!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-18", + "lineInfo": { + "dialogue": "Here, take some of our Gnome gold, we have plenty to go around. And sorry about the whole you-getting-shrunk thing, but hey, being small isn't so bad! See you around, human!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Psilo" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "thebiggerpicture-psilo-19", + "lineInfo": { + "dialogue": "Welcome, welcome! My humble little home welcomes travellers of all shapes and sizes!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Psilo" + } + }, + { + "fileOverride": "thebiggerpicture-psilo-20", + "lineInfo": { + "dialogue": "However, the problem I'm having can't be solved by anyone under Level 76. Come back when you can!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Psilo" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "thebiggerpicture-psilo-21", + "lineInfo": { + "dialogue": "Long time no see! Why you haven't grown, or shrunk, a bit since we last met.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Psilo" + } + } + ] + } + } + }, + "The Breaking Point": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-generalelix-1", + "lineInfo": { + "dialogue": "Hey! This is a restricted area, please return to the perimeter!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "General Elix" + } + }, + { + "fileOverride": "thebreakingpoint-generalelix-2", + "lineInfo": { + "dialogue": "Help? You're not nearly experienced enough to help us out, get out of here!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "General Elix" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-generalelix-3", + "lineInfo": { + "dialogue": "... Alright, let's see here... Private! Give me a report!", + "line": { + "current": 1, + "max": 21 + }, + "npc": "General Elix" + } + }, + { + "fileOverride": "thebreakingpoint-privatewalder-1", + "lineInfo": { + "dialogue": "Sir, our readings are positive! Stability is at 96%, and shows no sign of dropping.", + "line": { + "current": 2, + "max": 21 + }, + "npc": "Private Walder" + } + }, + { + "fileOverride": "thebreakingpoint-generalelix-4", + "lineInfo": { + "dialogue": "Excellent. Keep an eye on everything, and let me know if something comes up. Now, I need to go find... -", + "line": { + "current": 3, + "max": 21 + }, + "npc": "General Elix" + } + }, + { + "fileOverride": "thebreakingpoint-generalelix-5", + "lineInfo": { + "dialogue": "Hmph. And who exactly are you? This site is off-limits to civilians.", + "line": { + "current": 4, + "max": 21 + }, + "npc": "General Elix" + } + }, + { + "fileOverride": "thebreakingpoint-generalelix-6", + "lineInfo": { + "dialogue": "Adventurer. Of course. Well, as it stands, we’re doing rather dangerous work here. I’ll have to ask you to-", + "line": { + "current": 5, + "max": 21 + }, + "npc": "General Elix" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-generalelix-7", + "lineInfo": { + "dialogue": "... The stabilizer? We're doing rather dangerous work here, keeping the thing beyond that cliff passive. So, I'll have to ask you to-", + "line": { + "current": 5, + "max": 21 + }, + "npc": "General Elix" + } + }, + { + "fileOverride": "thebreakingpoint-privatewalder-2", + "lineInfo": { + "dialogue": "General! Stability is dropping, and fast!", + "line": { + "current": 6, + "max": 21 + }, + "npc": "Private Walder" + } + }, + { + "fileOverride": "thebreakingpoint-generalelix-8", + "lineInfo": { + "dialogue": "Urgh... Soldiers, follow protocol! Secure what you can, leave what you can't! And- you! I haven't forgotten about you. As soon as this all clears up, we'll-", + "line": { + "current": 7, + "max": 21 + }, + "npc": "General Elix" + } + }, + { + "fileOverride": "thebreakingpoint-generalelix-9", + "lineInfo": { + "dialogue": "Gah! This damned Colossus! What I wouldn't give to...", + "line": { + "current": 8, + "max": 21 + }, + "npc": "General Elix" + } + }, + { + "fileOverride": "thebreakingpoint-generalelix-10", + "lineInfo": { + "dialogue": "... It's over. Walder! Survey the damages to our equipment! Morec! Take count of injuries around the base, make sure everyone's safe!", + "line": { + "current": 9, + "max": 21 + }, + "npc": "General Elix" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-1", + "lineInfo": { + "dialogue": "General! We came as soon as we could- we were down in the library and the exit co- Oh. Wow.", + "line": { + "current": 10, + "max": 21 + }, + "npc": "???" + } + }, + { + "fileOverride": "thebreakingpoint-generalelix-11", + "lineInfo": { + "dialogue": "Well, Rhay, you're here now, yes? What do you think, can you fix it? We'll need to get it working before-", + "line": { + "current": 11, + "max": 21 + }, + "npc": "General Elix" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-2", + "lineInfo": { + "dialogue": "Can I- No, of course I can't fix it! Not on my own, especially since we don't have the proper equipment around here! Ugh, how long has it even been since last time?", + "line": { + "current": 12, + "max": 21 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-1", + "lineInfo": { + "dialogue": "It has been... three days... give or take. Rhay... you know we can't keep-", + "line": { + "current": 13, + "max": 21 + }, + "npc": "???" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-3", + "lineInfo": { + "dialogue": "The stabilizer has been working so far, Ineos! It's some of the finest technology our province has to offer, and it has been working!.", + "line": { + "current": 14, + "max": 21 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-2", + "lineInfo": { + "dialogue": "Rhay, you know... as well as I do... that it is getting worse. The Protector is... growing resistant to... your machines. We need... a new plan.", + "line": { + "current": 15, + "max": 21 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-4", + "lineInfo": { + "dialogue": "Yes, well, as soon as you come up with one, I'll be glad to hear it! But so far, you've barely gotten anything-", + "line": { + "current": 16, + "max": 21 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-5", + "lineInfo": { + "dialogue": "... Sorry. I'm sorry, I didn't mean that. General, to answer your question... The stabilizer itself is damaged, but you should have what’s needed to repair it here. -", + "line": { + "current": 17, + "max": 21 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-6", + "lineInfo": { + "dialogue": "The issue is the controls look like they’re fried! And we don’t have any replacement parts stored here. We’ll have to travel back to Corkus, and...", + "line": { + "current": 18, + "max": 21 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-generalelix-12", + "lineInfo": { + "dialogue": "... Right. You. You’re an adventurer, yes? And you appear to be well-equipped. Then you’ll be traveling to Corkus with Rhay, and assist with whatever is needed there.", + "line": { + "current": 19, + "max": 21 + }, + "npc": "General Elix" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-7", + "lineInfo": { + "dialogue": "Wait, General-... Right. Alright. In that case... I’ll give you time to prepare. We’ll take the Hot Air Balloon to travel to Corkus, so I’ll meet you there. We don’t have any time to waste.", + "line": { + "current": 20, + "max": 21 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-3", + "lineInfo": { + "dialogue": "And I will... return to the library. I trust... you will succeed... But we must... prepare for the... worst.", + "line": { + "current": 21, + "max": 21 + }, + "npc": "Ineos" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-generalelix-13", + "lineInfo": { + "dialogue": "Have you flown to Corkus with Rhay yet? Quick, get to the Hot Air Balloon in the south!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "General Elix" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-rhay-8", + "lineInfo": { + "dialogue": "Ah, you're here! Well, if you're ready, then we'd best be off. Just hop aboard this balloon, and the captain will take us where we need to go.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-9", + "lineInfo": { + "dialogue": "I can tell you more while we travel, but we need to get going quick. There's no telling how much time we have before-", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-10", + "lineInfo": { + "dialogue": "Right, right. Don't mind me, I'm just a little on edge, for... well, for obvious reasons. Just hop aboard.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Rhay" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-rhay-11", + "lineInfo": { + "dialogue": "Well? What are you waiting for- come on, let's get going to Corkus!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Rhay" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-rhay-12", + "lineInfo": { + "dialogue": "Well, there it is! The Canyon Colossus itself. The source of all of our problems here at Kandon-Beda.", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-13", + "lineInfo": { + "dialogue": "So! How much do you already know? I know we dragged you into this without telling you much, so... I can fill you in on the details.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-14", + "lineInfo": { + "dialogue": "Oh, he did? Right, that makes sense. Well, you're right in that it's the source of the earthquakes, but there's more to it than that.", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-15", + "lineInfo": { + "dialogue": "You've seen the Sky Islands, right? Heard of the Fracturing. From what we can tell, what happened to that region a thousand years ago is happening again, here and now.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-16", + "lineInfo": { + "dialogue": "Yes, exactly. It's been malfunctioning for a long time now, and it's starting to tear the canyon apart. That's where we come in.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Rhay" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-rhay-17", + "lineInfo": { + "dialogue": "Well... To start with, it's an ancient thing. It was built long before even the doguns can remember, and they've lived in this region for thousands of years.", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-18", + "lineInfo": { + "dialogue": "According to Ineos, the doguns used to be responsible for keeping it calm, but ever since the dwarves came in and started their war, that knowledge has been lost to time.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-19", + "lineInfo": { + "dialogue": "Which is... a problem! The Colossus has been malfunctioning for hundreds of years, and it's reaching its breaking point. If we don't stop it, it'll tear the canyon apart.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Rhay" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-rhay-20", + "lineInfo": { + "dialogue": "Oh? So you've traveled the canyon, then. Yeah, then you've seen how the canyon twists and changes.", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-21", + "lineInfo": { + "dialogue": "It destroys peoples' homes, it traps them deep within the maze-like valleys... And, more recently, it has been tearing a hole into the void.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-22", + "lineInfo": { + "dialogue": "This thing is ancient, and we don't know how it works. The best we can do is try and keep it from reaching its breaking point, and prevent the canyon from meeting the same fate as the Sky Islands.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-23", + "lineInfo": { + "dialogue": "So, Gavel's government contacted us in Corkus some time ago, requesting our help to deal with this threat.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-24", + "lineInfo": { + "dialogue": "Our council agreed, and we got to work designing a machine that could replicate the dogun magic that pacified the Colossus long ago.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-25", + "lineInfo": { + "dialogue": "We've had Ineos' help on that front. He and I have been working here in Kandon-Beda to ensure things are running smoothly. Which... evidently, they are not.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-26", + "lineInfo": { + "dialogue": "... We'll be fine! We're going to meet up with my husband at Corkus, and he'll know what to do. He always does.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-27", + "lineInfo": { + "dialogue": "Our people working there will be able to get us the parts we need to repair the device. This... this isn't the first time it's exploded. I had hoped that this time we would have gotten it stable, but...", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-28", + "lineInfo": { + "dialogue": "But, hey! We have it under control. We're always able to repair it quickly enough to keep it running while the Colossus is active.", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Rhay" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-rhay-29", + "lineInfo": { + "dialogue": "Oh! Yeah. He's the one responsible for the design and production of this device. He's got a talent for designing these sorts of things, without him... well, we'd be in a much worse situation than we are now.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-30", + "lineInfo": { + "dialogue": "I'll be glad to see him again. It's been a while since I last had to travel to Corkus, and... Well, I'm confident he'll know what to do here. He always does.", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-31", + "lineInfo": { + "dialogue": "... Right! Hey, it looks like we're almost there. We'll be able to get this all sorted out, and we'll be back to Kandon-Beda in no time.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Rhay" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-rhay-32", + "lineInfo": { + "dialogue": "Alright, let's just head on in. My husband should be around here somewhere...", + "line": { + "current": 1, + "max": 15 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-maxie-1", + "lineInfo": { + "dialogue": "Rhay, love! You're back already? Our next routine maintenance isn't for another- Wait, soldier? What are you doing here?", + "line": { + "current": 2, + "max": 15 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-33", + "lineInfo": { + "dialogue": "I... You two know each other?", + "line": { + "current": 3, + "max": 15 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-maxie-2", + "lineInfo": { + "dialogue": "Of course we do - they're the one who helped me with all the Factory stuff! How did you two meet?", + "line": { + "current": 4, + "max": 15 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-34", + "lineInfo": { + "dialogue": "They just showed up at Kandon-Beda and agreed to help us with... - Why didn't you bring this up earlier?", + "line": { + "current": 5, + "max": 15 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-35", + "lineInfo": { + "dialogue": "It must have...- right. Well, if anything that makes you even more qualified to help us out, I guess! I can't believe I didn't recognize you...?", + "line": { + "current": 6, + "max": 15 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-maxie-3", + "lineInfo": { + "dialogue": "Okay, right, back to the question - what are you two doing here already? There's another few days or so until our next routine maintenance, isn't there?", + "line": { + "current": 7, + "max": 15 + }, + "npc": "Maxie" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-maxie-4", + "lineInfo": { + "dialogue": "I did send you an invite! I gave it to... you know, the one captain who ferries people around! But then you didn't show up to the wedding, so I guess it didn't reach you...", + "line": { + "current": 6, + "max": 15 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thebreakingpoint-maxie-5", + "lineInfo": { + "dialogue": "Look, you're a hard person to reach! You've been all over the world at this point, including Kandon-Beda of all places- speaking of, why are you two here?", + "line": { + "current": 7, + "max": 15 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-36", + "lineInfo": { + "dialogue": "Right! Right. Got a little distracted there... Uh, we've run into a problem back at Kandon-Beda. We experienced an unexpected seismic event, and the device was heavily damaged.", + "line": { + "current": 8, + "max": 15 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-37", + "lineInfo": { + "dialogue": "We should be able to finish most of the repairs with what materials we have there, but we're missing a Magmaflux Capacitor for the control panel.", + "line": { + "current": 9, + "max": 15 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-maxie-6", + "lineInfo": { + "dialogue": "... Oh. That's going to be a problem. We haven't had an opportunity to make more parts yet - it hasn't been long enough since our last maintenance. So... I'm not sure what we-", + "line": { + "current": 10, + "max": 15 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thebreakingpoint-nodise-1", + "lineInfo": { + "dialogue": "I overheard the conversation from over there- good to see you Rhay, by the way- But. We may not have any capacitors left up here, but I know where you can get one.", + "line": { + "current": 11, + "max": 15 + }, + "npc": "Nodise" + } + }, + { + "fileOverride": "thebreakingpoint-nodise-2", + "lineInfo": { + "dialogue": "We repurposed this factory for our needs, but it was built here to process resources from the mines below.", + "line": { + "current": 12, + "max": 15 + }, + "npc": "Nodise" + } + }, + { + "fileOverride": "thebreakingpoint-nodise-3", + "lineInfo": { + "dialogue": "Though it was discontinued, it's very likely that there are still miner mechs down there- and some of the more powerful models made use of very similar circuits to the capacitors we use today.", + "line": { + "current": 13, + "max": 15 + }, + "npc": "Nodise" + } + }, + { + "fileOverride": "thebreakingpoint-maxie-7", + "lineInfo": { + "dialogue": "...You're right! If they're still down there, we should be able to scrap one of the bots and reuse its circuits. soldier, we can send you down into the mines to find what we need, while we prepare up here!", + "line": { + "current": 14, + "max": 15 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-38", + "lineInfo": { + "dialogue": "Alright... Good luck down there! Find the bot, destroy it, and bring the capacitor back up! Just step on the platform in the middle of the factory when you're ready.", + "line": { + "current": 15, + "max": 15 + }, + "npc": "Rhay" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-maxie-8", + "lineInfo": { + "dialogue": "Okay. That's fine, just make it quick! You know we can't waste any time here.", + "line": { + "current": 15, + "max": 15 + }, + "npc": "Maxie" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-maxie-9", + "lineInfo": { + "dialogue": "Just step on the iron platform and we'll send you down!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Maxie" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-maxie-10", + "lineInfo": { + "dialogue": "Door opening in 3...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thebreakingpoint-maxie-11", + "lineInfo": { + "dialogue": "2...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thebreakingpoint-maxie-12", + "lineInfo": { + "dialogue": "1...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Maxie" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-miningrobots-1", + "lineInfo": { + "dialogue": "INTRUDER DETECTED. HOSTILE ENGAGEMENT AUTHORISED.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mining Robots" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-miningrobots-2", + "lineInfo": { + "dialogue": "DEPLOYING SECONDARY ANTI-INTRUDER MEASURES.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mining Robots" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-miningrobots-3", + "lineInfo": { + "dialogue": "DIVERTING ALL AVAILABLE UNITS TO HALT INTRUDER.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mining Robots" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-themotherdrill-1", + "lineInfo": { + "dialogue": "THIS IS A RESTRICTED AREA. REQUESTING AUTHORISATION FOR USE OF LETHAL FORCE AGAINST INTRUDER...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "The Mother Drill" + } + }, + { + "fileOverride": "thebreakingpoint-themotherdrill-2", + "lineInfo": { + "dialogue": "AUTHORISATION GRANTED.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "The Mother Drill" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-themotherdrill-3", + "lineInfo": { + "dialogue": "DIVERTING MINER MECHS TO HALT INTRUDER.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "The Mother Drill" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-rhay-39", + "lineInfo": { + "dialogue": "You got the part! Head back to the balloon and I'll meet you there.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Rhay" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-rhay-40", + "lineInfo": { + "dialogue": "Amazing work! I'll get us back to Kandon Beda with that capacitor as quick as possible.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-maxie-13", + "lineInfo": { + "dialogue": "Good to see you again, soldier. Good luck with the colossus. And Rhay... come home as soon as you can.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thebreakingpoint-maxie-14", + "lineInfo": { + "dialogue": "Fly safe, both of you.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Maxie" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-rhay-41", + "lineInfo": { + "dialogue": "Well... that went better than expected, really. I still can't believe you didn't tell me you already knew Maxie.", + "line": { + "current": 1, + "max": 19 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-42", + "lineInfo": { + "dialogue": "Oh, wow. It looks like they've managed to fix up the machine pretty well, all things considered. Just this part left to get it running again...", + "line": { + "current": 2, + "max": 19 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-generalelix-14", + "lineInfo": { + "dialogue": "Hmph. Rhay, there you are. Seeing as you've returned, I gather everything went smoothly at Corkus?", + "line": { + "current": 3, + "max": 19 + }, + "npc": "General Elix" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-43", + "lineInfo": { + "dialogue": "Smoothly enough, General! We have what we need to repair the control panel. We'll be able to get the stabilizer running again!", + "line": { + "current": 4, + "max": 19 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-generalelix-15", + "lineInfo": { + "dialogue": "Well?! What are you waiting for? Finish the repairs, we can't afford to lose any time with this damned Colossus looming over us.", + "line": { + "current": 5, + "max": 19 + }, + "npc": "General Elix" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-44", + "lineInfo": { + "dialogue": "Yes, sir! Alright. soldier, just slot the capacitor in right... there. I'll make sure it runs smoothly.", + "line": { + "current": 6, + "max": 19 + }, + "npc": "Rhay" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-generalelix-16", + "lineInfo": { + "dialogue": "Well, what are you waiting for?! Put the part in the machine, quick!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "General Elix" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-generalelix-17", + "lineInfo": { + "dialogue": "There we are. Now, let's get this thing running again! Walder, keep an eye on stability! And... Rhay. You're confident this will work?", + "line": { + "current": 7, + "max": 19 + }, + "npc": "General Elix" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-45", + "lineInfo": { + "dialogue": "I-I'm sure. This is our last chance. We have to hold out hope that the stabilizer will hold.", + "line": { + "current": 8, + "max": 19 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-46", + "lineInfo": { + "dialogue": "Alright, alright... It's now or never... Hold, stabilizer, hold!", + "line": { + "current": 9, + "max": 19 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-47", + "lineInfo": { + "dialogue": "... Oh. That's... that's it, then. It's over. We failed.", + "line": { + "current": 10, + "max": 19 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-4", + "lineInfo": { + "dialogue": "I... am sorry, Rhay. I had... hoped it would work. In truth... I do not have... a plan... either.", + "line": { + "current": 11, + "max": 19 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-5", + "lineInfo": { + "dialogue": "The Elders... would have known... what to do... But they are... long gone. Nothing but... ruins remain.", + "line": { + "current": 12, + "max": 19 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-6", + "lineInfo": { + "dialogue": "The Elders... They were... the greatest... of doguns. As old... as the oldest stones... and as wise... as the earth itself...", + "line": { + "current": 13, + "max": 19 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-7", + "lineInfo": { + "dialogue": "They were capable... of magic... beyond what any... of us could achieve. They alone... could calm our... Protector.", + "line": { + "current": 14, + "max": 19 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-8", + "lineInfo": { + "dialogue": "They were... sealed away. Frozen in... the deepest... of ice. When the dwarves... slew Garaheth... the Elders... fell with him.", + "line": { + "current": 15, + "max": 19 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-9", + "lineInfo": { + "dialogue": "Such atrocities... The war... My people... But it is not... to dwell on, now. There are... more important... things at hand.", + "line": { + "current": 16, + "max": 19 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-10", + "lineInfo": { + "dialogue": "I... I did not... know of this. My people... are free? How long... has it been... since I have seen... my home?", + "line": { + "current": 17, + "max": 19 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-11", + "lineInfo": { + "dialogue": "You... Adventurer. We must... speak to my people. Our chieftain... will know... how we may free... the Elders.", + "line": { + "current": 18, + "max": 19 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-generalelix-18", + "lineInfo": { + "dialogue": "If there's a chance... We have to take it. Ineos, soldier, take the balloon. We'll do what we can here. Now, go! There's no time to waste!", + "line": { + "current": 19, + "max": 19 + }, + "npc": "General Elix" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-ineos-12", + "lineInfo": { + "dialogue": "It has been... many years... since I fled the Heights. I am... grateful to... the Corkians... for taking me in.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-13", + "lineInfo": { + "dialogue": "But... The war... has ended. I can finally... go home...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-14", + "lineInfo": { + "dialogue": "... The Colossus first... though. We still... have work to do...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ineos" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-generalelix-19", + "lineInfo": { + "dialogue": "Have you flown to the Heights with Ineos yet? Quick, get to the Hot Air Balloon in the south!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "General Elix" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-ineos-15", + "lineInfo": { + "dialogue": "I... will meet you... by the airship. I am... eager... to see my home... again.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ineos" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-rhay-48", + "lineInfo": { + "dialogue": "Well... That's it, then! I'll see you two off, and then... Then I'll figure out how to clean up here.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-49", + "lineInfo": { + "dialogue": "I... I really did hope we could do it. I thought that our magic could save the day, that it could stop this thing!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-50", + "lineInfo": { + "dialogue": "... Nothing to do about it now, of course! Good luck out there. We're counting on you two now. Go find those Elders!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Rhay" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-rhay-51", + "lineInfo": { + "dialogue": "Good luck in the heights, soldier. I'll... see if there's anything I can salvage from the machine, but it's not looking good. Ineos' Elders might be our only hope...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Rhay" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-ineos-16", + "lineInfo": { + "dialogue": "I have never... seen the Heights... from above. I wonder... if their glow... holds the same strength... it does from below...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-17", + "lineInfo": { + "dialogue": "I only hope... the Elders... are not gone... for good. We greatly need... their wisdom.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-18", + "lineInfo": { + "dialogue": "Ah... I believe us... to be landing...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ineos" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-korzim-1", + "lineInfo": { + "dialogue": "soldier... Hello. What a... strange sight... to see you landing... at our village... in such a contraption...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Korzim" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-korzim-2", + "lineInfo": { + "dialogue": "And... is that... Ineos? We thought... the dwarves... had turned you to rubble...", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-19", + "lineInfo": { + "dialogue": "I escaped... It is a long... story, Korzim. We do not... have time. Where is... your father?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-korzim-3", + "lineInfo": { + "dialogue": "He is... below. They are... freeing the frozen... in New Taloka. Why do you... wish to speak... with him?", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-20", + "lineInfo": { + "dialogue": "The Protector... is angered. We must find... the Elders. They will know... how to calm it.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-korzim-4", + "lineInfo": { + "dialogue": "The... Protector... I understand. I will... bring you two... to him. Sidio... Raetin... I leave you two... in charge.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "thebreakingpoint-korzim-5", + "lineInfo": { + "dialogue": "Now, let us... travel. Through flame... and through stone...", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Korzim" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-korzim-6", + "lineInfo": { + "dialogue": "We are... here. Taloka was... one of the first to fall... in the war. We have been... working with the dwarves... to restore it.", + "line": { + "current": 1, + "max": 23 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-1", + "lineInfo": { + "dialogue": "Are we all ready?", + "line": { + "current": 2, + "max": 23 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-2", + "lineInfo": { + "dialogue": "Very well. Begin on three. One... Two... Three!", + "line": { + "current": 3, + "max": 23 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-dwarventechnician-1", + "lineInfo": { + "dialogue": "Beginning reheating cycle! Stand back from the subject.", + "line": { + "current": 4, + "max": 23 + }, + "npc": "Dwarven Technician" + } + }, + { + "fileOverride": "thebreakingpoint-unsealeddogun-1", + "lineInfo": { + "dialogue": "... Where... am... I? How long... has it... been...?", + "line": { + "current": 5, + "max": 23 + }, + "npc": "Unsealed Dogun" + } + }, + { + "fileOverride": "thebreakingpoint-unsealeddogun-2", + "lineInfo": { + "dialogue": "...Dwarf... You... you froze me... I will... I will...!", + "line": { + "current": 6, + "max": 23 + }, + "npc": "Unsealed Dogun" + } + }, + { + "fileOverride": "thebreakingpoint-chieftainpaku-1", + "lineInfo": { + "dialogue": "Calm yourself... Delg. Our war... has ended. We are... freed. You have been... freed.", + "line": { + "current": 7, + "max": 23 + }, + "npc": "Chieftain Paku" + } + }, + { + "fileOverride": "thebreakingpoint-unsealeddogun-3", + "lineInfo": { + "dialogue": "... Freedom? Hundreds... of years... of war... And we are... free?", + "line": { + "current": 8, + "max": 23 + }, + "npc": "Dogun Delg" + } + }, + { + "fileOverride": "thebreakingpoint-chieftainpaku-2", + "lineInfo": { + "dialogue": "Yes. We are free... to roam our home... once more. Edac... Escort Delg... and help him re-adjust... to the heights.", + "line": { + "current": 9, + "max": 23 + }, + "npc": "Chieftain Paku" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-3", + "lineInfo": { + "dialogue": "Ah, soldier! It’s good to see you again. We haven’t seen you around here since... since the end of it.", + "line": { + "current": 10, + "max": 23 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-chieftainpaku-3", + "lineInfo": { + "dialogue": "Yes. We have been... hard at work... these past weeks. Taloka will soon... stand once more. And many... of our sealed brethren... have been returned to life.", + "line": { + "current": 11, + "max": 23 + }, + "npc": "Chieftain Paku" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-4", + "lineInfo": { + "dialogue": "Ah, but we can talk more about that later. Tell me, what brings you here today? Is there something you need from us?", + "line": { + "current": 12, + "max": 23 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-21", + "lineInfo": { + "dialogue": "The situation... is dire. The Great Protector... has been left alone... for far too long. We need... the wisdom... of our Elders. Do you know... where they are sealed?", + "line": { + "current": 13, + "max": 23 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-5", + "lineInfo": { + "dialogue": "The Elders?! Yes, we know where they are sealed. However, retrieving them is no simple task. It would take us years to break past the defenses, and we have countless other doguns to release first.", + "line": { + "current": 14, + "max": 23 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-chieftainpaku-4", + "lineInfo": { + "dialogue": "Ineos... I want our Elders free... as much as you do. But our Protector... has stood firm... for hundreds of years. It can stand... for another-", + "line": { + "current": 15, + "max": 23 + }, + "npc": "Chieftain Paku" + } + }, + { + "fileOverride": "thebreakingpoint-chieftainpaku-5", + "lineInfo": { + "dialogue": "No... Has it truly... fallen this far..?", + "line": { + "current": 16, + "max": 23 + }, + "npc": "Chieftain Paku" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-6", + "lineInfo": { + "dialogue": "... That was your Protector? How powerful is it, if it can reach this far?", + "line": { + "current": 17, + "max": 23 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-korzim-7", + "lineInfo": { + "dialogue": "If the Protector... could shake even the Heights... It could destroy... half of this province.", + "line": { + "current": 18, + "max": 23 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "thebreakingpoint-chieftainpaku-6", + "lineInfo": { + "dialogue": "Draani... the Elders must be freed. They alone... would know how to calm it.", + "line": { + "current": 19, + "max": 23 + }, + "npc": "Chieftain Paku" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-7", + "lineInfo": { + "dialogue": "Yes... I understand. Very well. soldier, I will take you to the Elders' vault. I hold the keys to open the way forward. Paku, gather your people. See if anyone has alternative solutions.", + "line": { + "current": 20, + "max": 23 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-chieftainpaku-7", + "lineInfo": { + "dialogue": "We will... search for one. I cannot... promise that one exists.", + "line": { + "current": 21, + "max": 23 + }, + "npc": "Chieftain Paku" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-8", + "lineInfo": { + "dialogue": "soldier, let us go. It sounds as if we have very little time to waste.", + "line": { + "current": 22, + "max": 23 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-9", + "lineInfo": { + "dialogue": "I will make preparations, and meet you at the Vault of Ice.", + "line": { + "current": 23, + "max": 23 + }, + "npc": "King Draani" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-10", + "lineInfo": { + "dialogue": "... Ahem. This is the entrance, then. One of our most closely guarded secrets... I was hoping not to have to confront this reminder for a while yet...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-11", + "lineInfo": { + "dialogue": "But it seems we don’t have much choice now. I have the keys, let’s go inside.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "King Draani" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-12", + "lineInfo": { + "dialogue": "Rather cold in here, isn’t it? A vault carved into a drake’s True Ice... I suppose my ancestors hoped to seal these doguns here forever. I’ll be glad to disappoint them.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-13", + "lineInfo": { + "dialogue": "Quickly, then, let us proceed to the primary door. I pray the Elders' will be responsive to our situation with the Colossus.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-14", + "lineInfo": { + "dialogue": "In any case... Let me see if I can open this second gate. It should be as simple as...", + "line": { + "current": 3, + "max": 8 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-15", + "lineInfo": { + "dialogue": "Hm. That... didn’t work. This magic is old, and I never took the time to learn it properly... Alright. We have alternatives.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-16", + "lineInfo": { + "dialogue": "If my memory serves correctly, there should be a manual override on the other end of this chasm.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-17", + "lineInfo": { + "dialogue": "The issue is that treacherous pool of lava on the way... and I don't think my knees are up to the task of jumping over it all.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-18", + "lineInfo": { + "dialogue": "I would never usually do this, but these are desperate times. Here, take my Trusty Grappling Hook. It should help you get over to the switch.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-19", + "lineInfo": { + "dialogue": "It has limitations, though. It will only be able to latch onto those blue rocks on the walls - and I'll be taking it back once you're finished, thank you very much!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "King Draani" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-20", + "lineInfo": { + "dialogue": "What are you waiting for? Use my hook to get to the override switch at the end of this cave!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "King Draani" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-21", + "lineInfo": { + "dialogue": "Looks like that unlocked it, soldier! Get yourself back over here and I'll open the door.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "King Draani" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-22", + "lineInfo": { + "dialogue": "There we are! Excellent work. You used that hook like a true expert! Ah, reminds me of the time-...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-23", + "lineInfo": { + "dialogue": "...Ahem. Excellent work, indeed. With the override activated, I should be able to do the rest of the work to open the gate.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-24", + "lineInfo": { + "dialogue": "First, though, I'll be having that grappling hook back! Think of what could happen if you had free reign of that all over.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-25", + "lineInfo": { + "dialogue": "And so... I believe we have gone as far as we can.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-26", + "lineInfo": { + "dialogue": "This is True Ice, soldier. It has scarred this part of the Heights for centuries, ever since it was created by an ice dragon in my ancestors’ conquest.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-27", + "lineInfo": { + "dialogue": "It cannot be melted or burned through by any means. It is why this location was chosen for their tomb. I’m afraid there is nothing more we can do.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "King Draani" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-28", + "lineInfo": { + "dialogue": "At the end of the war, I imagine.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-29", + "lineInfo": { + "dialogue": "As the final dogun settlements fell, and as Garaheth was slain for the first time, my ancestors must have sealed them deep in this ice.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-30", + "lineInfo": { + "dialogue": "The... actions of the Dwarves after winning the war are well documented. I would not be surprised if our accounts describe this imprisonment as a great victory.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "King Draani" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-31", + "lineInfo": { + "dialogue": "The Dwarves, of course. Who else?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-32", + "lineInfo": { + "dialogue": "I believe it was General Algard of the Dwarven army who ordered the Elders’ imprisonments", + "line": { + "current": 2, + "max": 3 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-33", + "lineInfo": { + "dialogue": "He was lauded as a hero, naturally. Now... now we must reap the consequences of such a decision.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "King Draani" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-34", + "lineInfo": { + "dialogue": "True Ice is a material which cannot be melted or burned through by any means. Not even dogun magic has been able to make a dent.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-35", + "lineInfo": { + "dialogue": "... I imagine this is why this location was chosen to hold the elders. A prison from which they would never be able to escape.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-36", + "lineInfo": { + "dialogue": "It is known for it to form naturally under extreme conditions... But the ice here is nowhere near natural.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-37", + "lineInfo": { + "dialogue": "It was formed by an Ice Drake’s Breath partway through the war- and, well, as you can see, it has remained here ever since.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-38", + "lineInfo": { + "dialogue": "Just another remnant of our past mistakes, I suppose...", + "line": { + "current": 5, + "max": 5 + }, + "npc": "King Draani" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-39", + "lineInfo": { + "dialogue": "Breakfast... I had some eggs, I suppose. Though, I had no idea that breakfast would be my last, did I..?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-40", + "lineInfo": { + "dialogue": "Hm... Had I known, maybe I would have chosen differently. Maybe I would have-... nevermind.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "King Draani" + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-41", + "lineInfo": { + "dialogue": "Ahem. In any case- as I said, True Ice is impossible to break through, even with the most scorching flames.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "King Draani" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-42", + "lineInfo": { + "dialogue": "I... I suppose that a dragon’s breath might be able to melt it. That logic does make sense.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-43", + "lineInfo": { + "dialogue": "We have little knowledge of what dragons were like, though. As they went extinct, that information became... useless. And so, it was lost.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-44", + "lineInfo": { + "dialogue": "If anyone would know more about dragons, it would be the doguns.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "King Draani" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-45", + "lineInfo": { + "dialogue": "This ice is harder than obsidian itself. The crystals which form the material are bonded by ancient magic.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-46", + "lineInfo": { + "dialogue": "Shattering it with such tools isn't an option. Perhaps there is a weapon that could break through, somewhere deep in our armory- after all, this vault had to be carved somehow...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-47", + "lineInfo": { + "dialogue": "However, given the circumstances, I don't think we have the time to search for it. Even if we started now, our armory is enormous. It would take weeks to find what we need.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "King Draani" + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-48", + "lineInfo": { + "dialogue": "The lava of the Heights is nothing more than molten rock. Just a remnant of the shaping of these caverns.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-49", + "lineInfo": { + "dialogue": "It's not nearly hot enough to melt True Ice. If it could, the Freezing Heights would have faded long ago.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "King Draani" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-50", + "lineInfo": { + "dialogue": "My... uhm... green is nice, I suppose? Though perhaps not very Dwarven...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-51", + "lineInfo": { + "dialogue": "Red, then. Or orange! ...Although my bedsheets are the most wonderful shade of navy blue...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "King Draani" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-52", + "lineInfo": { + "dialogue": "But none of that matters. All the dragons are gone, after all. We still have no options", + "line": { + "current": 1, + "max": 1 + }, + "npc": "King Draani" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-53", + "lineInfo": { + "dialogue": "Why, they died out. As Gavellian civilizations grew in size, the ferocity and size of a dragon was simply too big a threat.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-54", + "lineInfo": { + "dialogue": "Some were hunted. Some died of starvation. Eggs were taken from nests and shattered over boulders for the birds to feed on.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-55", + "lineInfo": { + "dialogue": "Now all that are left are dragonlings - echoes of their once-great ancestors, with barely enough flame to singe your armor.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "King Draani" + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-56", + "lineInfo": { + "dialogue": "You- what? Near Thanos?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-57", + "lineInfo": { + "dialogue": "A living dragon... You’ve done quite a lot, haven’t you? Stopped a war, moved a dragon...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-58", + "lineInfo": { + "dialogue": "Well... if there is a living dragon at Thanos... Then we still have hope! soldier, we must ask for its help.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-59", + "lineInfo": { + "dialogue": "Let us return to the others. I asked them to wait outside of Rodoroc... perhaps they’ll be able to confirm that a dragon’s breath would do the job.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "King Draani" + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-60", + "lineInfo": { + "dialogue": "Indeed. The fire dragons sided with them during the war. I'm sure you've come across the skeleton just outside Freezing Heights?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-61", + "lineInfo": { + "dialogue": "Yes, well... the Dwarves needed a counter to the sheer power of a fire dragon in battle, and so they resorted to enslaving dragons and drakes of other elements.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-62", + "lineInfo": { + "dialogue": "Like the Ice Drake that created this vault, and encased the Elders in the truest of ice.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "King Draani" + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-63", + "lineInfo": { + "dialogue": "... Well, there was this excellent novel of about one of those creatures from the Shiar, who had to travel to the Heights with this ring he had inherited-", + "line": { + "current": 1, + "max": 2 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-64", + "lineInfo": { + "dialogue": "But I confess, these questions seem almost irrelevant. We have a more pressing issue at hand, soldier.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "King Draani" + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-65", + "lineInfo": { + "dialogue": "... so that is the situation we find ourselves in. Paku, what do you think? Would such a plan work?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-chieftainpaku-8", + "lineInfo": { + "dialogue": "Hm... You may be correct... Draani. The magic in... a dragon’s breath... was very potent. And to think... mighty Ozoth had survived... all these years...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Chieftain Paku" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-22", + "lineInfo": { + "dialogue": "If Ozoth is alive... we must seek her help. If the doguns ask... for her aid, she will... give it.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-66", + "lineInfo": { + "dialogue": "Well, that’s as good a plan as any. soldier, you’ll travel to seek this dragon’s counsel, along with... Ineos, was it? Good luck.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-23", + "lineInfo": { + "dialogue": "You should... take the Trading Tunnel... soldier. I will put the coordinates... in your Content Book.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Ineos" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-ineos-24", + "lineInfo": { + "dialogue": "You should... take the Trading Tunnel... soldier. I have put the coordinates... in your Content Book.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ineos" + } + } + ] + }, + "56": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-ineos-25", + "lineInfo": { + "dialogue": "Ah... it is... good to... see you. We must... proceed to Ozoth... with all haste.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ineos" + } + } + ] + }, + "57": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-ineos-26", + "lineInfo": { + "dialogue": "Ozoth the Dragon... Endless Kindler... we have come... to ask for your aid.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ozoth-1", + "lineInfo": { + "dialogue": "...", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Ozoth" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-27", + "lineInfo": { + "dialogue": "We are searching... for a way... to melt the truest... of ice. The fate... of Gavel... hangs in the balance.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-28", + "lineInfo": { + "dialogue": "Doguns... and Dragons... our fates have been entwined... for centuries. We call on you now... Endless Kindler... to save this province.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ozoth-2", + "lineInfo": { + "dialogue": "...", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Ozoth" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-29", + "lineInfo": { + "dialogue": "I... see. soldier... Ozoth tells me... that an Everflame... will free the Elders.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-30", + "lineInfo": { + "dialogue": "... well...", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-31", + "lineInfo": { + "dialogue": "The Endless Kindler... is willing to part... with hers. You must... retrieve it... from her stomach.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ozoth-3", + "lineInfo": { + "dialogue": "...", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Ozoth" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-32", + "lineInfo": { + "dialogue": "I would advise you... not to think... too much about this. When... you are ready... enter Ozoth's mouth and retrieve... the flame.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Ineos" + } + } + ] + }, + "58": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-ineos-33", + "lineInfo": { + "dialogue": "soldier! Have you retrieved... the Everflame?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-34", + "lineInfo": { + "dialogue": "Excellent. Endless Kindler... thank you... for your sacrifice. I will ensure... that your flame... is returned to you.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ozoth-4", + "lineInfo": { + "dialogue": "...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ozoth" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-35", + "lineInfo": { + "dialogue": "Ozoth apologises... if it was a bit hot... in there.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-36", + "lineInfo": { + "dialogue": "Now, soldier... I was never the best... at the ancient magic... but I hope I have enough skill... to take us the short route back...", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Ineos" + } + } + ] + }, + "59": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-67", + "lineInfo": { + "dialogue": "You have returned! Is there news from Thanos? Did the dragon offer aid?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-37", + "lineInfo": { + "dialogue": "She did... Ozoth has made a great sacrifice... for this province... but we have an Everflame... to melt the ice.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-chieftainpaku-9", + "lineInfo": { + "dialogue": "Well done... both of you. I will ensure... that the doguns thank her... properly. The dwarves would do well... to do the same.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Chieftain Paku" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-68", + "lineInfo": { + "dialogue": "Yes, yes, but there's no time to worry about that now. Quick, let's get back to the-", + "line": { + "current": 4, + "max": 7 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-chieftainpaku-10", + "lineInfo": { + "dialogue": "Be wary... of the Elders... Draani. It is unlikely they will react well... after their imprisonment. It is vital... you explain the situation... to them.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Chieftain Paku" + } + }, + { + "fileOverride": "thebreakingpoint-chieftainpaku-11", + "lineInfo": { + "dialogue": "I would join you... both... but the ice is inhospitable... to my kind. I wish the both of you... the best of luck.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Chieftain Paku" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-69", + "lineInfo": { + "dialogue": "... right. Yes. Well, there's no getting around it. Come, soldier. We must unfreeze the Elders and get them to listen to us. Bring the flame, I will meet you at the Vault.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "King Draani" + } + } + ] + }, + "60": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-70", + "lineInfo": { + "dialogue": "Come, soldier. We must unfreeze the Elders and get them to listen to us. Bring the flame, I will meet you at the Vault.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "King Draani" + } + } + ] + }, + "61": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-kingdraani-71", + "lineInfo": { + "dialogue": "Well then, what are we waiting for! Let’s free these elders, shall we?", + "line": { + "current": 1, + "max": 12 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-72", + "lineInfo": { + "dialogue": "Just bring the Everflame to each of the cells, and melt through that True Ice.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-73", + "lineInfo": { + "dialogue": "Excellent! We’ve done it! Now we just need to explain the situation-...", + "line": { + "current": 3, + "max": 12 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-1", + "lineInfo": { + "dialogue": "We are freed.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Elder Astal" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-74", + "lineInfo": { + "dialogue": "...Ah. I suppose I did not... think this through. Ehm. Elders, I must apo-", + "line": { + "current": 5, + "max": 12 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-2", + "lineInfo": { + "dialogue": "Dwarf... Hm. The crimes... of your ancestors... must be repaid.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Elder Astal" + } + }, + { + "fileOverride": "thebreakingpoint-elderdesint-1", + "lineInfo": { + "dialogue": "However. We have... heard you speak. We have... learned of... the Protector’s state.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Elder Desint" + } + }, + { + "fileOverride": "thebreakingpoint-elderiscor-1", + "lineInfo": { + "dialogue": "We will... settle your debt... later. This situation... is a more pressing... concern. The Protector... must be calmed.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Elder Iscor" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-3", + "lineInfo": { + "dialogue": "...Yes. You. Human. That was... dragonfire... was it not?", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Elder Astal" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-4", + "lineInfo": { + "dialogue": "Then allow me... to borrow it. Its strength... will allow us... to restore ours. Now... Who now holds... the title... of Chieftain?", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Elder Astal" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-75", + "lineInfo": { + "dialogue": "A-ah! Paku is now the Dogun Chieftain. He would be at... At Taloka.", + "line": { + "current": 11, + "max": 12 + }, + "npc": "King Draani" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-5", + "lineInfo": { + "dialogue": "Very well... We shall travel... through flame... and through stone...", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Elder Astal" + } + } + ] + }, + "62": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-chieftainpaku-12", + "lineInfo": { + "dialogue": "...The Elders... after all this time... to see you, again... in the flesh...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Chieftain Paku" + } + }, + { + "fileOverride": "thebreakingpoint-elderdesint-2", + "lineInfo": { + "dialogue": "Greetings, Paku. We have much... to discuss. But first... we must travel... to the Protector.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Elder Desint" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-6", + "lineInfo": { + "dialogue": "Join us... Ineos and Paku. There is... very little time... to waste.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Elder Astal" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-7", + "lineInfo": { + "dialogue": "Now, let us travel... ⓣⓗⓡⓞⓤⓖⓗ ⓕⓛⓐⓜⓔ... ⓐⓝⓓ ⓣⓗⓡⓞⓤⓖⓗ ⓢⓣⓞⓝⓔ...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Elder Astal" + } + } + ] + }, + "63": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-chieftainpaku-13", + "lineInfo": { + "dialogue": "Korzim... my son... join us. The Elders must see... to the Protector.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Chieftain Paku" + } + }, + { + "fileOverride": "thebreakingpoint-korzim-8", + "lineInfo": { + "dialogue": "Iscor... Astal... Desint... it has been... too long. I will come.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-8", + "lineInfo": { + "dialogue": "ⓔⓐⓡⓣⓗ ⓐⓝⓓ ⓕⓛⓐⓜⓔ... ⓕⓘⓡⓔ ⓐⓝⓓ ⓢⓣⓞⓝⓔ... ⓣⓡⓐⓝⓢⓟⓞⓡⓣ ⓤⓢ ⓣⓗⓡⓞⓤⓖⓗ ⓨⓞⓤⓡ ⓕⓞⓡⓜ!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Elder Astal" + } + } + ] + }, + "64": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-rhay-52", + "lineInfo": { + "dialogue": "-have to trust that they'll return!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-generalelix-20", + "lineInfo": { + "dialogue": "There's no time! I can feel the damned ground cracking beneath my feet, we have to turn to the final option. We've had demolition mages on standby the past few days, our only choice is to-", + "line": { + "current": 2, + "max": 5 + }, + "npc": "General Elix" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-38", + "lineInfo": { + "dialogue": "Rhay. Elix. My Elders... have been freed. They are here... to help... the Protector.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-elderiscor-2", + "lineInfo": { + "dialogue": "Join us... brave ones. You will see... that your efforts to save this Province... have not been in vain.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Elder Iscor" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-9", + "lineInfo": { + "dialogue": "ⓕⓛⓐⓜⓔⓢ ⓞⓕ ⓣⓗⓔ ⓔⓐⓡⓣⓗ... ⓣⓐⓚⓔ ⓤⓢ ⓣⓞ ⓣⓗⓔ ⓖⓡⓔⓐⓣ ⓟⓡⓞⓣⓔⓒⓣⓞⓡ... ⓣⓞ ⓜⓐⓚⓔ ⓞⓤⓡ ⓟⓛⓔⓐ!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Elder Astal" + } + } + ] + }, + "65": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-elderastal-10", + "lineInfo": { + "dialogue": "Great Protector... It is furious.", + "line": { + "current": 1, + "max": 16 + }, + "npc": "Elder Astal" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-11", + "lineInfo": { + "dialogue": "Hmph. Foolish dwarves... This is what has come...of your needless war... You are fortunate...to have freed us now...", + "line": { + "current": 2, + "max": 16 + }, + "npc": "Elder Astal" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-12", + "lineInfo": { + "dialogue": "Desint... Iscor... I will prepare... the ritual. Defend me... as I do so.", + "line": { + "current": 3, + "max": 16 + }, + "npc": "Elder Astal" + } + }, + { + "fileOverride": "thebreakingpoint-elderdesint-3", + "lineInfo": { + "dialogue": "Human. We will pull the Protector... away from the brink. That is all we can do now. All the power... we can muster.", + "line": { + "current": 4, + "max": 16 + }, + "npc": "Elder Desint" + } + }, + { + "fileOverride": "thebreakingpoint-elderiscor-3", + "lineInfo": { + "dialogue": "You must enter... these sacred grounds. Battle through to the end... Knock some sense... into it.", + "line": { + "current": 5, + "max": 16 + }, + "npc": "Elder Iscor" + } + }, + { + "fileOverride": "thebreakingpoint-ineos-39", + "lineInfo": { + "dialogue": "Adventurer... We are counting...on you. We will try to...support you however we can.", + "line": { + "current": 6, + "max": 16 + }, + "npc": "Ineos" + } + }, + { + "fileOverride": "thebreakingpoint-rhay-53", + "lineInfo": { + "dialogue": "We'll do the best we can out here! I have some ideas already...", + "line": { + "current": 7, + "max": 16 + }, + "npc": "Rhay" + } + }, + { + "fileOverride": "thebreakingpoint-generalelix-21", + "lineInfo": { + "dialogue": "Rhay, this isn't the time. Human. We have your back. You can do this.", + "line": { + "current": 8, + "max": 16 + }, + "npc": "General Elix" + } + }, + { + "fileOverride": "thebreakingpoint-korzim-9", + "lineInfo": { + "dialogue": "You have faced...worse odds before...have you not? You will face them...again.", + "line": { + "current": 9, + "max": 16 + }, + "npc": "Korzim" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-13", + "lineInfo": { + "dialogue": "It is done. Desint... Iscor... Take your positions. We must... hold it back.", + "line": { + "current": 10, + "max": 16 + }, + "npc": "Elder Astal" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-14", + "lineInfo": { + "dialogue": "ⓖⓡⓔⓐⓣ ⓟⓡⓞⓣⓔⓒⓣⓞⓡ, ⓛⓞⓡⓓ ⓞⓕ ⓢⓣⓞⓝⓔ, ⓗⓔⓐⓡ ⓞⓤⓡ ⓑⓤⓡⓝⓘⓝⓖ ⓒⓐⓛⓛ. ⓨⓞⓤⓡ ⓕⓤⓡⓨ ⓒⓛⓞⓤⓓⓢ ⓨⓞⓤⓡ ⓥⓘⓢⓘⓞⓝ, ⓨⓞⓤⓡ ⓐⓝⓖⓔⓡ ⓑⓤⓡⓝⓢ ⓐⓝⓓ ⓣⓦⓘⓢⓣⓢ ⓞⓤⓡ ⓗⓞⓜⓔ.", + "line": { + "current": 11, + "max": 16 + }, + "npc": "Elder Astal" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-15", + "lineInfo": { + "dialogue": "ⓦⓔ, ⓣⓗⓔ ⓓⓞⓖⓤⓝⓢ, ⓦⓗⓞ ⓝⓞⓦ ⓗⓞⓛⓓ ⓣⓗⓔ ⓕⓘⓝⓐⓛ ⓕⓛⓐⓜⓔ ⓞⓕ ⓐ ⓕⓐⓛⓛⓔⓝ ⓖⓞⓓ... ⓦⓔ ⓦⓘⓛⓛ ⓗⓞⓛⓓ ⓨⓞⓤ ⓑⓐⓒⓚ. ⓦⓔ ⓦⓘⓛⓛ ⓚⓔⓔⓟ ⓣⓗⓘⓢ ⓛⓐⓝⓓ ⓘⓝⓣⓐⓒⓣ!", + "line": { + "current": 12, + "max": 16 + }, + "npc": "Elder Astal" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-16", + "lineInfo": { + "dialogue": "We will... hold it from here... human. Now... go! We will not... be able to hold it... for long...", + "line": { + "current": 13, + "max": 16 + }, + "npc": "Elder Astal" + } + }, + { + "fileOverride": "thebreakingpoint-elderastal-17", + "lineInfo": { + "dialogue": "This crystal...will let you harness...our flame. Use it...to break through...its defenses.", + "line": { + "current": 14, + "max": 16 + }, + "npc": "Elder Astal" + } + }, + { + "fileOverride": "thebreakingpoint-chieftainpaku-14", + "lineInfo": { + "dialogue": "soldier... Before you go. I will offer you... these powerful relics. Our people... have held them for... longer than I have lived. They may... help you on your quest.", + "line": { + "current": 15, + "max": 16 + }, + "npc": "Chieftain Paku" + } + }, + { + "fileOverride": "thebreakingpoint-kingdraani-76", + "lineInfo": { + "dialogue": "I cannot give you something as unique as what Paku has offered, but I can still lend you a sum from our treasury. Use it as you must, so long as you can calm that thing. Good luck.", + "line": { + "current": 16, + "max": 16 + }, + "npc": "King Draani" + } + } + ] + }, + "66": { + "dialogues": [ + { + "fileOverride": "thebreakingpoint-generalelix-22", + "lineInfo": { + "dialogue": "Well, the saviour of the province! I count my lucky stars that you walked through Kandon that day the machine broke, I don't know what we would've done without you.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "General Elix" + } + } + ] + } + } + }, + "The Canary Calls": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "canarycalls-daffyd-1", + "lineInfo": { + "dialogue": "Phew... Everyone make it out alright? That was...one hell of a sprint. I'm absolutely knackered.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Daffyd" + } + }, + { + "fileOverride": "canarycalls-mihco-1", + "lineInfo": { + "dialogue": "I'm not sure, mate. I left a bunch of my stuff down there. Who knows if I'll get it back.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Mihco" + } + }, + { + "fileOverride": "canarycalls-daffyd-2", + "lineInfo": { + "dialogue": "Forget about that, what are we gonna tell the chief? That chopsy old fool is gonna kill us if he sees us not working.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Daffyd" + } + }, + { + "fileOverride": "canarycalls-daffyd-3", + "lineInfo": { + "dialogue": "Oi, you! Listen, there was some kind of explosion down in the mines. We're not sure what it was or where it came from, but it surely didn't sound good.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Daffyd" + } + }, + { + "fileOverride": "canarycalls-daffyd-4", + "lineInfo": { + "dialogue": "The four of us were the only blokes down in the mines, so everyone should be out safely. But I reckon we can't go back if this issue isn't resolved.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Daffyd" + } + }, + { + "fileOverride": "canarycalls-daffyd-5", + "lineInfo": { + "dialogue": "You must go to the chief and tell him about the situation. Head down this mineshaft and turn left, and he should be there.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Daffyd" + } + }, + { + "fileOverride": "canarycalls-daffyd-6", + "lineInfo": { + "dialogue": "Just, uh... Make sure not to mention us by name. Now, if you'll excuse us, we'll...be on our way.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Daffyd" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-1", + "lineInfo": { + "dialogue": "That's right, keep it moving! The whole of Thesead is going to run out of coal at this pace!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-2", + "lineInfo": { + "dialogue": "Eh? What do you want? Only registered miners are allowed beyond this point. Speak up or get off the premises.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-3", + "lineInfo": { + "dialogue": "...An explosion? In the mines? Just now?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-4", + "lineInfo": { + "dialogue": "EMERGENCY BREAK TIME, YOU GERBILS! EVERYONE COME AND MEET ME BY THE ENTRANCE! NOW!!!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-5", + "lineInfo": { + "dialogue": "Alright, you lot better listen bloody carefully. An explosion has been reported in the mines. You all know what that means, yes?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-6", + "lineInfo": { + "dialogue": "No, you bunch of ingrates! One of you needs to take the ol' canary down to the mines and see whatever the hell's going on.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-7", + "lineInfo": { + "dialogue": "Now, which one of you blokes would be willing to-", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Chief Clight" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-8", + "lineInfo": { + "dialogue": "Right then. I guess that leaves you, young lad. What do you say? Want a job?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chief Clight" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-9", + "lineInfo": { + "dialogue": "Very good! Come on then, let me introduce to you our little feathered mascot.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chief Clight" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-10", + "lineInfo": { + "dialogue": "You sure? I'll pay a lot, and it won't be dangerous. Even if it is, you've got all that armour on you!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chief Clight" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-11", + "lineInfo": { + "dialogue": "That's the spirit! Come on then, let me introduce to you our little feathered mascot.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chief Clight" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-12", + "lineInfo": { + "dialogue": "You'll get a bloody mountain of emeralds, god damn it! This is a once in a lifetime opportunity! Do you want it or not?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chief Clight" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-13", + "lineInfo": { + "dialogue": "Good. Now, hurry up and follow me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chief Clight" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-14", + "lineInfo": { + "dialogue": "You know what? This is ridiculous. The whole of Thesead is at danger, and you're playing games with ME?! I know you can do it. Follow me. Now.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chief Clight" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-15", + "lineInfo": { + "dialogue": "Scared speechless, eh? Don't worry, it'll be an easy job. Come on, follow me to the canary's cage.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chief Clight" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-16", + "lineInfo": { + "dialogue": "Well? You coming or not?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chief Clight" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-17", + "lineInfo": { + "dialogue": "I don't have all day.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chief Clight" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-18", + "lineInfo": { + "dialogue": "Meet our canary! She's such a beaut.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-19", + "lineInfo": { + "dialogue": "You see, whenever we hear news of an explosion, we always bring our canary with us to check it out. They can detect potential gases much earlier than we can.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-20", + "lineInfo": { + "dialogue": "Let me just get the key and-", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-21", + "lineInfo": { + "dialogue": "WAIT, WHAT? WHERE'S THE BLOODY KEY? WHICH ONE OF YOU LOT IS RESPONSIBLE?! I SWEAR I'M GONNA...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-22", + "lineInfo": { + "dialogue": "...Listen up, lad. Take this toothpick I've been chewing on. I need you to pick the cage's lock. It's a little wet, but it should do the trick. Understood? Good, now hurry up!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Chief Clight" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-23", + "lineInfo": { + "dialogue": "You're too slow, lad. When you hear a sound, twiddle the toothpick as fast as you can. Try again.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chief Clight" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-24", + "lineInfo": { + "dialogue": "You're picking the lock wrong, lad. Keep nudging it around until you hear a sound. Try again.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chief Clight" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-25", + "lineInfo": { + "dialogue": "Doing just fine, lad. Almost there...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chief Clight" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-26", + "lineInfo": { + "dialogue": "Little old birdie is getting quite excited! Keep it up.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chief Clight" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-27", + "lineInfo": { + "dialogue": "Right then, lad! It's time to begin the-", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-28", + "lineInfo": { + "dialogue": "OW! Bloody hell! Those are some freakishly sharp claws! What are you playing at?!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-29", + "lineInfo": { + "dialogue": "Well, I think she likes you, lad. Doesn't like me, apparently.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-30", + "lineInfo": { + "dialogue": "I was going to feed her, but I suppose you can do the honors. Or not, seeing as she's been particularly troublesome...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-31", + "lineInfo": { + "dialogue": "Anyway, do as you please. I'll be waiting by the elevator in the mineshaft. Hurry up, and don't make me wait!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Chief Clight" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "canarycalls-theseadcoalminer-1", + "lineInfo": { + "dialogue": "Hey up! Aren't you that Wynn soldier we've heard about? You look proper tough, is all.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Thesead Coal Miner" + } + }, + { + "fileOverride": "canarycalls-theseadcoalminer-2", + "lineInfo": { + "dialogue": "No, this is definitely them! The name's soldier, right?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Thesead Coal Miner" + } + }, + { + "fileOverride": "canarycalls-theseadcoalminer-3", + "lineInfo": { + "dialogue": "Woah, this kid's a soldier? I wish I had that kind of job... I'd imagine it's much better than this crap.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Thesead Coal Miner" + } + }, + { + "fileOverride": "canarycalls-theseadcoalminer-4", + "lineInfo": { + "dialogue": "Yeah, I really hate this job, man. That and the chief makes me pull my hair out... In fact, I already went bald because of it!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Thesead Coal Miner" + } + }, + { + "fileOverride": "canarycalls-theseadcoalminer-5", + "lineInfo": { + "dialogue": "Dude, the chief scares the crap out of me. I'm surprised that I still have this job. Looks like we might lose it if the mines ain't restored fast enough.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Thesead Coal Miner" + } + }, + { + "fileOverride": "canarycalls-theseadcoalminer-6", + "lineInfo": { + "dialogue": "I-I don't want to lose this job, man! I've got a wife and two goldfish!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Thesead Coal Miner" + } + }, + { + "fileOverride": "canarycalls-theseadcoalminer-7", + "lineInfo": { + "dialogue": "Easy, Ryan. We won't lose it. We're in this together. soldier will take care of it.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Thesead Coal Miner" + } + }, + { + "fileOverride": "canarycalls-theseadcoalminer-8", + "lineInfo": { + "dialogue": "Our very lives are in your hands, soldier. Good luck, and be careful. The mines are quite treacherous even for people like you.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Thesead Coal Miner" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-32", + "lineInfo": { + "dialogue": "Right then, lad! I suppose you might want to know more about this job.", + "line": { + "current": 1, + "max": 15 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-33", + "lineInfo": { + "dialogue": "As I said before, when unknown explosions occur in the mines, that's usually a sign that something bad happened.", + "line": { + "current": 2, + "max": 15 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-34", + "lineInfo": { + "dialogue": "Most of the time, an awfully putrid gas appears. This is where our canary comes in. Once she verifies that a gas is present, we decide whether or not to temporarily close the mine.", + "line": { + "current": 3, + "max": 15 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-35", + "lineInfo": { + "dialogue": "I presume you met Daffyd and his group, correct? Thankfully, they were the only ones down in the mines.", + "line": { + "current": 4, + "max": 15 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-36", + "lineInfo": { + "dialogue": "...Wait, where the hell even are they? Did I not tell them to...", + "line": { + "current": 5, + "max": 15 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-37", + "lineInfo": { + "dialogue": "Eh, doesn't matter. Lad, point is, I want you to check whether that gas is still there, if at all.", + "line": { + "current": 6, + "max": 15 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-38", + "lineInfo": { + "dialogue": "We'll use the elevator behind me to get down into the mines. Just let me pull this here lever to activate it...", + "line": { + "current": 7, + "max": 15 + }, + "npc": "Chief Clight" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-39", + "lineInfo": { + "dialogue": "...WHY ISN'T THIS BLOODY CONTRAPTION WORKING??! WORK, WORK, GOD DAMN IT!!", + "line": { + "current": 9, + "max": 15 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-40", + "lineInfo": { + "dialogue": "Must've been Daffyd and his group... No worries, lad. I've got, uh...a last resort, so to speak.", + "line": { + "current": 10, + "max": 15 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-41", + "lineInfo": { + "dialogue": "You'll need to ride a minecart down into the mines. Thing is, we haven't used them to transport people in...years.", + "line": { + "current": 11, + "max": 15 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-42", + "lineInfo": { + "dialogue": "Why? Erm, well... See for yourself.", + "line": { + "current": 12, + "max": 15 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-43", + "lineInfo": { + "dialogue": "Our transporter minecarts are manual. Miners around here prefer automatic.", + "line": { + "current": 13, + "max": 15 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-44", + "lineInfo": { + "dialogue": "For you, it should be no issue controlling it. There's instructions attached to the gear stick.", + "line": { + "current": 14, + "max": 15 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-45", + "lineInfo": { + "dialogue": "Now then, go into the mineshaft, following the rails behind me. You'll be able to summon a minecart there.", + "line": { + "current": 15, + "max": 15 + }, + "npc": "Chief Clight" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-1", + "lineInfo": { + "dialogue": "Hello.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-2", + "lineInfo": { + "dialogue": "Forgive my interference.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-3", + "lineInfo": { + "dialogue": "I am but a figment of your imagination. To you, I am not real.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-4", + "lineInfo": { + "dialogue": "The mysterious force that brought death upon me... It changed me.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-5", + "lineInfo": { + "dialogue": "So too will it change you. I will make that happen. Just for you.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-6", + "lineInfo": { + "dialogue": "No need to thank me. It is the least I can do.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-7", + "lineInfo": { + "dialogue": "Moments like these are cherished. Savor the moment with me. Would you like to die with me?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-8", + "lineInfo": { + "dialogue": "I was hoping we could stay for a little longer. If that is your choice, then so be it.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-9", + "lineInfo": { + "dialogue": "See you on the other side.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-10", + "lineInfo": { + "dialogue": "I would be more than glad to. Sit back and relax.", + "line": { + "current": 1, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-11", + "lineInfo": { + "dialogue": "How was your day today?", + "line": { + "current": 2, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-12", + "lineInfo": { + "dialogue": "Mine could have been better. Cramped up in a cage all day, then suddenly witnessing my death in front of an incompetent human.", + "line": { + "current": 3, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-13", + "lineInfo": { + "dialogue": "You couldn't even save me. How pathetic.", + "line": { + "current": 4, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-14", + "lineInfo": { + "dialogue": "So, anyway, do you come here often?", + "line": { + "current": 5, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-15", + "lineInfo": { + "dialogue": "Oh, wait. This is your first time. As well as your last time. That's very poetic. Do you want to become a poet?", + "line": { + "current": 6, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-16", + "lineInfo": { + "dialogue": "I know a good poem. Want to hear it?", + "line": { + "current": 7, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-17", + "lineInfo": { + "dialogue": "You are average,", + "line": { + "current": 8, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-18", + "lineInfo": { + "dialogue": "The most average Joe I've seen,", + "line": { + "current": 9, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-19", + "lineInfo": { + "dialogue": "What more can I say.", + "line": { + "current": 10, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-20", + "lineInfo": { + "dialogue": "You mess up sometimes,", + "line": { + "current": 8, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-21", + "lineInfo": { + "dialogue": "Mistakes are a part of life,", + "line": { + "current": 9, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-22", + "lineInfo": { + "dialogue": "Death is a part too.", + "line": { + "current": 10, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-23", + "lineInfo": { + "dialogue": "Your soul points are low,", + "line": { + "current": 8, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-24", + "lineInfo": { + "dialogue": "You will lose a lot of things,", + "line": { + "current": 9, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-25", + "lineInfo": { + "dialogue": "Better not get killed.", + "line": { + "current": 10, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-26", + "lineInfo": { + "dialogue": "You're a casual,", + "line": { + "current": 8, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-27", + "lineInfo": { + "dialogue": "You likely hate professions,", + "line": { + "current": 9, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-28", + "lineInfo": { + "dialogue": "At least you're with me.", + "line": { + "current": 10, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-29", + "lineInfo": { + "dialogue": "You are well-rounded,", + "line": { + "current": 8, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-30", + "lineInfo": { + "dialogue": "You are skilled at everything,", + "line": { + "current": 9, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-31", + "lineInfo": { + "dialogue": "The jack of all trades.", + "line": { + "current": 10, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-32", + "lineInfo": { + "dialogue": "Your level is maxed,", + "line": { + "current": 8, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-33", + "lineInfo": { + "dialogue": "You spend hours getting that,", + "line": { + "current": 9, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-34", + "lineInfo": { + "dialogue": "Don't know why You're here.", + "line": { + "current": 10, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-35", + "lineInfo": { + "dialogue": "You don't die often,", + "line": { + "current": 8, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-36", + "lineInfo": { + "dialogue": "You have maximum soul points,", + "line": { + "current": 9, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-37", + "lineInfo": { + "dialogue": "That's about to change.", + "line": { + "current": 10, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-38", + "lineInfo": { + "dialogue": "How was that? It was beautiful, wasn't it?", + "line": { + "current": 11, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-39", + "lineInfo": { + "dialogue": "Silence is bliss. You must not have very many friends.", + "line": { + "current": 12, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-40", + "lineInfo": { + "dialogue": "That's okay. I am your friend. Am I your friend? Please say yes. I'm very lonely.", + "line": { + "current": 13, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-41", + "lineInfo": { + "dialogue": "I had friends too, once. They were all taken by a bunch of selfish coal miners. Then died to their incompetence.", + "line": { + "current": 14, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-42", + "lineInfo": { + "dialogue": "But you are different. You are not like the others. I like you. I love you. I love you so much.", + "line": { + "current": 15, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-43", + "lineInfo": { + "dialogue": "Love is patient.", + "line": { + "current": 16, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-44", + "lineInfo": { + "dialogue": "Love is kind.", + "line": { + "current": 17, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-45", + "lineInfo": { + "dialogue": "Love does not envy.", + "line": { + "current": 18, + "max": 28 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-46", + "lineInfo": { + "dialogue": "Hello again.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-47", + "lineInfo": { + "dialogue": "I will give you another chance to redeem yourself.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-48", + "lineInfo": { + "dialogue": "So, kindly, I will tell you again.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-49", + "lineInfo": { + "dialogue": "I see. So you want to make this an unforgettable experience. I appreciate the thoughtfulness.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + }, + { + "fileOverride": "canarycalls-canary-50", + "lineInfo": { + "dialogue": "Let's have some fun.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Canary" + }, + "settings": { + "position": { + "x": -14117.5, + "y": 16.0, + "z": 6041.0 + } + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-51", + "lineInfo": { + "dialogue": "Let's do a little warm-up, shall we?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-52", + "lineInfo": { + "dialogue": "Liked the dance party? Those moves were so utterly terrible, I may as well dub them 'The soldier'.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Canary" + } + }, + { + "fileOverride": "canarycalls-canary-53", + "lineInfo": { + "dialogue": "Let's do something I like to call 'The Canary'.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Canary" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-54", + "lineInfo": { + "dialogue": "Can't hit me with that.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-55", + "lineInfo": { + "dialogue": "Are you even playing the game?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-56", + "lineInfo": { + "dialogue": "That tickles.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-57", + "lineInfo": { + "dialogue": "Try harder.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-58", + "lineInfo": { + "dialogue": "Is this the height of your skill?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-59", + "lineInfo": { + "dialogue": "Hands off of those, if you would be so kind.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-60", + "lineInfo": { + "dialogue": "Amazing... That really hit different.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-61", + "lineInfo": { + "dialogue": "It felt nice the first time, but now it's...different.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-62", + "lineInfo": { + "dialogue": "Seriously... Enough is enough.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-63", + "lineInfo": { + "dialogue": "Okay, who even put those there in the first place?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-64", + "lineInfo": { + "dialogue": "I'm alaready dead, how is this even possible?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-65", + "lineInfo": { + "dialogue": "I'm not even REAL!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-66", + "lineInfo": { + "dialogue": "Ⓘⓝⓓⓔⓔⓓ... Ⓨⓞⓤ ⓐⓡⓔ ⓣⓗⓔ ⓞⓝⓔ ⓦⓗⓞ ⓒⓐⓝ ⓓⓔⓢⓣⓡⓞⓨ ⓣⓗⓔ ⓒⓞⓛⓞⓢⓢⓤⓢ.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-67", + "lineInfo": { + "dialogue": "Nice going bozo, you fell off.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-68", + "lineInfo": { + "dialogue": "Nice try, but that won't work.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-69", + "lineInfo": { + "dialogue": "You can't escape your doom.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-70", + "lineInfo": { + "dialogue": "Interesting tactic! Do it again.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-71", + "lineInfo": { + "dialogue": "Was that you, or will you blame that on lag?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-72", + "lineInfo": { + "dialogue": "Go ahead. Run right into it.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-73", + "lineInfo": { + "dialogue": "Even a snail could dodge that.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "56": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-74", + "lineInfo": { + "dialogue": "I suppose this is it.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Canary" + } + }, + { + "fileOverride": "canarycalls-canary-75", + "lineInfo": { + "dialogue": "It's been fun, kid.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Canary" + } + }, + { + "fileOverride": "canarycalls-canary-76", + "lineInfo": { + "dialogue": "Alas, time runs short.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Canary" + } + }, + { + "fileOverride": "canarycalls-canary-77", + "lineInfo": { + "dialogue": "You are about to enter the cruel, real world.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Canary" + } + } + ] + }, + "57": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-78", + "lineInfo": { + "dialogue": "Kill me now, so we can spend our final moments together in bliss.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "58": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-79", + "lineInfo": { + "dialogue": "Fantastic. You are the pinnacle of humankind.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Canary" + } + }, + { + "fileOverride": "canarycalls-canary-80", + "lineInfo": { + "dialogue": "Have fun.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Canary" + } + } + ] + }, + "59": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-81", + "lineInfo": { + "dialogue": "Kill me. Now.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "60": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-82", + "lineInfo": { + "dialogue": "Kill me now or you'll live to regret it.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "61": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-83", + "lineInfo": { + "dialogue": "Kill me now or I'll destroy Thesead.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "62": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-84", + "lineInfo": { + "dialogue": "Kill me now or I'll destroy Gavel.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "63": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-85", + "lineInfo": { + "dialogue": "Kill me now or I'll ruin every single province.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "64": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-86", + "lineInfo": { + "dialogue": "Kill me now or I'll destroy the world.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "65": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-87", + "lineInfo": { + "dialogue": "Okay, so you don't care about the world. In that case, kill me now or I'll kill your friends.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "66": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-88", + "lineInfo": { + "dialogue": "Kill me now or I'll do LITERALLY ANYTHING!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Canary" + } + } + ] + }, + "67": { + "dialogues": [ + { + "fileOverride": "canarycalls-canary-89", + "lineInfo": { + "dialogue": "No no. No no no no no. No. It's too late.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Canary" + } + }, + { + "fileOverride": "canarycalls-canary-90", + "lineInfo": { + "dialogue": "I just wanted to play again. Oh well.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Canary" + } + }, + { + "fileOverride": "canarycalls-canary-91", + "lineInfo": { + "dialogue": "At least I'll be in your memories. Forever. And ever.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Canary" + } + }, + { + "fileOverride": "canarycalls-canary-92", + "lineInfo": { + "dialogue": "Goodbye.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Canary" + } + } + ] + }, + "68": { + "dialogues": [ + { + "fileOverride": "canarycalls-theseadminer3-1", + "lineInfo": { + "dialogue": "...Hey! They're waking up!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "69": { + "dialogues": [ + { + "fileOverride": "canarycalls-theseadminer2-1", + "lineInfo": { + "dialogue": "Keep performing CPR, they're almost awake!", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Thesead Miner" + } + }, + { + "fileOverride": "canarycalls-theseadminer1-1", + "lineInfo": { + "dialogue": "No way! I actually did it! I saved their life!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Thesead Miner" + } + }, + { + "fileOverride": "canarycalls-theseadminer2-2", + "lineInfo": { + "dialogue": "We better get a raise for this!", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Thesead Miner" + } + }, + { + "fileOverride": "canarycalls-clight-46", + "lineInfo": { + "dialogue": "What the?! Who the hell let you in my house?", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-theseadminer1-2", + "lineInfo": { + "dialogue": "Boss! I can explain!", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Thesead Miner" + } + }, + { + "fileOverride": "canarycalls-clight-47", + "lineInfo": { + "dialogue": "No, you can't. Get outta here before I start lowering your salary.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-theseadminer1-3", + "lineInfo": { + "dialogue": "But, boss! I saved-", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Thesead Miner" + } + }, + { + "fileOverride": "canarycalls-clight-48", + "lineInfo": { + "dialogue": "GO!!", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-49", + "lineInfo": { + "dialogue": "Well then, lad! Despite their incompetence, they still managed to save your skin.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-50", + "lineInfo": { + "dialogue": "Come speak to me for a quick debriefing.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Chief Clight" + } + } + ] + }, + "70": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-51", + "lineInfo": { + "dialogue": "I sent my miners down to save you as soon as we felt that earthquake. It was so strong that I genuinely thought the world was ending.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-52", + "lineInfo": { + "dialogue": "I'm jolly sorry for forcing you to take on this job. This whole situation was completely unexpected.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-53", + "lineInfo": { + "dialogue": "Typically, gases are cleared up almost instantly. This time, however, it seemed to have been a lot more potent... But how?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-54", + "lineInfo": { + "dialogue": "...The Colossus. It stirs once more. That thing... It has already caused too much hardship for this area to handle.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-55", + "lineInfo": { + "dialogue": "It must be destroyed, once and for all. How that will happen, I do not know. But you...", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-56", + "lineInfo": { + "dialogue": "...No, it's nothing. Until it is dealt with, the mine must be closed down. The supply of coal will decrease, but it must be done.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-57", + "lineInfo": { + "dialogue": "Tell you what, lad! I'll give you, and only you, permission to access parts of the mine, right where we mine our world-famous Thesead coal.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-58", + "lineInfo": { + "dialogue": "Consider yourself a part-time Thesead coal miner. You've earned it, lad.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Chief Clight" + } + } + ] + }, + "71": { + "dialogues": [ + { + "fileOverride": "canarycalls-theseadminer3-2", + "lineInfo": { + "dialogue": "We still can't believe we found you. I'm proper shocked.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Thesead Miner" + } + }, + { + "fileOverride": "canarycalls-theseadminer3-3", + "lineInfo": { + "dialogue": "We had to use that blasted archaic minecart system because the elevator was still busted.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Thesead Miner" + } + }, + { + "fileOverride": "canarycalls-theseadminer2-3", + "lineInfo": { + "dialogue": "Everyone was exhausted from it. But just when all hope was seemingly lost, we found you laying on the ground.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Thesead Miner" + } + }, + { + "fileOverride": "canarycalls-theseadminer1-4", + "lineInfo": { + "dialogue": "You were violently twitching about, as if you were possessed by something. It was scary.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Thesead Miner" + } + }, + { + "fileOverride": "canarycalls-theseadminer3-4", + "lineInfo": { + "dialogue": "Whatever the effects of that gas are, we want absolutely none of it. I'm never stepping foot inside of that bloody mine ever again.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Thesead Miner" + } + }, + { + "fileOverride": "canarycalls-theseadminer3-5", + "lineInfo": { + "dialogue": "For the sake of our jobs and Thesead, the Colossus must be stopped.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Thesead Miner" + } + } + ] + }, + "72": { + "dialogues": [ + { + "fileOverride": "canarycalls-clight-59", + "lineInfo": { + "dialogue": "Thanks again for helping us out. Your efforts may have been futile, but at least we know how strong this gas is.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-60", + "lineInfo": { + "dialogue": "We just gotta be thankful that no one died. Forget about the coal, this is what matters most. If only...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Chief Clight" + } + }, + { + "fileOverride": "canarycalls-clight-61", + "lineInfo": { + "dialogue": "...Never mind. Once the elevator is repaired, you will be able to access the mine.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Chief Clight" + } + } + ] + } + } + }, + "The Canyon Guides": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-1", + "lineInfo": { + "dialogue": "Who's that? Am I finally being rescued!?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-2", + "lineInfo": { + "dialogue": "Wait, a human! Ugh, I shouldn’t have gotten my hopes up. What did you do, take a day of cliff diving?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-3", + "lineInfo": { + "dialogue": "If you really did intend to rescue me, you've assuredly wasted both our time.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-4", + "lineInfo": { + "dialogue": "If you really want to make yourself useful, get a Bantisu monk over here! You’re good at doing that, right? Fetching things and people?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Seluc" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-5", + "lineInfo": { + "dialogue": "You’re trying to kill me, aren’t you?! What, can’t take hearing the truth? Now my coat is drenched, and! AND!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-6", + "lineInfo": { + "dialogue": "These Jinko are going to pounce any second now!! I haven’t got a weapon, were you expecting me to rush off and get into a rumble?!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-7", + "lineInfo": { + "dialogue": "Kill them! Kill them now! And get me OUT OF HERE! You got me into this mess, now get me out!!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Seluc" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-8", + "lineInfo": { + "dialogue": "Ugh, all that danger got me flustered. I’m swe ating in this coat...and it’s all soaked already. Let me just...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-9", + "lineInfo": { + "dialogue": "...set that aside. Congratulations, human! I’m probably never getting that coat back, and it cost me a pretty sum. Thanks for nothing.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Seluc" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-10", + "lineInfo": { + "dialogue": "All this walking...I’m taking a break here. You forced me to jump off a cliff, I get to force you to slow down. It’s only fair!. Besides that...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-11", + "lineInfo": { + "dialogue": "I only even came out here to see the view. At least that can’t be ruined. Still, some vacation this turned out to be...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-12", + "lineInfo": { + "dialogue": "Wait, what in the world- What’s going on?!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Seluc" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-13", + "lineInfo": { + "dialogue": "NO ONE TELLS ME ANYTHING! The brochure didn’t mention earthquakes, YOU didn’t tell me either, but what was I expecting from a human anyways?!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-14", + "lineInfo": { + "dialogue": "I’m not a carrot! You’d better get me out of h- ...wait, wait, those...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-15", + "lineInfo": { + "dialogue": "H-Hobgoblins. Hobgoblins HOBGOBLINS THERE’S HOBGOBLINS!! KILL THEM! AAAAH! AAH! AAAAAAH!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Seluc" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-16", + "lineInfo": { + "dialogue": "Sweet baby bovine I just saw my life flash before my eyes. Ugh...now pull me up. I’m stuck. But easy on the goods, I’m NOT a carrot I’ll remind you!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seluc" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-17", + "lineInfo": { + "dialogue": "Great. I’m SO grateful to be covered in mud and hobgoblin blood, and to be lacking my coat, AND to be stuck with a human.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-18", + "lineInfo": { + "dialogue": "Just get me out of here already. See, if an actual Bantisu monk had come down I’d probably be at home already, sipping tea by the fire!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Seluc" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-19", + "lineInfo": { + "dialogue": "I know you humans are reckless, but I’d have expected you to have SOME concern, since you supposedly wanted to rescue me.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-20", + "lineInfo": { + "dialogue": "Maybe you think anything's possible for you since you're a soldier, but I'm just a guy from Olux! I hardly know anything about the canyon outside of what the brochures say!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Seluc" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-21", + "lineInfo": { + "dialogue": "Ugh, my feet are killing me. Maybe this hike wouldn’t be so bad if SOMEONE hadn’t knocked me into a lake and made me lose my shoes!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seluc" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-22", + "lineInfo": { + "dialogue": "More earthquakes...? Wait-", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-23", + "lineInfo": { + "dialogue": "The ridge is collapsing!!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Seluc" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-24", + "lineInfo": { + "dialogue": "...perfect. Just GREAT! The only available path to the temple, and now it’s blocked off! Just my luck!!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-25", + "lineInfo": { + "dialogue": "...wait. You’re reckless and willing to endanger your life, right? There’s no way that I could possibly use them, but I see some ledges.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-26", + "lineInfo": { + "dialogue": "See, just to the side of the rockslide? There's some ledges to jump around on.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Seluc" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-27", + "lineInfo": { + "dialogue": "Find me a way up, and fast! I've had enough of this stupid canyon.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seluc" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-28", + "lineInfo": { + "dialogue": "...of course it’s a ladder. I’m going to be feeling this climb for weeks...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-29", + "lineInfo": { + "dialogue": "Huff...puff... Well...huff... Wait, there’s...there’s no way down the other side! Huff...what a waste!!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-30", + "lineInfo": { + "dialogue": "Can you do ANYTHING right?! There’s no way I’m jumping down there, you maniac!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Seluc" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-31", + "lineInfo": { + "dialogue": "You...had better count yourself lucky I haven’t broken any bones from this. Agh...but that doesn’t mean I’m not aching all over!!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-32", + "lineInfo": { + "dialogue": "When I said you were reckless, I was hoping that maybe you’d keep that side of yourself away from other people!!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Seluc" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-33", + "lineInfo": { + "dialogue": "At least we’re nearly at the temple now. Come on Seluc, silver linings, silver linings. You’re nearly away from this freak...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seluc" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-34", + "lineInfo": { + "dialogue": "Okay, you know what? No. You’ve put me through QUITE a lot here, human, so you’re going to do me a favor and I’m not going to move another step til it’s done.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-35", + "lineInfo": { + "dialogue": "I paid two weeks’ wages for that coat you soaked. I’m not leaving here without it, and I’m way too tired to walk back down.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-36", + "lineInfo": { + "dialogue": "So you’re going back down to the bottom of the ridge, and you’re going to get me my coat. It’s the least you could do.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-37", + "lineInfo": { + "dialogue": "And be quick about it! I feel like these quakes are going to make the whole mountain collapse. That looks like it opened up a hole straight to the bottom!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Seluc" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-38", + "lineInfo": { + "dialogue": "Well? What are you waiting for? I'm freezing here!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Seluc" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-39", + "lineInfo": { + "dialogue": "Took you long enough, coat-fetcher! I’m practically frostbitten up here!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-40", + "lineInfo": { + "dialogue": "You see, I was just speaking to Gana about your dirt-poor imitation of their job! You ought to be ashamed- I had to get up here all on my own!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Seluc" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-41", + "lineInfo": { + "dialogue": "Anyway! Give me that coat. The monks here are going to provide me some hospitality then guide me out of these wretched canyon walls.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Seluc" + } + }, + { + "fileOverride": "thecanyonguides-seluc-42", + "lineInfo": { + "dialogue": "This is goodbye then, human, I won’t be missing you. Shoo!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Seluc" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-43", + "lineInfo": { + "dialogue": "...uh. ...dang it, why you gotta did that.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Seluc" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-44", + "lineInfo": { + "dialogue": "That's right! See, Gana? After all that, at least the human isn’t a liar.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Seluc" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-45", + "lineInfo": { + "dialogue": "WHY YOU-", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Seluc" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-46", + "lineInfo": { + "dialogue": "GAH! NOT AGAIN!!!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Seluc" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-seluc-47", + "lineInfo": { + "dialogue": "YOU-!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Seluc" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-gana-1", + "lineInfo": { + "dialogue": "Welcome to Bantisu Temple, wandering human. We aid travelers such as yourself in navigating the capricious canyon walls.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Gana" + } + }, + { + "fileOverride": "thecanyonguides-gana-2", + "lineInfo": { + "dialogue": "We commune with the wind, and she gives us her sight. Wherever the breeze blows, we may see.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Gana" + } + }, + { + "fileOverride": "thecanyonguides-gana-3", + "lineInfo": { + "dialogue": "You appear quite strong, and well-kept by your wits. Might we ask you to aid us, then?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Gana" + } + }, + { + "fileOverride": "thecanyonguides-gana-4", + "lineInfo": { + "dialogue": "You see, a lost man is staking out in a camp on the nearby cliff faces. It pains us to see him, but be unable to reach him.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Gana" + } + }, + { + "fileOverride": "thecanyonguides-gana-5", + "lineInfo": { + "dialogue": "The canyon creatures there are ruthless, and we are not suited to physical combat. We would be able to reach him, but we would be stranded ourselves.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Gana" + } + }, + { + "fileOverride": "thecanyonguides-gana-6", + "lineInfo": { + "dialogue": "So we ask you to guide Seluc to us. We shall send you to him, and you shall bring him here. If you wish to help, you will be rewarded for your time.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Gana" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-gana-7", + "lineInfo": { + "dialogue": "Seluc hides in a camp northeast of here, atop the cliffs.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gana" + } + }, + { + "fileOverride": "thecanyonguides-gana-8", + "lineInfo": { + "dialogue": "We ask you to guide Seluc to us. If you wish to help, you will be rewarded for your time.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gana" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-gana-9", + "lineInfo": { + "dialogue": "...hm. I will say, there are many lost around the canyon, Seluc- it may have been a long time before we were able to help you.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Gana" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-gana-10", + "lineInfo": { + "dialogue": "...He did not really guide himself here. Did he.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Gana" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-gana-11", + "lineInfo": { + "dialogue": "Let this be a lesson to you, Seluc. You cannot lie to those who see with the wind. Now show your gratitude to this kind human.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Gana" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-gana-12", + "lineInfo": { + "dialogue": "...Well, 'coat fetcher', getting this man his coat is still a fine deed. And for that, you shall be rewarded.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Gana" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-gana-13", + "lineInfo": { + "dialogue": "I do hope my aid was able to help you alongside that stubborn man. He is safe now- I can only hope he will change his demeanor now.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gana" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "thecanyonguides-gana-14", + "lineInfo": { + "dialogue": "Welcome to Bantisu Temple, adventurer. There is an urgent matter at hand, but I can not in good faith ask anyone under level 84 to take on this task.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gana" + } + } + ] + } + } + }, + "The Corrupted Village": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "corruptedvillage-orikal-1", + "lineInfo": { + "dialogue": "Go away! I know you're angry but there's nothing to gain her-", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-2", + "lineInfo": { + "dialogue": "Oh, you seem calm. What are you doing here? Bit close to the portal for a soldier isn't it?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-3", + "lineInfo": { + "dialogue": "I see, you were sent to aid the public. Perfect.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-4", + "lineInfo": { + "dialogue": "I am Orikal, I'm trying to stop everyone here from killing each other.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-5", + "lineInfo": { + "dialogue": "Do you see all these spikes? I believe they are the thing spreading corruption.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-6", + "lineInfo": { + "dialogue": "Corruption does not affect humans like other beings. It's much much slower, more like an infection of the mind to us.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-7", + "lineInfo": { + "dialogue": "Could you inspect the peak of the spike in the village for me? It might give me valuable insight. Thanks!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Orikal" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "corruptedvillage-orikal-8", + "lineInfo": { + "dialogue": "That was quick... did you find anything?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-9", + "lineInfo": { + "dialogue": "Really, nothing? You didn't even feel anything?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-10", + "lineInfo": { + "dialogue": "How can it be just a spike? It must be spreading corruption somehow.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-11", + "lineInfo": { + "dialogue": "Then perhaps my second theory was correct. I will have to send you underground.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-12", + "lineInfo": { + "dialogue": "There are old cave systems around here from the mining days. I sent two men down to excavate the spike, can you go down and help?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-13", + "lineInfo": { + "dialogue": "The entrance is a little to the northeast. In fact, you should have passed it on your way to the spike.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Orikal" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "corruptedvillage-alfonse-1", + "lineInfo": { + "dialogue": "This is insane, why are we here?! We're looking for corruption you know that right?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Alfonse" + }, + "settings": { + "position": { + "x": 332.0, + "y": 50.0, + "z": -1135.0 + } + } + }, + { + "fileOverride": "corruptedvillage-roy-1", + "lineInfo": { + "dialogue": "Calm down. All we have to do is keep digging. Besides, he did say he'd pay us a lot, so stop being mad.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Roy" + }, + "settings": { + "position": { + "x": 330.0, + "y": 44.0, + "z": -1120.0 + } + } + }, + { + "fileOverride": "corruptedvillage-alfonse-2", + "lineInfo": { + "dialogue": "Forget it, I don't care anymore, just prime the explosive and get clear of the blast!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Alfonse" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "corruptedvillage-roy-2", + "lineInfo": { + "dialogue": "Well, that did the trick. Let’s take a look.", + "line": { + "current": 1, + "max": 17 + }, + "npc": "Roy" + } + }, + { + "fileOverride": "corruptedvillage-alfonse-3", + "lineInfo": { + "dialogue": "Oh my... What... is this?", + "line": { + "current": 2, + "max": 17 + }, + "npc": "Alfonse" + } + }, + { + "fileOverride": "corruptedvillage-roy-3", + "lineInfo": { + "dialogue": "It almost looks like a giant spike...Woah. How deep does this thing go?", + "line": { + "current": 3, + "max": 17 + }, + "npc": "Roy" + } + }, + { + "fileOverride": "corruptedvillage-alfonse-4", + "lineInfo": { + "dialogue": "Well, you know what? We did our job, so honestly I don't care. Let's get out of he-", + "line": { + "current": 4, + "max": 17 + }, + "npc": "Alfonse" + } + }, + { + "fileOverride": "corruptedvillage-alfonse-5", + "lineInfo": { + "dialogue": "Orikal? We're done! Pay up! I want out. This place is getting to me.", + "line": { + "current": 5, + "max": 17 + }, + "npc": "Alfonse" + } + }, + { + "fileOverride": "corruptedvillage-orikal-14", + "lineInfo": { + "dialogue": "I came when I heard the explosion. I thought you’d hurt yourselves.", + "line": { + "current": 6, + "max": 17 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-15", + "lineInfo": { + "dialogue": "Well, I'll be darned. The spike goes this far down? And it looks like it goes even deeper than this!", + "line": { + "current": 7, + "max": 17 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-roy-4", + "lineInfo": { + "dialogue": "Well, I don't know about you, but I say we blow it to shreds! That oughta get rid of this spike!", + "line": { + "current": 8, + "max": 17 + }, + "npc": "Roy" + } + }, + { + "fileOverride": "corruptedvillage-orikal-16", + "lineInfo": { + "dialogue": "For once, I agree. I'll do it, you guys just get clear.", + "line": { + "current": 9, + "max": 17 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-17", + "lineInfo": { + "dialogue": "...Wow, that did nothing. We're going to need something MUCH more powerful than TNT...", + "line": { + "current": 10, + "max": 17 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-alfonse-6", + "lineInfo": { + "dialogue": "Oh yeah? And just what would you have in mind?", + "line": { + "current": 11, + "max": 17 + }, + "npc": "Alfonse" + } + }, + { + "fileOverride": "corruptedvillage-orikal-18", + "lineInfo": { + "dialogue": "Well, it's sorta complicated. That's why I've decided to give our new friend here the job of acquiring this explosive.", + "line": { + "current": 12, + "max": 17 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-roy-5", + "lineInfo": { + "dialogue": "Oh yeah, we were so busy with this spike, we forgot to address you! Sorry about that.", + "line": { + "current": 13, + "max": 17 + }, + "npc": "Roy" + } + }, + { + "fileOverride": "corruptedvillage-alfonse-7", + "lineInfo": { + "dialogue": "Well if you don't need us anymore then we'll just be on our way... WITH our money! So hand it over please.", + "line": { + "current": 14, + "max": 17 + }, + "npc": "Alfonse" + } + }, + { + "fileOverride": "corruptedvillage-orikal-19", + "lineInfo": { + "dialogue": "Alright, fine. Here's your pay. Thank you for your help.", + "line": { + "current": 15, + "max": 17 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-roy-6", + "lineInfo": { + "dialogue": "Gah! That's hardly anything! I'm not even surprised. Let's just go.", + "line": { + "current": 16, + "max": 17 + }, + "npc": "Roy" + } + }, + { + "fileOverride": "corruptedvillage-orikal-20", + "lineInfo": { + "dialogue": "Anyway, come meet me back at my tent, friend. We will discuss what to do then.", + "line": { + "current": 17, + "max": 17 + }, + "npc": "Orikal" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "corruptedvillage-orikal-21", + "lineInfo": { + "dialogue": "Okay. I happen to know a recipe for creating an extremely lethal magical explosive.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-22", + "lineInfo": { + "dialogue": "[Stabilized Corrupted Ore], [Incendiary Fluid], and a [Switch Fuse] to activate it.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Orikal: There are 3 main ingredients you will need to get me" + } + }, + { + "fileOverride": "corruptedvillage-orikal-23", + "lineInfo": { + "dialogue": "There used to be a small mining camp a little east of this town. It's abandoned now, but you should still be able to find what you need there.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-24", + "lineInfo": { + "dialogue": "It's not the big ol' abandoned mines, mind you. It's a smaller camp, in fact you should be able to see it from this village.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-25", + "lineInfo": { + "dialogue": "Best of luck! Oh, and also, try not to die please. These ingredients do indeed promote environmental hazards.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Orikal" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "corruptedvillage-orikal-26", + "lineInfo": { + "dialogue": "You got 'em all! Excellent, this is exactly what we need.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-27", + "lineInfo": { + "dialogue": "Alright, stand back. I have actually never made this before, so let's hope I don't cause a disaster.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-28", + "lineInfo": { + "dialogue": "Phew, glad nothing tragic happened there. This should be it, now go take it back down to the spike and destroy it once and for all!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Orikal" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "corruptedvillage-orikal-29", + "lineInfo": { + "dialogue": "Oh, do you feel that? It's like a buzzing in my ears I never knew about has just vanished.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-30", + "lineInfo": { + "dialogue": "I think that worked you know. It seems the power of the spike comes from the root...", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-31", + "lineInfo": { + "dialogue": "But what is it connected to? That's for another day. The main thing is the village is safe.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Orikal" + } + }, + { + "fileOverride": "corruptedvillage-orikal-32", + "lineInfo": { + "dialogue": "Here, take this for your help. I found this potato in one of the houses around here, and I sure as heck don't want it!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Orikal" + } + } + ] + } + } + }, + "The Dark Descent": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "darkdescent-charon-1", + "lineInfo": { + "dialogue": "Keheh... Come further, little human... Step into the shadows...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "2": { + "dialogues": [ + { + "fileOverride": "darkdescent-charon-2", + "lineInfo": { + "dialogue": "Welcome...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "3": { + "dialogues": [ + { + "fileOverride": "darkdescent-charon-3", + "lineInfo": { + "dialogue": "Ah, but if you had only said so sooner! They have already left this mortal coil...oh, what a shame.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "4": { + "dialogues": [ + { + "fileOverride": "darkdescent-charon-4", + "lineInfo": { + "dialogue": "Hush now. I will ensure that you and your family are reunited. You will even be able to partake in...keheh...family outings, under my watchful eye...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "5": { + "dialogues": [ + { + "fileOverride": "darkdescent-charon-5", + "lineInfo": { + "dialogue": "Aha, naive girl. How cute, you believe you have a choice in the matter. What you want, is not what I need.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "6": { + "dialogues": [ + { + "fileOverride": "darkdescent-charon-6", + "lineInfo": { + "dialogue": "Heheh...do you see now?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "darkdescent-charon-7", + "lineInfo": { + "dialogue": "Do you see how easily this place fell? How quickly I became its master? And how I could simply dispose of you without a second thought?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "darkdescent-charon-8", + "lineInfo": { + "dialogue": "Such fragile beings, humans. So very easily influenced. Heartbroken, made hopeless. Your ties only serve to weaken you.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "darkdescent-charon-9", + "lineInfo": { + "dialogue": "So I invite you to continue. I encourage it, even. For if you should foray into my domain...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "darkdescent-charon-10", + "lineInfo": { + "dialogue": "There would be simply no chance for you to survive. And then, I will be free to string you up like a lifeless little puppet.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "darkdescent-charon-11", + "lineInfo": { + "dialogue": "So take the gem, my little soldier. I eagerly await our next meeting, keheheh...", + "line": { + "current": 6, + "max": 6 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "7": { + "dialogues": [ + { + "fileOverride": "darkdescent-charon-12", + "lineInfo": { + "dialogue": "I will allow you to return now... and I will ensure you remember what you have seen here.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "???" + } + }, + { + "fileOverride": "darkdescent-charon-13", + "lineInfo": { + "dialogue": "Good luck on your little quest...keheheh...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "8": { + "dialogues": [ + { + "fileOverride": "darkdescent-lostsoul-1", + "lineInfo": { + "dialogue": "Please, stop this! Whoever you are, leave me and my family in peace! What did we ever do to deserve this?!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Lost Soul" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "9": { + "dialogues": [ + { + "fileOverride": "darkdescent-lostsoul-2", + "lineInfo": { + "dialogue": "Y-you...I thought they...oh, god, no...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Lost Soul" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "darkdescent-lostsoul-3", + "lineInfo": { + "dialogue": "Wha...you mean... N-no, please! I don't want to hurt anyone! I don't want to die!!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Lost Soul" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "darkdescent-scout-1", + "lineInfo": { + "dialogue": "I...there...too many...th-thousands, at...at least...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Scout" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "darkdescent-scout-2", + "lineInfo": { + "dialogue": "No point...we're...doomed...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Scout" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "darkdescent-soldier-1", + "lineInfo": { + "dialogue": "Scout! Report your findings, immediately! How many corrupteds are coming?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Soldier" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "darkdescent-soldier-2", + "lineInfo": { + "dialogue": "Thousands...? This is far worse than I expected. Men! Prepare for-", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Soldier" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "darkdescent-soldier-3", + "lineInfo": { + "dialogue": "Wait, w-what's going on? What's happening to you?!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Soldier" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "darkdescent-generalgraken-1", + "lineInfo": { + "dialogue": "Ah, hello there chap! I must say, I didn't expect to see a part of the old Ragni regiment over 'ere.", + "line": { + "current": 1, + "max": 11 + }, + "npc": "General Graken" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "darkdescent-generalgraken-2", + "lineInfo": { + "dialogue": "Oh, sod it, I knew I was forgetting something! Steady there, chum! I'm on my way!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "General Graken" + } + }, + { + "fileOverride": "darkdescent-generalgraken-3", + "lineInfo": { + "dialogue": "Drat! Too late, it seems. Yes, I forgot to mention the floor was in poor condition. Up here! You took quite the tumble, are you alright?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "General Graken" + } + }, + { + "fileOverride": "darkdescent-generalgraken-4", + "lineInfo": { + "dialogue": "Well, there's some good news, I suppose. Still though, seems I sent you a ticket to a bit of a sticky wicket! Do you see a way out anywhere down there?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "General Graken" + } + }, + { + "fileOverride": "darkdescent-generalgraken-5", + "lineInfo": { + "dialogue": "There's a tunnel? Aha, spiffing! I suggest you take it immediately. I'll have to return to my post now, post-haste!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "General Graken" + } + }, + { + "fileOverride": "darkdescent-generalgraken-6", + "lineInfo": { + "dialogue": "Good luck, chum! Now, back, you cads! Back I say!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "General Graken" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "darkdescent-generalgraken-7", + "lineInfo": { + "dialogue": "Hey! Come on, come over here! Quit milling about with the zombies, chap!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "General Graken" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "darkdescent-generalgraken-8", + "lineInfo": { + "dialogue": "Oi! Hallo?! Chum? Why're you wandering round all bog-eyed? Come back to me now!", + "line": { + "current": 1, + "max": 10 + }, + "npc": "General Graken" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "darkdescent-generalgraken-9", + "lineInfo": { + "dialogue": "Aha, chap! Wonderful, the Ragni regiment's gotten its representative down 'ere. All rested up, I suppose, so let me give you an earful", + "line": { + "current": 1, + "max": 6 + }, + "npc": "General Graken" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "darkdescent-generalgraken-10", + "lineInfo": { + "dialogue": "Simply marvellous work, chap! You've made it this far, so no time to fill your boots. Be prepared, we are about to fight Charon's undead army", + "line": { + "current": 1, + "max": 4 + }, + "npc": "General Graken" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "darkdescent-generalgraken-11", + "lineInfo": { + "dialogue": "Ah, hello chap! Might I inquire as to whether you've found that blasted little ruby yet? ", + "line": { + "current": 1, + "max": 2 + }, + "npc": "General Graken" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "darkdescent-generalgraken-12", + "lineInfo": { + "dialogue": "I'll do a spot of scouting ahead, and then meet you in there! I must admit this place does give me the habdabs though, wot wot?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "General Graken" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "darkdescent-generalgraken-13", + "lineInfo": { + "dialogue": "Well, I would ask for a spot of help, but that'd be a bit barmy of me, considering you aren't even Level 24 yet! You've bog all chance of being able to help 'til then, though I mean no offense. ", + "line": { + "current": 1, + "max": 1 + }, + "npc": "General Graken" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "darkdescent-generalgraken-14", + "lineInfo": { + "dialogue": "Old chap, I can only hope you find this scribble in my absence. Of course I hope that you did not have to return at all.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "General Graken" + } + } + ] + } + } + }, + "The Envoy Part I": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "theenvoypart1-olivin-1", + "lineInfo": { + "dialogue": "Mo'in! My name is Olivin.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Olivin" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "theenvoypart1-csswavebreakercaptain-1", + "lineInfo": { + "dialogue": "Welcome welcome to C.S.S Wavebreaker!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "C.S.S Wavebreaker Captain" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "theenvoypart1-csswavebreakercaptain-2", + "lineInfo": { + "dialogue": "Welcam aboard me ship, I'll bring ye directly to Corkus.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "C.S.S Wavebreaker Captain" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "theenvoypart1-corkusdelegate-1", + "lineInfo": { + "dialogue": "It's such an honour to have a Wynn soldier visit our island.", + "line": { + "current": 1, + "max": 20 + }, + "npc": "Corkus Delegate" + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-2", + "lineInfo": { + "dialogue": "We were hoping for a true envoy, but you will do.", + "line": { + "current": 2, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-3", + "lineInfo": { + "dialogue": "If you follow me, I'll give you a tour of the city.", + "line": { + "current": 3, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-4", + "lineInfo": { + "dialogue": "We first arrived on Corkus 350 years ago.", + "line": { + "current": 4, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-5", + "lineInfo": { + "dialogue": "The Corkians, like you, are from Fruma originally...", + "line": { + "current": 5, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-6", + "lineInfo": { + "dialogue": "...But let's not talk about that.", + "line": { + "current": 6, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-7", + "lineInfo": { + "dialogue": "Coming from Fruma, we of course knew no magic at all.", + "line": { + "current": 7, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-8", + "lineInfo": { + "dialogue": "We soon developed our own. The rare power of Electromagic.", + "line": { + "current": 8, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-9", + "lineInfo": { + "dialogue": "It's a difficult modern branch of magic that allows us to create machines.", + "line": { + "current": 9, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-10", + "lineInfo": { + "dialogue": "Ah, here already. Welcome to Corkus City, Capital of our island.", + "line": { + "current": 10, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-11", + "lineInfo": { + "dialogue": "We've come a long way in a short time.", + "line": { + "current": 11, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-12", + "lineInfo": { + "dialogue": "Let me point out where the shops are.", + "line": { + "current": 12, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-13", + "lineInfo": { + "dialogue": "North, you can buy weapons and potions. If you continue through the gate you will find the native Avos.", + "line": { + "current": 13, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-14", + "lineInfo": { + "dialogue": "West, you can buy armor, and there is another entrance to the potion shop.", + "line": { + "current": 14, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-15", + "lineInfo": { + "dialogue": "To the south is our bank, powder shop, scrolls, and our exclusive powder exchange!", + "line": { + "current": 15, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-16", + "lineInfo": { + "dialogue": "Oh! And speaking of the powder exchange, I'll start you off with some of these.", + "line": { + "current": 16, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-17", + "lineInfo": { + "dialogue": "Moving on... The south gate leads to Relos. On your way there, you might pass by the-", + "line": { + "current": 17, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-18", + "lineInfo": { + "dialogue": "Uhm, nevermind. In fact, we have a gift for you.", + "line": { + "current": 18, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-19", + "lineInfo": { + "dialogue": "The Five Gears Diner is hosting any guests of the island.", + "line": { + "current": 19, + "max": 20 + }, + "npc": "Corkus Delegate" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-20", + "lineInfo": { + "dialogue": "Go through the western gate and head to the diner for your free feast. Enjoy!", + "line": { + "current": 20, + "max": 20 + }, + "npc": "Corkus Delegate" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "theenvoypart1-corkuscitizen-1", + "lineInfo": { + "dialogue": "RUN!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Corkus Citizen" + } + }, + { + "fileOverride": "theenvoypart1-corkuscitizen-2", + "lineInfo": { + "dialogue": "Mechs at the Diner! Run!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Corkus Citizen" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "theenvoypart1-maxie-1", + "lineInfo": { + "dialogue": "Psst! You! Over here, behind the logs!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-2", + "lineInfo": { + "dialogue": "Mo'in, Wynnian. Thank goodness I stopped you!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-3", + "lineInfo": { + "dialogue": "The diner is being raided by mechs...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-4", + "lineInfo": { + "dialogue": "You don't know, huh? Of course you don't. Let me explain.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Maxie" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "theenvoypart1-maxie-5", + "lineInfo": { + "dialogue": "The name's Maxie by the way. Nice to meet you.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Maxie" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "theenvoypart1-maxie-6", + "lineInfo": { + "dialogue": "This town is usually full of life...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-7", + "lineInfo": { + "dialogue": "But Corkus has a secret...", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-8", + "lineInfo": { + "dialogue": "Our own creations have rebelled against us.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-9", + "lineInfo": { + "dialogue": "They now raid towns for parts.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-10", + "lineInfo": { + "dialogue": "Mechs are getting increasingly more desperate.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-11", + "lineInfo": { + "dialogue": "Even in rust, they are still powerful.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-12", + "lineInfo": { + "dialogue": "We have tried to remove them but the factory always makes more.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-13", + "lineInfo": { + "dialogue": "It is Corkus' greatest failure. It must be stopped.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Maxie" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "theenvoypart1-maxie-14", + "lineInfo": { + "dialogue": "We need to act now.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-15", + "lineInfo": { + "dialogue": "I can try to open the vent to sneak in.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-16", + "lineInfo": { + "dialogue": "Look... I know you're a stranger, but... If you want to help, talk to me.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Maxie" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "theenvoypart1-maxie-17", + "lineInfo": { + "dialogue": "Follow me, soldier.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-18", + "lineInfo": { + "dialogue": "Alright, I'll open the door with electromagic...", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Maxie" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "theenvoypart1-maxie-19", + "lineInfo": { + "dialogue": "Gah! I can't even do the most basic spell!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-20", + "lineInfo": { + "dialogue": "No... L-Let me try again..!", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-21", + "lineInfo": { + "dialogue": "Yes!! It worked!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-22", + "lineInfo": { + "dialogue": "Look, I-I'm sorry for slowing you down. It's just...", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-23", + "lineInfo": { + "dialogue": "Electromagic is different from your magic... And I'm not very good at it.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-24", + "lineInfo": { + "dialogue": "Oh, two paths. Well, I'm not sure which way it is, so let's split up. I'll go to the right.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Maxie" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "theenvoypart1-collectormech-1", + "lineInfo": { + "dialogue": "RETRIEVE SCRAP...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Collector Mech" + } + }, + { + "fileOverride": "theenvoypart1-collectormech-2", + "lineInfo": { + "dialogue": "RETURN WITH HAUL FOR CONSTRUCTION.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Collector Mech" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "theenvoypart1-maxie-25", + "lineInfo": { + "dialogue": "Ouch.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-26", + "lineInfo": { + "dialogue": "Mo'in. Sorry, had a problem with the-", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-27", + "lineInfo": { + "dialogue": "...What in the world is that mech on top of the pile of scrap over there?!", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-28", + "lineInfo": { + "dialogue": "That is definitely not a regular despermech... It looks brand new!", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-29", + "lineInfo": { + "dialogue": "One of those hasn't been seen since the factory was running...", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-30", + "lineInfo": { + "dialogue": "We need to do something! I'll clear the path for you. That’s the only thing I can do, I... hurt my... leg.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-31", + "lineInfo": { + "dialogue": "Come on...", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-32", + "lineInfo": { + "dialogue": "There! Go, defeat it!", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-mechx-1", + "lineInfo": { + "dialogue": "PARTS ACQUIRED... RETURN TO FACTORY.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Mech X" + } + }, + { + "fileOverride": "theenvoypart1-maxie-33", + "lineInfo": { + "dialogue": "Are you okay? Good. Meet me at the entrance where we met. We need to report to Corkus City!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Maxie" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "theenvoypart1-maxie-34", + "lineInfo": { + "dialogue": "Don't worry about the guards, they're disabled for now. Follow me!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-35", + "lineInfo": { + "dialogue": "I know a shortcut, we'll be in Corkus City in no time.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Maxie" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "theenvoypart1-corkusdelegate-21", + "lineInfo": { + "dialogue": "Mo'in! Welcome back to Corkus City.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Corkus Delegate" + } + }, + { + "fileOverride": "theenvoypart1-maxie-36", + "lineInfo": { + "dialogue": "Beltrude, we have a problem! The factory is running!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-37", + "lineInfo": { + "dialogue": "We saw a mech… A new mech! It looked different like it was made in-", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-22", + "lineInfo": { + "dialogue": "What a load of scrap! You shouldn't talk about that in front of our guest!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Corkus Delegate" + } + }, + { + "fileOverride": "theenvoypart1-maxie-38", + "lineInfo": { + "dialogue": "Our guest... just killed several despermechs by themselves.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-23", + "lineInfo": { + "dialogue": "And why would we take the word of someone who can't do basic electromagic?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Corkus Delegate" + } + }, + { + "fileOverride": "theenvoypart1-corkusdelegate-24", + "lineInfo": { + "dialogue": "Don't listen to Maxie. Enjoy your stay.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Corkus Delegate" + } + }, + { + "fileOverride": "theenvoypart1-maxie-39", + "lineInfo": { + "dialogue": "They won't admit anything with you around. They want to become allies with Wynn.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart1-maxie-40", + "lineInfo": { + "dialogue": "Come to my house when you reach level 89, here's a key so you get in. We must prepare to break into the factory.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Maxie" + } + } + ] + } + } + }, + "The Envoy Part II": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-securitybotn4t17-1", + "lineInfo": { + "dialogue": "No access without a key.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Security Bot N4T17" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-securitybotn4t17-2", + "lineInfo": { + "dialogue": "Key valid. Welcome.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Security Bot N4T17" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-securitybotn4t17-3", + "lineInfo": { + "dialogue": "Welcome inside...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Security Bot N4T17" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-maxie-1", + "lineInfo": { + "dialogue": "Mo'in, soldier! I've been researching everything I can about the factory.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Maxie" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-maxie-2", + "lineInfo": { + "dialogue": "I knew it! There was something here we could use!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart2-maxie-3", + "lineInfo": { + "dialogue": "I'll have to use electromagic to make it launch, so you'll have to go alone.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart2-maxie-4", + "lineInfo": { + "dialogue": "Find the Avos chief. Ask for the factory key.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart2-maxie-5", + "lineInfo": { + "dialogue": "Alright, hop on.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Maxie" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-maxie-6", + "lineInfo": { + "dialogue": "Press the button when you're ready.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Maxie" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-maxie-7", + "lineInfo": { + "dialogue": "Off you go!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart2-maxie-8", + "lineInfo": { + "dialogue": "Grook feathers! Not again...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Maxie" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "8": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-avosshaman-1", + "lineInfo": { + "dialogue": "Hmm, no gears or goggles... You are no Corkian Human.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Avos Shaman" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-chiefavos-1", + "lineInfo": { + "dialogue": "Mo'in, soldier. I have been expecting you. ", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Chief Avos" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-grandmastershaman-1", + "lineInfo": { + "dialogue": "Eh, It's the warrior. I have my orders, but still say this is a bad idea.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Grandmaster Shaman" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-grandmastershaman-2", + "lineInfo": { + "dialogue": "I'll make the bridge for you.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Grandmaster Shaman" + } + }, + { + "fileOverride": "theenvoypart2-grandmastershaman-3", + "lineInfo": { + "dialogue": "I don't see why we're helping humans...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Grandmaster Shaman" + } + }, + { + "fileOverride": "theenvoypart2-grandmastershaman-4", + "lineInfo": { + "dialogue": "You all act the same to me. Anyway, there you go.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Grandmaster Shaman" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "12": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-keytempledragon-1", + "lineInfo": { + "dialogue": "You cannot have the key. Prepare for destruction.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Key Temple Dragon" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "13": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-maxie-9", + "lineInfo": { + "dialogue": "You're back, and you have the key!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Maxie" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-corkusguard-1", + "lineInfo": { + "dialogue": "Something has happened in the vault.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Corkus Guard" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-corkusdelegate-1", + "lineInfo": { + "dialogue": "Mo'in...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Corkus Delegate" + } + }, + { + "fileOverride": "theenvoypart2-bertil-1", + "lineInfo": { + "dialogue": "Uh- No need to worry! We accidentally...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Bertil" + } + }, + { + "fileOverride": "theenvoypart2-reiva-1", + "lineInfo": { + "dialogue": "Blew a hole in the wall! Yep!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Reiva" + } + }, + { + "fileOverride": "theenvoypart2-corkusdelegate-2", + "lineInfo": { + "dialogue": "Stop. Maxie, was right. I'm sorry. Mech X pierced the vault like it was nothing and took the key.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Corkus Delegate" + } + }, + { + "fileOverride": "theenvoypart2-corkusdelegate-3", + "lineInfo": { + "dialogue": "The mechs were covered in farm produce for some reason and left a convenient trail. If you are serious about fighting the factory, follow the trail.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Corkus Delegate" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "16": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-maxie-10", + "lineInfo": { + "dialogue": "Psst! Over here, in the field! ", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Maxie" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "17": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-maxie-11", + "lineInfo": { + "dialogue": "Mo'in. See that guy up there? He hasn't moved an inch since I got here...", + "line": { + "current": 1, + "max": 14 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart2-maxie-12", + "lineInfo": { + "dialogue": "...I don't think he's actually a farmer. Follow me.", + "line": { + "current": 2, + "max": 14 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart2-farmer-1", + "lineInfo": { + "dialogue": "HELLO... I AM A... HUMAN... FARMER.", + "line": { + "current": 3, + "max": 14 + }, + "npc": "Farmer" + } + }, + { + "fileOverride": "theenvoypart2-farmer-2", + "lineInfo": { + "dialogue": "DO YOU... HAVE... ANY BUSINESS... WITH ME?", + "line": { + "current": 4, + "max": 14 + }, + "npc": "Farmer" + } + }, + { + "fileOverride": "theenvoypart2-maxie-13", + "lineInfo": { + "dialogue": "Nice try, mech!", + "line": { + "current": 5, + "max": 14 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart2-s63mech-1", + "lineInfo": { + "dialogue": "REPORT... COVER HAS BEEN COMPROMISED... TWO UNAUTHORIZED INTRUDERS... OUTSIDE OF BASE.", + "line": { + "current": 6, + "max": 14 + }, + "npc": "S-63 Mech" + } + }, + { + "fileOverride": "theenvoypart2-s63mech-2", + "lineInfo": { + "dialogue": "NEW OBJECTIVE... EXTERMINATE-", + "line": { + "current": 7, + "max": 14 + }, + "npc": "S-63 Mech" + } + }, + { + "fileOverride": "theenvoypart2-maxie-14", + "lineInfo": { + "dialogue": "Oh no you DON'T!", + "line": { + "current": 8, + "max": 14 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart2-maxie-15", + "lineInfo": { + "dialogue": "That model was a S-63... It's warned the others. Let's go.", + "line": { + "current": 9, + "max": 14 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart2-maxie-16", + "lineInfo": { + "dialogue": "See? We're locked out now.", + "line": { + "current": 10, + "max": 14 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart2-maxie-17", + "lineInfo": { + "dialogue": "Stand back, I'll open the door.", + "line": { + "current": 11, + "max": 14 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart2-maxie-18", + "lineInfo": { + "dialogue": "I think we can safely assume this is the right place.", + "line": { + "current": 12, + "max": 14 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart2-maxie-19", + "lineInfo": { + "dialogue": "You storm in and find what we need. I'll cover you from out here.", + "line": { + "current": 13, + "max": 14 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart2-maxie-20", + "lineInfo": { + "dialogue": "You need to find and destroy that new factory mech.", + "line": { + "current": 14, + "max": 14 + }, + "npc": "Maxie" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "18": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-mechx-1", + "lineInfo": { + "dialogue": "INTRUDER DETECTED. DESTROY.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mech X" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "19": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-mechx-2", + "lineInfo": { + "dialogue": "Corkus has to suffer... They shut down the Factory, locked us up in there. Once we have both keys we can open it and you are NOT getting this one. ", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mech X" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "20": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-maxie-21", + "lineInfo": { + "dialogue": "Mo'in. Did you get the key?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart2-maxie-22", + "lineInfo": { + "dialogue": "You did?! Great! Now we need to meet at the factory. The real hard part begins.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "theenvoypart2-maxie-23", + "lineInfo": { + "dialogue": "Follow the northwestern road and enter the factory from the west side. I will meet you there.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Maxie" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "21": { + "dialogues": [ + { + "fileOverride": "theenvoypart2-maxie-24", + "lineInfo": { + "dialogue": "Mo'in. Are you sure you are ready?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Maxie" + } + } + ] + } + } + }, + "The Feathers Fly Part I": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-1", + "lineInfo": { + "dialogue": "Oh?! Hold on, is anyone there..!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "???" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "thefeathersflypart1-ava-2", + "lineInfo": { + "dialogue": "Why hello there! Whatcha doin' here? I'm Ava!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-3", + "lineInfo": { + "dialogue": "Want a quick job? How 'bout helpin' me out?! That was perfect timing!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-4", + "lineInfo": { + "dialogue": "Y'see, while the other Avos hate it, I just find electromagic so fascinating!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-5", + "lineInfo": { + "dialogue": "Look, I think I got a breakthrough invention. If it works... Oh man...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-6", + "lineInfo": { + "dialogue": "I just need to harness some nature magic, and there's an amazing source in the chief's hut. Ya comin'?", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-7", + "lineInfo": { + "dialogue": "Don't you worry about rewards! I got you! See ya' there!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Ava" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-8", + "lineInfo": { + "dialogue": "Hey! You showed up! Listen up, here's the plan...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-9", + "lineInfo": { + "dialogue": "There's a small museum inside the hut with all kinds of trophies.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-10", + "lineInfo": { + "dialogue": "Our chief is quite the talkative fella, and I can guarantee he'd love to tell you stories.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-11", + "lineInfo": { + "dialogue": "That should keep him and his guards busy. And that's where I come in!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-12", + "lineInfo": { + "dialogue": "I'll take that chance to sneak behind the throne, where our sacred totem is. I'm not stealing it, don't worry!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-13", + "lineInfo": { + "dialogue": "I'm a little clumsy, but I'm sure I can count on ya'! No matter what, keep the chief busy!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschieftain-1", + "lineInfo": { + "dialogue": "Greetings, human. Welcome back.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-2", + "lineInfo": { + "dialogue": "So, what brings you here, hm?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-3", + "lineInfo": { + "dialogue": "Oh, you want to learn more about us... Of course, of course!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-4", + "lineInfo": { + "dialogue": "We have a room where I can show you some of our history.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-5", + "lineInfo": { + "dialogue": "You're in luck, I'm in a good mood. Follow me then.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Avos Chieftain" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschief-1", + "lineInfo": { + "dialogue": "Ah, history first! Great, great!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Avos Chief" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschief-2", + "lineInfo": { + "dialogue": "Gah! You startled me!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Avos Chief" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschief-3", + "lineInfo": { + "dialogue": "Ah, our wisteria tree! Yes...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Avos Chief" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschief-4", + "lineInfo": { + "dialogue": "Oh, this is quite the important tome.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Avos Chief" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschief-5", + "lineInfo": { + "dialogue": "Right, the feathery crate!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Avos Chief" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschieftain-6", + "lineInfo": { + "dialogue": "What was that?! I'll check.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Avos Chieftain" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschieftain-7", + "lineInfo": { + "dialogue": "Someone broke in? But why? Anyone can use our totem...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-8", + "lineInfo": { + "dialogue": "I don't get it. They could've just asked...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Avos Chieftain" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-14", + "lineInfo": { + "dialogue": "Oh, hey! Thanks for earlier. You were a big help.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-15", + "lineInfo": { + "dialogue": "Truth is, anyone can use that totem. They just don't like me very much.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-16", + "lineInfo": { + "dialogue": "Anyway, we got what we needed, and it's promising! Now onto the next part...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-17", + "lineInfo": { + "dialogue": "Y'see, I managed to bottle up some of our magic, but I still need Corkian stuff.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-18", + "lineInfo": { + "dialogue": "Fortunately for us, there's a shop outside the city. Though, things might get complicated...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-19", + "lineInfo": { + "dialogue": "A bunch of Corkians aren't too fond of... Us. I just think you should come along with me, y'know?", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-20", + "lineInfo": { + "dialogue": "Here, I wrote the coords into that book of yours. It's a bit far, so come on out and I'll give you a lift!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Ava" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-21", + "lineInfo": { + "dialogue": "Alright, if you want a lift, tell me, or you could just walk!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-22", + "lineInfo": { + "dialogue": "Not sure why you'd do that when I'm right here though!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ava" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-23", + "lineInfo": { + "dialogue": "Alright, buckle up, we're taking off!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "14": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-24", + "lineInfo": { + "dialogue": "Still holding on? We're almost there!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "15": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-25", + "lineInfo": { + "dialogue": "Here we are! Enjoyed the lift? I'm a great form of fast travel, right?!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-26", + "lineInfo": { + "dialogue": "Well, this was my first time using this magic magnet on people, but...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-27", + "lineInfo": { + "dialogue": "Or I guess you could just leave, that's cool too...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-28", + "lineInfo": { + "dialogue": "Ah, finally! I could've taken you there y'know!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-29", + "lineInfo": { + "dialogue": "Honestly, I just wanted to test something on you... Oh well!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-30", + "lineInfo": { + "dialogue": "This is the shop! I think we can buy an Enhanced Potential Microchip here. ", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-31", + "lineInfo": { + "dialogue": "I need you to accompany me.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-32", + "lineInfo": { + "dialogue": "If I'm with a human, surely they'll sell one, right?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-33", + "lineInfo": { + "dialogue": "You go first, I'll follow you.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-shopkeeper-1", + "lineInfo": { + "dialogue": "Hmpf. What are you doing in here, Avo?!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Shopkeeper" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-34", + "lineInfo": { + "dialogue": "So-uh, I was, y'know, wonderin' if you had any-", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-shopkeeper-2", + "lineInfo": { + "dialogue": "Huh?!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Shopkeeper" + } + }, + { + "fileOverride": "thefeathersflypart1-shopkeeper-3", + "lineInfo": { + "dialogue": "There's NO WAY I'm selling anythin' to an Avo! Shoo! Get out!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Shopkeeper" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-35", + "lineInfo": { + "dialogue": "But...! ", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-shopkeeper-4", + "lineInfo": { + "dialogue": "OUT!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Shopkeeper" + }, + "settings": { + "followPlayer": true + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-36", + "lineInfo": { + "dialogue": "I... can't believe this.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-37", + "lineInfo": { + "dialogue": "I am NOT giving up! To hell with all this!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-38", + "lineInfo": { + "dialogue": "Here, go in yourself and ask. I'll cover the cost later.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-39", + "lineInfo": { + "dialogue": "I'll stand back. CLEARLY this guy is too STUCK up to- Ugh, I'm getting angry! Just go in again.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-shopkeeper-5", + "lineInfo": { + "dialogue": "Huh?! I made myself clear! You were with her!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Shopkeeper" + } + }, + { + "fileOverride": "thefeathersflypart1-shopkeeper-6", + "lineInfo": { + "dialogue": "I'm closing for today, I cannot stand this! OUT!!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Shopkeeper" + } + }, + { + "fileOverride": "thefeathersflypart1-shopkeeper-7", + "lineInfo": { + "dialogue": "Oh, and don't even think about even approaching MY shop!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Shopkeeper" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-40", + "lineInfo": { + "dialogue": "Hang tight! He's gone crazy!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "22": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-41", + "lineInfo": { + "dialogue": "Urgh, this guy's nuts. Hmm...", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-42", + "lineInfo": { + "dialogue": "I'm... surprised he kicked you out, too. Maybe he's a patriot?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-43", + "lineInfo": { + "dialogue": "Well, anyway, we need a plan. I don't wanna wait this out.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-44", + "lineInfo": { + "dialogue": "Look, this guy has to have a control panel somewhere. Maybe we can neutralize the robots.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-45", + "lineInfo": { + "dialogue": "That stuff hates water, y'know? So I'll go fetch some in the meantime.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-46", + "lineInfo": { + "dialogue": "I'd like to NOT get zapped by a forcefield, so I'll sneak inside once we're done with that.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-47", + "lineInfo": { + "dialogue": "Got it? Find the control panel. It should be somewhere around the house. Talk to me once you're ready.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Ava" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-48", + "lineInfo": { + "dialogue": "Good luck, then! I'll be back once you find the control panel and get inside!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "24": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-49", + "lineInfo": { + "dialogue": "Here we are! Good job! Alright, let's see...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-50", + "lineInfo": { + "dialogue": "Wait... Why are there... Buttons... Everywhere??", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-51", + "lineInfo": { + "dialogue": "I feel like soaking everything would be quite the mistake.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-52", + "lineInfo": { + "dialogue": "And none of them are labelled! What is that?!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-53", + "lineInfo": { + "dialogue": "Look, your choice. What should we neutralize first?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-54", + "lineInfo": { + "dialogue": "Left, huh? Well, let's see how that goes.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-55", + "lineInfo": { + "dialogue": "Alright, let's soak this.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ava" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-security-1", + "lineInfo": { + "dialogue": "!safetyteleportationsequenceactivated!" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-56", + "lineInfo": { + "dialogue": "TELEPORTATION?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + }, + "settings": { + "followPlayer": true + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-57", + "lineInfo": { + "dialogue": "Center... I guess the most important stuff could be here. In theory. I wouldn't count on it.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-58", + "lineInfo": { + "dialogue": "Huh! This wasn't that bad. And... I see something poking out, hold on...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-59", + "lineInfo": { + "dialogue": "Haha! I think that's what we're looking for!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-60", + "lineInfo": { + "dialogue": "Look, I still want to make it up to the guy. I really don't want to be the villain of his story.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-61", + "lineInfo": { + "dialogue": "I'll meet you back at the Workshop. You can go on ahead.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-62", + "lineInfo": { + "dialogue": "Right, right. Stand back, just in case.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-security-2", + "lineInfo": { + "dialogue": "[!] ERROR! Defense protocols shutdown..." + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "thefeathersflypart1-ava-63", + "lineInfo": { + "dialogue": "Oh wow. You got the right one, first try! How'd you know?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-64", + "lineInfo": { + "dialogue": "Well, good job. I still want to make it up to the poor guy though.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-65", + "lineInfo": { + "dialogue": "Just meet me back at the Workshop, I'll be there!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-66", + "lineInfo": { + "dialogue": "Ouch!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-67", + "lineInfo": { + "dialogue": "Sorry about all the trouble I caused... I hope this makes it up to you.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-68", + "lineInfo": { + "dialogue": "I hope that human's alright... I managed to find the microchip right away, after all.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-69", + "lineInfo": { + "dialogue": "...Alright. Time to go. I'll wait for them, I guess.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-70", + "lineInfo": { + "dialogue": "Ouch!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-71", + "lineInfo": { + "dialogue": "Sorry about all the trouble I caused... I hope this makes it up to you.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-72", + "lineInfo": { + "dialogue": "...Alright. Time to go.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-73", + "lineInfo": { + "dialogue": "Oh, there you are! I felt sad leaving you behind!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-74", + "lineInfo": { + "dialogue": "Say, if you need a lift, just tell me.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ava" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-75", + "lineInfo": { + "dialogue": "Alright then, buckle up!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-76", + "lineInfo": { + "dialogue": "Alright, I'm dropping you off! Stick the landing!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "35": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-77", + "lineInfo": { + "dialogue": "I can't believe it! It's working! Look! Look at it!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-78", + "lineInfo": { + "dialogue": "A Growth Accelerator... Can you imagine the possibilities?!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-79", + "lineInfo": { + "dialogue": "We'll be able to... I don't know, help the poor, that's nice, right?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-80", + "lineInfo": { + "dialogue": "But we're not done. Well, I'm not done. I'd still like your help.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-81", + "lineInfo": { + "dialogue": "Look, let's try it out together, alright? Maybe I'll let you go afterwards?", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-82", + "lineInfo": { + "dialogue": "I'll join you outside. Once I'm sure this works, I'll be able to... Show it to them.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-83", + "lineInfo": { + "dialogue": "In theory, it should be easy to operate... I'm trusting you. Again. Sorry 'bout that.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Ava" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-84", + "lineInfo": { + "dialogue": "Alright, it's just on the hill next to us, but I can bring you there if ya want!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-85", + "lineInfo": { + "dialogue": "Just don't get too used to me, alright? Tell me when you're ready.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ava" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-86", + "lineInfo": { + "dialogue": "Here we go!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "38": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-87", + "lineInfo": { + "dialogue": "I'll do a quick rundown of how to operate this. It's not automatic yet.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-88", + "lineInfo": { + "dialogue": "I'll give you a remote. You'll simply have to click in the right orders. You'll see!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-89", + "lineInfo": { + "dialogue": "You have to be quick, though! You can't just take all the time you want.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-90", + "lineInfo": { + "dialogue": "I have no clue how stable all of this is, so we'll start slowly!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-91", + "lineInfo": { + "dialogue": "I know this sounds a li'l scary, but you've shown yourself being capable.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-92", + "lineInfo": { + "dialogue": "Tell me when you're ready, I'll give you the remote then start the machine!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-93", + "lineInfo": { + "dialogue": "Ready? Take this first.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-94", + "lineInfo": { + "dialogue": "Think of it like... Casting one of your spells. You're used to that, right?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-95", + "lineInfo": { + "dialogue": "Let's start slowly! You have 45 seconds to fully charge it up!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-96", + "lineInfo": { + "dialogue": "Halfway there!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-97", + "lineInfo": { + "dialogue": "And now, we observe!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-98", + "lineInfo": { + "dialogue": "Oh my... I- No way...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-99", + "lineInfo": { + "dialogue": "Do you have ANY idea what it is we've just done?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-100", + "lineInfo": { + "dialogue": "I have to show that to the Chief. They WILL accept me! I cannot fail now!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-101", + "lineInfo": { + "dialogue": "Tell you what, let's meet up at the Chief's hut. If you want me to take you there right now, you can just go ahead and tell me!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-102", + "lineInfo": { + "dialogue": "Alright, let's fly!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-103", + "lineInfo": { + "dialogue": "It really is convenient being with me, huh?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-104", + "lineInfo": { + "dialogue": "On second thought... Isn't it too soon?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-105", + "lineInfo": { + "dialogue": "I-I think I want to turn back... I...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-106", + "lineInfo": { + "dialogue": "Gah! If I can't get myself to do it now, I'll never do it!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-107", + "lineInfo": { + "dialogue": "You should approach the Chief first. It... won't work if I do it. I'll come by afterwards.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ava" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "44": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschieftain-9", + "lineInfo": { + "dialogue": "Ah, human! Welcome back. Good timing...", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-10", + "lineInfo": { + "dialogue": "Did you happen to see... An oddly dressed Avo around here recently?", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-11", + "lineInfo": { + "dialogue": "We kicked that girl from the tribe, and we do have our reasons.", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-12", + "lineInfo": { + "dialogue": "I've heard reports of her snooping around recently. With a human, even.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-13", + "lineInfo": { + "dialogue": "And I believe... That this is no coincidence you're here.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-14", + "lineInfo": { + "dialogue": "I will be frank. You're with her, aren't you? I won't hurt you. I won't hurt her either.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-15", + "lineInfo": { + "dialogue": "She's not exactly welcome here. But she's never told you about that, did she?", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-108", + "lineInfo": { + "dialogue": "And I have nothing to hide, Chief.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-16", + "lineInfo": { + "dialogue": "STOP IT, you two! Let her talk!", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-109", + "lineInfo": { + "dialogue": "You're all scared of change, and that's all there is to it. Now...", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-110", + "lineInfo": { + "dialogue": "May I... Show you something?", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-17", + "lineInfo": { + "dialogue": "Hmpf. Let's see that broken atrocity of yours.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Avos Chieftain" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-111", + "lineInfo": { + "dialogue": "...It's time. Talk to me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-112", + "lineInfo": { + "dialogue": "This is it. I can't fail now... I really hope I can trust you.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-113", + "lineInfo": { + "dialogue": "You have no idea how important this is to me.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-114", + "lineInfo": { + "dialogue": "It'll be slightly more difficult than last time, so get ready.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-115", + "lineInfo": { + "dialogue": "I'll give you the remote once you're ready!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschieftain-18", + "lineInfo": { + "dialogue": "I truly hope this will work, for once.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Avos Chieftain" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschieftain-19", + "lineInfo": { + "dialogue": "Wait, are you sure this isn't dang-", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-116", + "lineInfo": { + "dialogue": "Don't worry 'bout that!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ava" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-117", + "lineInfo": { + "dialogue": "Let's do this!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-118", + "lineInfo": { + "dialogue": "Here we go!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-119", + "lineInfo": { + "dialogue": "Oh god, no- Let me boot up the machine again...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-120", + "lineInfo": { + "dialogue": "Alright... Talk to me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-121", + "lineInfo": { + "dialogue": "Let's just say... Failure is part of the process?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-122", + "lineInfo": { + "dialogue": "I-You-no, I can't blame anyone. Let's just do this again.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-20", + "lineInfo": { + "dialogue": "Hm. I was almost hopeful this time.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-123", + "lineInfo": { + "dialogue": "T-talk to me once you're ready to try again.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-124", + "lineInfo": { + "dialogue": "C-Chief, we... we got this, don't worry!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-125", + "lineInfo": { + "dialogue": "'t would've been too good to be false, right?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "56": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschieftain-21", + "lineInfo": { + "dialogue": "...Was anything supposed to happen?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-126", + "lineInfo": { + "dialogue": "Just... Get ready.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "57": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avosguard-1", + "lineInfo": { + "dialogue": "That's it, I-", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Avos Guard" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschief-6", + "lineInfo": { + "dialogue": "Let's just give her a chance for now.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Avos Chief" + } + } + ] + }, + "58": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschieftain-22", + "lineInfo": { + "dialogue": "Hmm... Interesting...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Avos Chieftain" + } + } + ] + }, + "59": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avosguard-2", + "lineInfo": { + "dialogue": "Why is she getting away with using such magic?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Avos Guard" + } + } + ] + }, + "60": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avosguard-3", + "lineInfo": { + "dialogue": "Tch. How horrible...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Avos Guard" + } + } + ] + }, + "61": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-127", + "lineInfo": { + "dialogue": "Oh I'm gonna charge this sapling like crazy!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "62": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-128", + "lineInfo": { + "dialogue": "Alright, this is the last stretch!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "63": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-129", + "lineInfo": { + "dialogue": "One last time soldier, and I'm counting on you to be quick!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "64": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-130", + "lineInfo": { + "dialogue": "Stand back... Almost there! ", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "65": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschieftain-23", + "lineInfo": { + "dialogue": "...Oh my!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-131", + "lineInfo": { + "dialogue": "Wait... That's it?? No, this isn't right...", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-132", + "lineInfo": { + "dialogue": "Let me just...", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-24", + "lineInfo": { + "dialogue": "WAIT!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avosguard-4", + "lineInfo": { + "dialogue": "Chief! Have you seen what she just did?!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Avos Guard" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-133", + "lineInfo": { + "dialogue": "I-I didn't mean to! I told you to stand back!!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-25", + "lineInfo": { + "dialogue": "Under normal circumstances, I'd have sent you down the pit after cutting off your feathers.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-26", + "lineInfo": { + "dialogue": "But these are not normal circumstances. Soldier, may you come over here as well?", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Avos Chieftain" + } + } + ] + }, + "66": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschieftain-27", + "lineInfo": { + "dialogue": "So you fused OUR magic... With electromagic?", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-28", + "lineInfo": { + "dialogue": "I recognized extracts from the totem too. You're the one who stole from us, right?", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-134", + "lineInfo": { + "dialogue": "I... might have done that.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-29", + "lineInfo": { + "dialogue": "And on top of that, you used the Wynn warrior to fool us?", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-135", + "lineInfo": { + "dialogue": "And I'm sure you know why I did!", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-30", + "lineInfo": { + "dialogue": "Do you have any idea how unstable this wretched electromagic is?!", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-136", + "lineInfo": { + "dialogue": "I-I can control it!!", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-31", + "lineInfo": { + "dialogue": "And you should NOT! Don't you understand? This is too dangerous!", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avosguard-5", + "lineInfo": { + "dialogue": "Should we kill her on the spot?! We almost died!", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Avos Guard" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-32", + "lineInfo": { + "dialogue": "No, don't kill her. I want her and the soldier in my hut, now.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Avos Chieftain" + } + } + ] + }, + "67": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschieftain-33", + "lineInfo": { + "dialogue": "Ava. You can't keep going with this. Just stop. This is your final warning.", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-34", + "lineInfo": { + "dialogue": "What do you even hope to accomplish? You used to be such a brilliant kid.", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-137", + "lineInfo": { + "dialogue": "I just... wanna help people. You know that, I'm sure you understand!", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-35", + "lineInfo": { + "dialogue": "Have you seen the Factory? They tried to help people, and instead they killed hundreds!", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-36", + "lineInfo": { + "dialogue": "Do you think you're able change the world?! Well, you can't, Ava! This is beyond you!", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-37", + "lineInfo": { + "dialogue": "So, for the last time. Stop all of this. I might reconsider your banishment then.", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-138", + "lineInfo": { + "dialogue": "You... You're really serious about that, huh? You'll NEVER change, will you?!", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-139", + "lineInfo": { + "dialogue": "Do you guys have ANY idea how archaic you all are?! A ''final warning''??", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-140", + "lineInfo": { + "dialogue": "To hell with this! I'll show everyone! I'll show how great we could be! You'll see, chief!", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-38", + "lineInfo": { + "dialogue": "I can't believe you worked with her, soldier. Well, now you know to avoid her.", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Avos Chieftain" + } + }, + { + "fileOverride": "thefeathersflypart1-avoschieftain-39", + "lineInfo": { + "dialogue": "...It appears she left some device on the floor. You might as well take them, I sure don't want it. And here, take these. We haven't had the chance to thank you regarding the Factory.", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Avos Chieftain" + } + } + ] + }, + "68": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-141", + "lineInfo": { + "dialogue": "Hey, don't run off just like that!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "69": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-142", + "lineInfo": { + "dialogue": "Alright, this should be good. Talk to me and I'll explain!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "70": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-143", + "lineInfo": { + "dialogue": "Oh, you're back! Talk to me so we can get started!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "71": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-144", + "lineInfo": { + "dialogue": "Oh no, time's up! It was supposed to be easy... Hold on, I'm booting it up again.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "72": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-145", + "lineInfo": { + "dialogue": "Hey, it happens to the best of us!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-146", + "lineInfo": { + "dialogue": "It's fine, the machine isn't at full power, it won't explode or anything.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart1-ava-147", + "lineInfo": { + "dialogue": "Just tell me when you're ready!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "73": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-148", + "lineInfo": { + "dialogue": "I have faith in you", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "74": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-ava-149", + "lineInfo": { + "dialogue": "We'll, uh, act as if nothing happened.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "75": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschief-7", + "lineInfo": { + "dialogue": "Hey, would you listen to me?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Avos Chief" + } + } + ] + }, + "76": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschieftain-40", + "lineInfo": { + "dialogue": "Is that another broken machine?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Avos Chieftain" + } + } + ] + }, + "77": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart1-avoschief-8", + "lineInfo": { + "dialogue": "Just show me what you're interested about.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Avos Chieftain" + } + } + ] + } + } + }, + "The Feathers Fly Part II": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-gardener-1", + "lineInfo": { + "dialogue": "An audience? Oh, you're one of those, I see...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Gardener" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-gardener-2", + "lineInfo": { + "dialogue": "...Huh? An audience? Are you crazy?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Gardener" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-weaponsmith-1", + "lineInfo": { + "dialogue": "Oh, are you interested in getting an audience too?!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Weaponsmith" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-corkuscitizen-1", + "lineInfo": { + "dialogue": "Oh, please don't mention the word \"audience\" to me!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Corkus Citizen" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-corkuscitizen-2", + "lineInfo": { + "dialogue": "Why hello there you two! Whaddya want? An audience, huh? Eheh...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Corkus Citizen" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-corkuscitizen-3", + "lineInfo": { + "dialogue": "Why thank you! 't was a pleasure doing business with you keheh... Good luck!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Corkus Citizen" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "7": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-1", + "lineInfo": { + "dialogue": "...Wait, who are YOU?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Receptionist" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-2", + "lineInfo": { + "dialogue": "OUT!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-corkuscitizen-4", + "lineInfo": { + "dialogue": "You're the WORST!!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Corkus Citizen" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-3", + "lineInfo": { + "dialogue": "Wow. I cannot stop staring at you... Such magnificent armour.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Receptionist" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-4", + "lineInfo": { + "dialogue": "Well, you two seem very lucky, there's an available slot soon!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Receptionist" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-5", + "lineInfo": { + "dialogue": "And just WHO are you two busting here like that?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Receptionist" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-6", + "lineInfo": { + "dialogue": "Do you have ANYTHING to show? Shouldn't you be working at that time?!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Receptionist" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-7", + "lineInfo": { + "dialogue": "Not ANOTHER word! I've heard enough! You two clearly don't have anything worth my time!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Receptionist" + } + }, + { + "fileOverride": "thefeathersflypart2-receptionist-8", + "lineInfo": { + "dialogue": "Go back to your minimum wage job or something, but stay OUT of my room.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Receptionist" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-9", + "lineInfo": { + "dialogue": "Why hello there! Greetings! Welcome! You are looking splendid, dear! ", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Receptionist" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-10", + "lineInfo": { + "dialogue": "Don't be sillydear, you're beautiful! Say, you're looking to be an investor, am I right?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Receptionist" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-11", + "lineInfo": { + "dialogue": "Why of course! Is that other person your assistant? Great!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Receptionist" + } + }, + { + "fileOverride": "thefeathersflypart2-receptionist-12", + "lineInfo": { + "dialogue": "I'd like you to show me you have what it takes to be a great investor, yes!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Receptionist" + } + }, + { + "fileOverride": "thefeathersflypart2-receptionist-13", + "lineInfo": { + "dialogue": "Just hand over a mere 12 Liquified Emeralds and it's settled!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Receptionist" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-14", + "lineInfo": { + "dialogue": "And just WHO are you two, busting here like that?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Receptionist" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-15", + "lineInfo": { + "dialogue": "Do you have ANYTHING to show? I need more than fancy clothes.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Receptionist" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-16", + "lineInfo": { + "dialogue": "And what's up with your face, lady? I'd look into that if I were you! OUT!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Receptionist" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-17", + "lineInfo": { + "dialogue": "Oh god, not another duo. What do you want?!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Receptionist" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-18", + "lineInfo": { + "dialogue": "And what would a mechanic have for- Wait, is that an invitation letter..?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Receptionist" + } + }, + { + "fileOverride": "thefeathersflypart2-receptionist-19", + "lineInfo": { + "dialogue": "That's... Unprecedented. Let me check when the council's available and book an audience...", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Receptionist" + } + }, + { + "fileOverride": "thefeathersflypart2-receptionist-20", + "lineInfo": { + "dialogue": "You two are extremely lucky. I can barely believe it.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Receptionist" + } + }, + { + "fileOverride": "thefeathersflypart2-receptionist-21", + "lineInfo": { + "dialogue": "I hope tomorrow morning is good for you, because the Council's somehow available at that time.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Receptionist" + } + }, + { + "fileOverride": "thefeathersflypart2-receptionist-22", + "lineInfo": { + "dialogue": "Sounds good? Hopefully it does, because you don't really have much of a choice. Well, you can leave now.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Receptionist" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-23", + "lineInfo": { + "dialogue": "Oh! Why hello there you two! How may I be of assistance?", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Receptionist" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-24", + "lineInfo": { + "dialogue": "You're looking splendid dear! Now, are you-- Wait, you have a letter?", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Receptionist" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-25", + "lineInfo": { + "dialogue": "You know miss, you look like you could've been a great investor. Oh well, good luck!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Receptionist" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-26", + "lineInfo": { + "dialogue": "Why sure darling, you have 3 seconds to- Hold on, that letter...", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Receptionist" + } + }, + { + "fileOverride": "thefeathersflypart2-receptionist-27", + "lineInfo": { + "dialogue": "That's... Unprecedented. Let me check when the council's avaliable and book an audience... ", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Receptionist" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-28", + "lineInfo": { + "dialogue": "I hope tomorrow morning is good for you.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Receptionist" + } + }, + { + "fileOverride": "thefeathersflypart2-receptionist-29", + "lineInfo": { + "dialogue": "Don't miss it. Oh, and miss, there's something really off about your face.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Receptionist" + } + }, + { + "fileOverride": "thefeathersflypart2-receptionist-30", + "lineInfo": { + "dialogue": "If you want a tip, well... There's a new guy in the council, so he might be easier to impress!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Receptionist" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-receptionist-31", + "lineInfo": { + "dialogue": "Urgh, what now? You better be quick.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Receptionist" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-grant-1", + "lineInfo": { + "dialogue": "Hmpf. Is he late?", + "line": { + "current": 1, + "max": 20 + }, + "npc": "Grant" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-mei-1", + "lineInfo": { + "dialogue": "Nah, I saw him running around earlier. He's coming.", + "line": { + "current": 3, + "max": 20 + }, + "npc": "Mei" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-1", + "lineInfo": { + "dialogue": "My guts are telling me this one's gonna be impressive. I hope he's there.", + "line": { + "current": 5, + "max": 20 + }, + "npc": "Efena" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-clomius-1", + "lineInfo": { + "dialogue": "Oh, I hear him.", + "line": { + "current": 7, + "max": 20 + }, + "npc": "Clomius" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-2", + "lineInfo": { + "dialogue": "Sharp ear.", + "line": { + "current": 8, + "max": 20 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-clomius-2", + "lineInfo": { + "dialogue": "Always.", + "line": { + "current": 9, + "max": 20 + }, + "npc": "Clomius" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-1", + "lineInfo": { + "dialogue": "Sorry, sorry, I'm here! Am I late?!", + "line": { + "current": 10, + "max": 20 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-nodise-1", + "lineInfo": { + "dialogue": "We haven't started yet. You're fine.", + "line": { + "current": 11, + "max": 20 + }, + "npc": "Nodise" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-2", + "lineInfo": { + "dialogue": "Phew, I tho- Wait, soldier??", + "line": { + "current": 12, + "max": 20 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-sybil-1", + "lineInfo": { + "dialogue": "You know them?! How?!", + "line": { + "current": 13, + "max": 20 + }, + "npc": "Sybil" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-sybil-17", + "lineInfo": { + "dialogue": "Of course you'd know them. I'm not surprised.", + "line": { + "current": 13, + "max": 20 + }, + "npc": "Sybil" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-sybil-19", + "lineInfo": { + "dialogue": "And lo and behold, you know them. Of course.", + "line": { + "current": 13, + "max": 20 + }, + "npc": "Sybil" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-3", + "lineInfo": { + "dialogue": "How do you not?! They're the one who helped deal with the Factory!", + "line": { + "current": 14, + "max": 20 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-3", + "lineInfo": { + "dialogue": "...So it's you. I somehow imagined you... More imposing. Huh.", + "line": { + "current": 15, + "max": 20 + }, + "npc": "Efena" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-dwice-1", + "lineInfo": { + "dialogue": "Shall we begin, pres'?", + "line": { + "current": 17, + "max": 20 + }, + "npc": "Dwice" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-4", + "lineInfo": { + "dialogue": "Ava, was it? The handwriting's odd. Well, welcome to... the Council!", + "line": { + "current": 18, + "max": 20 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-5", + "lineInfo": { + "dialogue": "I'm Efena, President of Corkus!", + "line": { + "current": 19, + "max": 20 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-6", + "lineInfo": { + "dialogue": "*ahem*It's up to you, now. Do your thing. What do you have in store for us?", + "line": { + "current": 20, + "max": 20 + }, + "npc": "Efena" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-carl-1", + "lineInfo": { + "dialogue": "A mechanic? Which area? Maybe I have a friend wh-", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Carl" + } + }, + { + "fileOverride": "thefeathersflypart2-grant-2", + "lineInfo": { + "dialogue": "Shut it Carl, let her talk.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Grant" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-sybil-2", + "lineInfo": { + "dialogue": "Y'know, you really don't look like the \"inventor\" type.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Sybil" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-nodise-2", + "lineInfo": { + "dialogue": "Plants, huh? That's unusual, I'm curious.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Nodise" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-7", + "lineInfo": { + "dialogue": "Huh! Go on...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Efena" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-mei-2", + "lineInfo": { + "dialogue": "I see you're familiar with your toy!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Mei" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-sybil-3", + "lineInfo": { + "dialogue": "Wait, you brought such an armour and that's not what you're showcasing?", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Sybil" + } + }, + { + "fileOverride": "thefeathersflypart2-clomius-3", + "lineInfo": { + "dialogue": "You certainly caught our attention. Go on.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Clomius" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-8", + "lineInfo": { + "dialogue": "And we sure hope so!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Efena" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-grant-3", + "lineInfo": { + "dialogue": "Hmpf. What's happening?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Grant" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-4", + "lineInfo": { + "dialogue": "I think we should give them a bit more time.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Maxie" + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-9", + "lineInfo": { + "dialogue": "Are you two sure you're alright?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-10", + "lineInfo": { + "dialogue": "Is that machine that hard to control?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Efena" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-11", + "lineInfo": { + "dialogue": "Alright, you really seem to be struggling.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-12", + "lineInfo": { + "dialogue": "Lucky for you, I'm in a relatively good mood.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-13", + "lineInfo": { + "dialogue": "I'm giving you 6 more tries before we call it quits.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Efena" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-14", + "lineInfo": { + "dialogue": "Hey, even I'm worried for you now. 5 tries left.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-mei-3", + "lineInfo": { + "dialogue": "You don't want to anger Efena.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Mei" + } + }, + { + "fileOverride": "thefeathersflypart2-grant-4", + "lineInfo": { + "dialogue": "Hmpf. Show us your best this time.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Grant" + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-15", + "lineInfo": { + "dialogue": "4 tries left.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-5", + "lineInfo": { + "dialogue": "...Aren't you stressing them out... Too much?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-sybil-4", + "lineInfo": { + "dialogue": "Don't spoil our fun, Maxie!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Sybil" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-16", + "lineInfo": { + "dialogue": "Your fun. I'm not a monster. It's called time management, Sybil.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Efena" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-17", + "lineInfo": { + "dialogue": "3 tries left. I hate to do this to you, but we have strict schedules.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Efena" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-dwice-2", + "lineInfo": { + "dialogue": "Oh we can definitely see that.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Dwice" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-18", + "lineInfo": { + "dialogue": "Let's not make it worse for them.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Efena" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-19", + "lineInfo": { + "dialogue": "2 tries left...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Efena" + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-20", + "lineInfo": { + "dialogue": "Sorry. Maybe you should've showcased that armour instead.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-21", + "lineInfo": { + "dialogue": "By all means, continue. Ninth time's the charm.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Efena" + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-22", + "lineInfo": { + "dialogue": "Last chance, Ava. This was quite the audience, but we're very much used to that.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-23", + "lineInfo": { + "dialogue": "Actually, how'd you get one in the first place? Just curious. ", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Efena" + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-24", + "lineInfo": { + "dialogue": "Cryptic. I'd have liked that more if you and soldier knew what you were doing.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Efena" + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-nodise-3", + "lineInfo": { + "dialogue": "What a shame. I believed in these two.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Nodise" + } + }, + { + "fileOverride": "thefeathersflypart2-clomius-4", + "lineInfo": { + "dialogue": "So did I. But you heard Efena. I guess it's over.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Clomius" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-25", + "lineInfo": { + "dialogue": "Fine. I'll give you one pass. You do have a cool armour, after all.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Efena" + } + } + ] + }, + "56": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-clomius-5", + "lineInfo": { + "dialogue": "Fancy.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Clomius" + } + } + ] + }, + "57": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-26", + "lineInfo": { + "dialogue": "Even I'm getting into this!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Efena" + } + } + ] + }, + "58": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-27", + "lineInfo": { + "dialogue": "...Huh.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Efena" + } + } + ] + }, + "59": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-nodise-4", + "lineInfo": { + "dialogue": "I do believe this has potential. Let us see more of it.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Nodise" + } + } + ] + }, + "60": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-28", + "lineInfo": { + "dialogue": "I like the sounds, at least!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Efena" + } + } + ] + }, + "61": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-dwice-3", + "lineInfo": { + "dialogue": "This almost reminds me of, uuuh...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Dwice" + } + }, + { + "fileOverride": "thefeathersflypart2-dwice-4", + "lineInfo": { + "dialogue": "Hold on, it's on the tip of my tongue...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Dwice" + } + }, + { + "fileOverride": "thefeathersflypart2-dwice-5", + "lineInfo": { + "dialogue": "Ah right, Avos magic! Right??", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Dwice" + } + } + ] + }, + "62": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-29", + "lineInfo": { + "dialogue": "So soldier knows how to handle machines too? Nifty!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Efena" + } + } + ] + }, + "63": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-maxie-6", + "lineInfo": { + "dialogue": "Wait, don't overdo it!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Maxie" + } + } + ] + }, + "64": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-maxie-7", + "lineInfo": { + "dialogue": "Wait, that magic, that's... No...", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Maxie" + } + } + ] + }, + "65": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-30", + "lineInfo": { + "dialogue": "Oh my... Oh my grook. This is... Wow...", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-31", + "lineInfo": { + "dialogue": "It's the real deal. That girl managed to instantly overgrow a flower.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-mei-4", + "lineInfo": { + "dialogue": "...Don't look at us like that, I'm as surprised as you are.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Mei" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-32", + "lineInfo": { + "dialogue": "Well, Ava... You've won me over. I'm impressed! ", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-33", + "lineInfo": { + "dialogue": "Hey, you alright? It’s not often mechanics impress us. Good job.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Efena" + } + } + ] + }, + "66": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-34", + "lineInfo": { + "dialogue": "You’re crying?! Aw... There, there. It’s alright, you made it.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Efena" + } + } + ] + }, + "67": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-35", + "lineInfo": { + "dialogue": "I didn't really doubt you with your armour. We have a few questions though!", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-carl-2", + "lineInfo": { + "dialogue": "This is all really nice, but... How does this work?", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Carl" + } + } + ] + }, + "68": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-carl-3", + "lineInfo": { + "dialogue": "Oh, that component, that's a-.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Carl" + } + } + ] + }, + "69": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-36", + "lineInfo": { + "dialogue": "Shut it, Carl! No one c- Wait. Actually...", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-37", + "lineInfo": { + "dialogue": "No one in Corkus ever made anything like this. Do you have anything to tell us, or show?", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-38", + "lineInfo": { + "dialogue": "While the machine didn't seem to work, you pulled out some... Weird magic. Are you hiding anything?", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Efena" + } + } + ] + }, + "70": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-everyone-1", + "lineInfo": { + "dialogue": "WHAT?", + "line": { + "current": 2, + "max": 15 + }, + "npc": "Everyone" + } + }, + { + "fileOverride": "thefeathersflypart2-sybil-5", + "lineInfo": { + "dialogue": "There's NO WAY that's true!", + "line": { + "current": 3, + "max": 15 + }, + "npc": "Sybil" + } + }, + { + "fileOverride": "thefeathersflypart2-mei-5", + "lineInfo": { + "dialogue": "What should we do what should we-", + "line": { + "current": 4, + "max": 15 + }, + "npc": "Mei" + } + }, + { + "fileOverride": "thefeathersflypart2-dwice-6", + "lineInfo": { + "dialogue": "Should we seize her?!", + "line": { + "current": 5, + "max": 15 + }, + "npc": "Dwice" + } + } + ] + }, + "71": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-dwice-7", + "lineInfo": { + "dialogue": "Flawless?! More like flawful! This was so obvious!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Dwice" + } + } + ] + }, + "72": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-dwice-8", + "lineInfo": { + "dialogue": "I- uh, y'know, didn't want to assume...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Dwice" + } + } + ] + }, + "73": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-mei-6", + "lineInfo": { + "dialogue": "I don't- I don't know!", + "line": { + "current": 7, + "max": 15 + }, + "npc": "Mei" + } + } + ] + }, + "74": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-sybil-6", + "lineInfo": { + "dialogue": "You SHUT UP for now!", + "line": { + "current": 9, + "max": 15 + }, + "npc": "Sybil" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-8", + "lineInfo": { + "dialogue": "Maybe she-", + "line": { + "current": 10, + "max": 15 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-sybil-7", + "lineInfo": { + "dialogue": "'goes for you too, Maxie!", + "line": { + "current": 11, + "max": 15 + }, + "npc": "Sybil" + } + }, + { + "fileOverride": "thefeathersflypart2-nodise-5", + "lineInfo": { + "dialogue": "Let's calm down and start ag-", + "line": { + "current": 12, + "max": 15 + }, + "npc": "Nodise" + } + }, + { + "fileOverride": "thefeathersflypart2-clomius-6", + "lineInfo": { + "dialogue": "So that explains the magic!", + "line": { + "current": 13, + "max": 15 + }, + "npc": "Clomius" + } + } + ] + }, + "75": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-clomius-7", + "lineInfo": { + "dialogue": "I just can't believe this!!", + "line": { + "current": 13, + "max": 15 + }, + "npc": "Clomius" + } + }, + { + "fileOverride": "thefeathersflypart2-grant-5", + "lineInfo": { + "dialogue": "Hmpf? Just take her on the spot!", + "line": { + "current": 14, + "max": 15 + }, + "npc": "Grant" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-39", + "lineInfo": { + "dialogue": "EVERYONE! STOP! Soldier, I want you to come here and answer something, immediately.", + "line": { + "current": 15, + "max": 15 + }, + "npc": "Efena" + } + } + ] + }, + "76": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-40", + "lineInfo": { + "dialogue": "We wouldn't have known with such an outfit.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-41", + "lineInfo": { + "dialogue": "There's only one thing I want to know.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-42", + "lineInfo": { + "dialogue": "Did you know, or did she trick you?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Efena" + } + } + ] + }, + "77": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-43", + "lineInfo": { + "dialogue": "Sure, and then what? What did you hope to accomplish?!", + "line": { + "current": 2, + "max": 20 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-44", + "lineInfo": { + "dialogue": "I'm unsure if I should be impressed, distressed or enraged. So I think I'll just be all three. Ava, congratulations.", + "line": { + "current": 3, + "max": 20 + }, + "npc": "Efena" + } + } + ] + }, + "78": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-45", + "lineInfo": { + "dialogue": "Oh, darling. You impress then enrage me, and now you want me to pity you.", + "line": { + "current": 6, + "max": 20 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-46", + "lineInfo": { + "dialogue": "You know, your kind has always been...", + "line": { + "current": 7, + "max": 20 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-47", + "lineInfo": { + "dialogue": "So archaic. Always with their spirituality, their flora, their beliefs, their traditions...", + "line": { + "current": 8, + "max": 20 + }, + "npc": "Efena" + } + } + ] + }, + "79": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-48", + "lineInfo": { + "dialogue": "I thought electromagic was limited to humans, but it seems like you're miserable at it anyway.", + "line": { + "current": 10, + "max": 20 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-49", + "lineInfo": { + "dialogue": "Even then, I see no reason as to why we should let you interact with us. You shouldn't be here.", + "line": { + "current": 11, + "max": 20 + }, + "npc": "Efena" + } + } + ] + }, + "80": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-sybil-8", + "lineInfo": { + "dialogue": "Alright, I've heard enough. That's it.", + "line": { + "current": 17, + "max": 20 + }, + "npc": "Sybil" + } + }, + { + "fileOverride": "thefeathersflypart2-nodise-6", + "lineInfo": { + "dialogue": "Sybil, wait!", + "line": { + "current": 18, + "max": 20 + }, + "npc": "Nodise" + } + } + ] + }, + "81": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-50", + "lineInfo": { + "dialogue": "What just... Everyone! Dismissed! What is that girl doing?! I'll go after her! Nodise, Maxie, you go and help Sybil!", + "line": { + "current": 20, + "max": 20 + }, + "npc": "Efena" + } + } + ] + }, + "82": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-maxie-9", + "lineInfo": { + "dialogue": "Well... Mo'in, soldier. I was thinking about catching up with you and all after the audience, but...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-10", + "lineInfo": { + "dialogue": "I guess we don't really have time for that now, do we?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-sybil-9", + "lineInfo": { + "dialogue": "Wow, Maxie, great time management you got there!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Sybil" + } + }, + { + "fileOverride": "thefeathersflypart2-nodise-7", + "lineInfo": { + "dialogue": "Sybil... This is no time to quarrel.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Nodise" + } + }, + { + "fileOverride": "thefeathersflypart2-sybil-10", + "lineInfo": { + "dialogue": "Have you seen what just happened? I'm sure even now he'll keep defending the Avos!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Sybil" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-11", + "lineInfo": { + "dialogue": "Look, there's no time right now. I think soldier and I should go and help.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-12", + "lineInfo": { + "dialogue": "Nodise... You probably should stay here too. We-", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-13", + "lineInfo": { + "dialogue": "Wha-What's happening?! Oh dear, I'll just run there!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Maxie" + } + } + ] + }, + "83": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-sybil-11", + "lineInfo": { + "dialogue": "You're- *cough*so good at handling... priorities, Maxie.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Sybil" + } + }, + { + "fileOverride": "thefeathersflypart2-nodise-8", + "lineInfo": { + "dialogue": "Save your energy for later, Sybil.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Nodise" + } + }, + { + "fileOverride": "thefeathersflypart2-sybil-12", + "lineInfo": { + "dialogue": "Even after... Even after this, I'm sure *cough*he'll keep defending them...", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Sybil" + } + } + ] + }, + "84": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-51", + "lineInfo": { + "dialogue": "Well look who decided to show up. I thought you would've fled by now.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Efena" + } + } + ] + }, + "85": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-maxie-14", + "lineInfo": { + "dialogue": "Soldier!! I'm sure Efena told you already, no time to talk!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-15", + "lineInfo": { + "dialogue": "Apparently, there's something up there! Try to reach the top! There are strange plants around, see if that helps!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Maxie" + } + } + ] + }, + "86": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-maxie-16", + "lineInfo": { + "dialogue": "No time to talk! Just go! There must be a core to hit at the top!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Maxie" + } + } + ] + }, + "87": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-maxie-17", + "lineInfo": { + "dialogue": "Woah! You did something! You should try that again!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Maxie" + } + } + ] + }, + "88": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-grant-6", + "lineInfo": { + "dialogue": "Hmpf! Leave me be! If you want to climb to reason with your friend, hit some of these weird plants, they seem to throw people around! You don't even need a weapon.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Grant" + } + } + ] + }, + "89": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-52", + "lineInfo": { + "dialogue": "Soldier! Ava's up there, isn't she?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Efena" + } + } + ] + }, + "90": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-mei-7", + "lineInfo": { + "dialogue": "...Everyone alright?", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Mei" + } + }, + { + "fileOverride": "thefeathersflypart2-grant-7", + "lineInfo": { + "dialogue": "Hmpf. Did soldier take that thing down?", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Grant" + } + } + ] + }, + "91": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-grant-8", + "lineInfo": { + "dialogue": "Hmpf. I certainly am curious now.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Grant" + } + } + ] + }, + "92": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-mei-8", + "lineInfo": { + "dialogue": "'think so, yeah.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Mei" + } + } + ] + }, + "93": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-mei-9", + "lineInfo": { + "dialogue": "Interesting.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mei" + } + } + ] + }, + "94": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-mei-10", + "lineInfo": { + "dialogue": "Urgh, what is this thing made of..! Should I go higher?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mei" + } + } + ] + }, + "95": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-maxie-18", + "lineInfo": { + "dialogue": "Where's soldier? And Ava?!", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-53", + "lineInfo": { + "dialogue": "Oh she better be around here!", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-19", + "lineInfo": { + "dialogue": "Wait, under the rubble, I see something!", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-20", + "lineInfo": { + "dialogue": "There! Soldier, are you alright? Hello?", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-54", + "lineInfo": { + "dialogue": "They unconscious?", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-21", + "lineInfo": { + "dialogue": "It... It looks like it.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-55", + "lineInfo": { + "dialogue": "Look, I'll give you a mission. Find Ava with soldier, and tell her this...", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Efena" + } + } + ] + }, + "96": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-maxie-22", + "lineInfo": { + "dialogue": "Soldier?! 'that you? I'm downstairs!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Maxie" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "97": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-maxie-23", + "lineInfo": { + "dialogue": "Mo'in, soldier! You're fine! I'm so glad!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Maxie" + } + } + ] + }, + "98": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-maxie-24", + "lineInfo": { + "dialogue": "Alright, let's get going.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Maxie" + } + } + ] + }, + "99": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-maxie-25", + "lineInfo": { + "dialogue": "...There? *sigh*I hope she's inside.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Maxie" + } + } + ] + }, + "100": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-maxie-26", + "lineInfo": { + "dialogue": "...Huh.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-27", + "lineInfo": { + "dialogue": "The Avos chief did mention her once, but this place is crazy!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Maxie" + } + } + ] + }, + "101": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-maxie-28", + "lineInfo": { + "dialogue": "Ava... I-", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Maxie" + } + } + ] + }, + "102": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-maxie-29", + "lineInfo": { + "dialogue": "The president didn't sentence you to death or anything... Quite the opposite, actually.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Maxie" + } + } + ] + }, + "103": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-maxie-30", + "lineInfo": { + "dialogue": "Well, it's just that-", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Maxie" + } + } + ] + }, + "104": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-56", + "lineInfo": { + "dialogue": "Don't bother, Maxie. I'll explain myself.", + "line": { + "current": 1, + "max": 27 + }, + "npc": "???" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "thefeathersflypart2-efena-57", + "lineInfo": { + "dialogue": "Nice place. I can clearly see how our culture got to you.", + "line": { + "current": 2, + "max": 27 + }, + "npc": "Efena" + } + } + ] + }, + "105": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-58", + "lineInfo": { + "dialogue": "Oh, \"forgive\" is a really strong word, Ava. Look.", + "line": { + "current": 4, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-59", + "lineInfo": { + "dialogue": "I do believe we can all learn a thing or two about this. Ava...", + "line": { + "current": 5, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-60", + "lineInfo": { + "dialogue": "You broke the law, and as such, you're not allowed in town. Ya understand?", + "line": { + "current": 6, + "max": 27 + }, + "npc": "Efena" + } + } + ] + }, + "106": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-61", + "lineInfo": { + "dialogue": "Look, that machine of yours is impressive. I'm not lying. You're talented.", + "line": { + "current": 8, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-62", + "lineInfo": { + "dialogue": "But you've definitely made quite the mistake. I did too.", + "line": { + "current": 9, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-63", + "lineInfo": { + "dialogue": "I guess you and I really learnt what ''acting in the heat of the moment'' means, huh.", + "line": { + "current": 10, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-64", + "lineInfo": { + "dialogue": "I have some sort of... Compromise. For us. Maxie?", + "line": { + "current": 11, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-31", + "lineInfo": { + "dialogue": "Yeah, I'm... interested in working with you. Learning from you.", + "line": { + "current": 12, + "max": 27 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-32", + "lineInfo": { + "dialogue": "You're clearly better at Electromagic than I, so...", + "line": { + "current": 13, + "max": 27 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-33", + "lineInfo": { + "dialogue": "I'm willing to provide you with what you need. Help you out from time to time.", + "line": { + "current": 14, + "max": 27 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-65", + "lineInfo": { + "dialogue": "You've been alone for so long, Ava. I'm lending you Maxie!", + "line": { + "current": 15, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-maxie-34", + "lineInfo": { + "dialogue": "Hey, don't say it like that!", + "line": { + "current": 16, + "max": 27 + }, + "npc": "Maxie" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-66", + "lineInfo": { + "dialogue": "*chuckles*I'm kidding. The rest of the council isn't aware yet.", + "line": { + "current": 17, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-67", + "lineInfo": { + "dialogue": "They're not gonna like this, but I'll handle it.", + "line": { + "current": 18, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-68", + "lineInfo": { + "dialogue": "You know I can't kill you. Can you imagine how the Avos would take it? Even though you're banished...", + "line": { + "current": 19, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-69", + "lineInfo": { + "dialogue": "But I don't want to either. As for you, soldier...", + "line": { + "current": 20, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-70", + "lineInfo": { + "dialogue": "I'll give you some stuff. I can't imagine how things would've gone if it weren't for you.", + "line": { + "current": 21, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-71", + "lineInfo": { + "dialogue": "Now, you're banished from everyone Ava. I know that's no happy ending.", + "line": { + "current": 22, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-72", + "lineInfo": { + "dialogue": "But that would've been too easy, don't ya think?", + "line": { + "current": 23, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-73", + "lineInfo": { + "dialogue": "Maybe later, you'll get your happy ending. But you can settle with not being alone anymore, right?", + "line": { + "current": 24, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-74", + "lineInfo": { + "dialogue": "Goodbye, Ava. Who knows, maybe I'll stop by sometimes.", + "line": { + "current": 25, + "max": 27 + }, + "npc": "Efena" + } + } + ] + }, + "107": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-75", + "lineInfo": { + "dialogue": "Goodbye, Ava. Who knows, I might stop by sometimes. After all, you’re very stylish!", + "line": { + "current": 25, + "max": 27 + }, + "npc": "Efena" + } + } + ] + }, + "108": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-76", + "lineInfo": { + "dialogue": "Goodbye, Ava. Who knows, I might stop by sometimes. Maybe you'll have figured out that armour of yours.", + "line": { + "current": 25, + "max": 27 + }, + "npc": "Efena" + } + } + ] + }, + "109": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-sybil-18", + "lineInfo": { + "dialogue": "You should leave now or I'll be the one hitting you.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sybil" + } + } + ] + }, + "110": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-sybil-20", + "lineInfo": { + "dialogue": "Calm down, Maxie.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Sybil" + } + } + ] + }, + "111": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-77", + "lineInfo": { + "dialogue": "Honestly, I wouldn't blame him if he decided to skip this one out.", + "line": { + "current": 5, + "max": 20 + }, + "npc": "Efena" + } + } + ] + }, + "112": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-78", + "lineInfo": { + "dialogue": "Oh, we get that very often. Especially with mechanics like you. Sorry.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Efena" + } + } + ] + }, + "113": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-79", + "lineInfo": { + "dialogue": "Hey, hey, calm down! I'm here to actually help you... in a way.", + "line": { + "current": 4, + "max": 27 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-80", + "lineInfo": { + "dialogue": "I do believe we can all learn a thing or two about this.", + "line": { + "current": 5, + "max": 27 + }, + "npc": "Efena" + } + } + ] + }, + "114": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-81", + "lineInfo": { + "dialogue": "I don't think he'll skip this one. You look cute, Ava! That's your name, right? Handwriting's a little iffy.", + "line": { + "current": 5, + "max": 20 + }, + "npc": "Efena" + } + } + ] + }, + "115": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-82", + "lineInfo": { + "dialogue": "Right, right. AVA! Welcome to... the Council.", + "line": { + "current": 18, + "max": 20 + }, + "npc": "Efena" + } + } + ] + }, + "116": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-83", + "lineInfo": { + "dialogue": "Hey, Carl! We didn't ask!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Efena" + } + } + ] + }, + "117": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-84", + "lineInfo": { + "dialogue": "God, I hate to say it, but her mask was flawless.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Efena" + } + } + ] + }, + "118": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-85", + "lineInfo": { + "dialogue": "And WHY didn't you say so??", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Efena" + } + } + ] + }, + "119": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-86", + "lineInfo": { + "dialogue": "Urgh. Look, there's only one thing I want to know.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-87", + "lineInfo": { + "dialogue": "soldier... Did you know, or did she trick you? Be very careful about what you're about to say.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Efena" + } + } + ] + }, + "120": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-88", + "lineInfo": { + "dialogue": "Somehow, you're able to control electromagic? I guess it's not exclusive to humans, then.", + "line": { + "current": 10, + "max": 20 + }, + "npc": "Efena" + } + } + ] + }, + "121": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-89", + "lineInfo": { + "dialogue": "Goodbye, Ava. Who knows, maybe I'll stop by sometimes. After all, you're very stylish!", + "line": { + "current": 25, + "max": 27 + }, + "npc": "Efena" + } + } + ] + }, + "122": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-1", + "lineInfo": { + "dialogue": "Oh... So you showed up! I'm glad, I really am!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-2", + "lineInfo": { + "dialogue": "It's time for me to show the Growth Accelerator to the Corkians.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-3", + "lineInfo": { + "dialogue": "Look, this time I'll really try and reward you well, alright?", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-4", + "lineInfo": { + "dialogue": "Anyway! I have a plan. You see, I definitely can't easily get in the city.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-5", + "lineInfo": { + "dialogue": "The Corkians have a council where they deal with their issues. We can try getting an audience.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-6", + "lineInfo": { + "dialogue": "I know a way for me to get in the city. That's where you come in! There are some sentries to take care of.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-7", + "lineInfo": { + "dialogue": "They're really old models though, somehow. I'll give you a jammer I made for this. Right-Click a robot to use it!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-8", + "lineInfo": { + "dialogue": "Once you jam one robot, you'll have to jam all others within 20 seconds! So try to plan ahead and locate them all before jamming one!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-9", + "lineInfo": { + "dialogue": "Tell me once you're ready. I'll throw you in there. I'll join you afterwards. You'll see!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Ava" + } + } + ] + }, + "123": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-10", + "lineInfo": { + "dialogue": "Well then, first off, take this!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-11", + "lineInfo": { + "dialogue": "Now, just stand still... I gotta try something on you...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ava" + } + } + ] + }, + "124": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-12", + "lineInfo": { + "dialogue": "Thanks! These robots were harmless but hey, better safe than sorry right?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-13", + "lineInfo": { + "dialogue": "Anyway, we need to get ready to meet the Corkian Council.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-14", + "lineInfo": { + "dialogue": "And I think... I need a disguise. I don't like hiding myself, but I don't have a choice.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-15", + "lineInfo": { + "dialogue": "Thanks to some plans I got, I know where to find some. Follow me!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "125": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-16", + "lineInfo": { + "dialogue": "Here we are! I'm pretty sure we can find some outfits in there.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-17", + "lineInfo": { + "dialogue": "I'll stand here to quickly hide in case anyone comes.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-18", + "lineInfo": { + "dialogue": "Just look around, and come back with what you think looks better!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-19", + "lineInfo": { + "dialogue": "Yeah, I am letting you choose my outfit. Aren't you lucky? Go and get me the fanciest clothes!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "126": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-20", + "lineInfo": { + "dialogue": "Shoot, I think someone's coming!! Come back!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-21", + "lineInfo": { + "dialogue": "...Nevermind! Keep looking... Sorry...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ava" + } + } + ] + }, + "127": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-22", + "lineInfo": { + "dialogue": "I'm trusting you. We Avos aren't exactly into... Fashion. Then again, they're not into Electromagic either, so what do I know.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "128": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-23", + "lineInfo": { + "dialogue": "Alright, hold on...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "129": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-24", + "lineInfo": { + "dialogue": "So, how do I look?!", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-25", + "lineInfo": { + "dialogue": "I feel like... I'm about to go to work.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-26", + "lineInfo": { + "dialogue": "At the very least, I'll probably blend in very well!", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-27", + "lineInfo": { + "dialogue": "Now, I'm gonna be completely honest about this, so don't panic, but...", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-28", + "lineInfo": { + "dialogue": "I have... absolutely NO idea how we could even get an audience.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-29", + "lineInfo": { + "dialogue": "I think we need to split up and try to find out how to get one from the Council.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-30", + "lineInfo": { + "dialogue": "I'll be around the town center if ya need me for anything! I'll ask around. You should too!", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-31", + "lineInfo": { + "dialogue": "One last thing, though... Sorry if that's a little weird but...", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-32", + "lineInfo": { + "dialogue": "... What's your name?", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-33", + "lineInfo": { + "dialogue": "soldier, huh? That's... A nice name. Well, good luck!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Ava" + } + } + ] + }, + "130": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-34", + "lineInfo": { + "dialogue": "I've already seen plenty of green in my lifetime, y'know.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-35", + "lineInfo": { + "dialogue": "Well, I know you folks sure do love money. Maybe we can get noticed with this...", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-36", + "lineInfo": { + "dialogue": "Hmm... You know, this could actually work!", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-37", + "lineInfo": { + "dialogue": "I have no idea how this audience things works but I could try to get people to notice me!", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-38", + "lineInfo": { + "dialogue": "Well, we should split up and meet up later to see what information we have. Just ask around town!", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-39", + "lineInfo": { + "dialogue": "I'll be around the town center if you got any information!", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-40", + "lineInfo": { + "dialogue": "One last thing, though... Sorry if thats a little weird but...", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Ava" + } + } + ] + }, + "131": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-41", + "lineInfo": { + "dialogue": "So, how do I look?!", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-42", + "lineInfo": { + "dialogue": "Ya got good taste! I always wanted to explore the ocean, y'know?", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-43", + "lineInfo": { + "dialogue": "Hey, thanks for helping me out so much. You've been such a huge help!", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-44", + "lineInfo": { + "dialogue": "Well, this isn't over, of course. And to tell you the truth...", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-45", + "lineInfo": { + "dialogue": "I, uh, have no idea how to get an audience... Sorry?", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-46", + "lineInfo": { + "dialogue": "I think we need to split up and try to find out how to get one.", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-47", + "lineInfo": { + "dialogue": "I'll be around the town center if ya need me for anything!", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-48", + "lineInfo": { + "dialogue": "One last thing, though... Sorry if that's a little weird but...", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-49", + "lineInfo": { + "dialogue": "... What's your name?", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-50", + "lineInfo": { + "dialogue": "soldier, huh? That's... A nice name. Well, good luck!", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-51", + "lineInfo": { + "dialogue": "Oh, and check this mask out! Time to be Ava the human!", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Ava" + } + } + ] + }, + "132": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-52", + "lineInfo": { + "dialogue": "I feel like... I'm not even supposed to be wearing this.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-53", + "lineInfo": { + "dialogue": "This looks... Really, really cool though! ...Wait, where did you even find this?", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-54", + "lineInfo": { + "dialogue": "I saw this dog, and... Well, that's besides the point. You'll tell me later!", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-55", + "lineInfo": { + "dialogue": "Look, this audience thing is foreign to me but I feel like it won't really be an issue with this... thing.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-56", + "lineInfo": { + "dialogue": "Well, we still need information on who to even talk to for that stuff... I'll ask around.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-57", + "lineInfo": { + "dialogue": "You should too! I'll be around the town center! Come by once you got enough information!", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Ava" + } + } + ] + }, + "133": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-58", + "lineInfo": { + "dialogue": "Oh, hey! I got something!!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-59", + "lineInfo": { + "dialogue": "Alright, so it's not really on the legal side of things, BUT apparently...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-60", + "lineInfo": { + "dialogue": "There's some sort of... Shady dealer you can buy an audience invitation from?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-61", + "lineInfo": { + "dialogue": "I'm sure there are other ways, but the dude should be in the castle to the east, first door to the left.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-62", + "lineInfo": { + "dialogue": "Do with that what you will. I guess I'll... Keep looking.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "134": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-63", + "lineInfo": { + "dialogue": "Hey, what's up? I do have somethin'!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-64", + "lineInfo": { + "dialogue": "Hmm... So we can go see a receptionist and they just might grant us an audience. Got it!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-65", + "lineInfo": { + "dialogue": "So we go in, show her how cool we are, and I guess that'd work, huh?", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-66", + "lineInfo": { + "dialogue": "I'd say we have plenty of chances with that fancy armour you got me.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-67", + "lineInfo": { + "dialogue": "Oh, right, I had something too!", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-68", + "lineInfo": { + "dialogue": "There's apparently some sort of shady dude selling audience invitations!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-69", + "lineInfo": { + "dialogue": "I believe it's in the castle to the east, on the first left? Though...", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-70", + "lineInfo": { + "dialogue": "I'm sure there are other ways to go about this. Like that receptionist, for one! So she's in the last room of the castle, right?", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-71", + "lineInfo": { + "dialogue": "In fact, if you want me to follow you there, I can do that! Just tell me!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Ava" + } + } + ] + }, + "135": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-72", + "lineInfo": { + "dialogue": "Well, good luck searching!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "136": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-73", + "lineInfo": { + "dialogue": "So you found that weird dealer? Surely you're not thinking of...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-74", + "lineInfo": { + "dialogue": "I mean... Actually, that'd be a way to get an audience, for sure. What does he want?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-75", + "lineInfo": { + "dialogue": "[24 Emerald Blocks]? Is that a lot? I'm not human, y'know! Well, anyway!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-76", + "lineInfo": { + "dialogue": "Buy that if you want, but I'm certain there are other ways to obtain an audience. You don't really have to buy that.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-77", + "lineInfo": { + "dialogue": "Well, I'll just... Keep looking then.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "137": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-78", + "lineInfo": { + "dialogue": "Oh? You found the dealer as well as one other way to get an audience?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-79", + "lineInfo": { + "dialogue": "24 Emerald Blocks, huh? No clue if that's a lot. I'd say we should try your other way! What is it?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-80", + "lineInfo": { + "dialogue": "There's a receptionist for audiences? How convenient! We should go talk to her then!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-81", + "lineInfo": { + "dialogue": "It's... Apparently really hard? Oh... Well, that's not helpful. Maybe we can still give it a go?", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "138": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-82", + "lineInfo": { + "dialogue": "It's difficult to get an audience? Well, it's worth a try, right? Maybe they'll see me as a wealthy lad!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "139": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-83", + "lineInfo": { + "dialogue": "It's... Apparently really hard? Huh. Well, we should still give it a go? I look fancy, surely they'll listen!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-84", + "lineInfo": { + "dialogue": "Buy from that weird dealer if ya want, but we should try to go see that receptionist. Tell me if you want me to follow you there.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-85", + "lineInfo": { + "dialogue": "Alright, let's go then. I'd say we should avoid the dealer, I definitely don't want to get on the bad side of the law!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "140": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-86", + "lineInfo": { + "dialogue": "Hey. Ya got anythin'?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-87", + "lineInfo": { + "dialogue": "Woah there, what's that letter? You actually got an invitation?!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-88", + "lineInfo": { + "dialogue": "I... Wow. Well I'm impressed! I really am!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-89", + "lineInfo": { + "dialogue": "Did we even need a letter? That armour probably would've done the trick!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-90", + "lineInfo": { + "dialogue": "Well... If you want me to follow you, tell me. I've heard 'bout a receptionist in the far end of the castle, so maybe we should go there?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "141": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-91", + "lineInfo": { + "dialogue": "Well... You lead, I follow!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "142": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-92", + "lineInfo": { + "dialogue": "I heard there was a dealer around here but... We have the letter, so let's just keep goin'.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "143": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-93", + "lineInfo": { + "dialogue": "...Wow.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "144": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-94", + "lineInfo": { + "dialogue": "Why thank you! I reckon you will search for an available time regarding an audience?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "145": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-95", + "lineInfo": { + "dialogue": "Uh... Greetings... We've heard that we should come here for-", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "146": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-96", + "lineInfo": { + "dialogue": "No, it's just that I, well... Nevermind, I do have a thing to show, it's uh...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "147": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-97", + "lineInfo": { + "dialogue": "The citizens said it was hard, huh? No kidding. Maybe we should've had something before strolling in.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-98", + "lineInfo": { + "dialogue": "Look, we'll figure out another approach. This can't end here! We need an audience invitation letter.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-99", + "lineInfo": { + "dialogue": "I'll head back to the town center, so if you want to talk I'll see ya there!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "148": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-100", + "lineInfo": { + "dialogue": "Oh?! T-thank you... That's the first time someone told me such a thing!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Ava" + } + } + ] + }, + "149": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-101", + "lineInfo": { + "dialogue": "...Will that grant me an audience with the Council?", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Ava" + } + } + ] + }, + "150": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-102", + "lineInfo": { + "dialogue": "I- We'll... see what we can do.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Ava" + } + } + ] + }, + "151": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-103", + "lineInfo": { + "dialogue": "Look, I'm not good at being a human but even I know this is an absurd amount of money!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-104", + "lineInfo": { + "dialogue": "Do you think she'd actually take it? I'm not sure. We might have to find another way...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-105", + "lineInfo": { + "dialogue": "I'll go back to the town center. It's up to you if you want to risk all that money, if you even have it! We'll figure something else out.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "152": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-106", + "lineInfo": { + "dialogue": "Oh, uh, we, well I actually made a, uh, what's it called, uh...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "153": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-107", + "lineInfo": { + "dialogue": "That certainly didn't go well. But keep your head up! We got this!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-108", + "lineInfo": { + "dialogue": "There was a normal way to get an audience which is via a monthly competition of some sort, I think? We, uh... missed it. So that'll have to pass.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-109", + "lineInfo": { + "dialogue": "Now, for other... Unconventional ways... There was some panic by the Armour Merchant earlier today.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-110", + "lineInfo": { + "dialogue": "Check it out if you want, I won't cause trouble. I'd rather be the friendly neighbourhood mechanic!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-111", + "lineInfo": { + "dialogue": "There is apparently a dealer in the castle the receptionist's in, first entrance to the left. However, He charges emeralds...", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-112", + "lineInfo": { + "dialogue": "I'm sure we can find a free alternative. I'm counting on ya! Just tell me if you want me to follow you!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "154": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-113", + "lineInfo": { + "dialogue": "That's crazy! 12 Liquified Emeralds? Is that how the world works?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-114", + "lineInfo": { + "dialogue": "It's just... I honestly don't care about listening to the law anymore.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-115", + "lineInfo": { + "dialogue": "Let's just get that audience. For one, there's some girl panicking by the Armour Merchant! Maybe she could help?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-116", + "lineInfo": { + "dialogue": "As for another way, I don't know if you paid attention on our way to the receptionist, but...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-117", + "lineInfo": { + "dialogue": "There is apparently a dealer in there. He does charge money too, though. But surely not as much as that... wretched... lady! ...Sorry.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "155": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-118", + "lineInfo": { + "dialogue": "Let's hope we get this right. You lead, I follow!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "156": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-119", + "lineInfo": { + "dialogue": "Wait wait wait, I'm sure you're onto something but I'd rather not do anything fishy in town. Do what you wish, I'll hang around at the town center.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "157": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-120", + "lineInfo": { + "dialogue": "Oh, uh, greetings! We have something for you!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Ava" + } + } + ] + }, + "158": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-121", + "lineInfo": { + "dialogue": "WOO! Oh, sorry, we'll take our leave!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Ava" + } + } + ] + }, + "159": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-122", + "lineInfo": { + "dialogue": "Thank you so much! Sorry about my face, I'm... New in town. Bye!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Ava" + } + } + ] + }, + "160": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-123", + "lineInfo": { + "dialogue": "I can't believe we're actually progressing! This is so exciting!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-124", + "lineInfo": { + "dialogue": "Alright, we need to test the machine before the audience. I've made some tweaks!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-125", + "lineInfo": { + "dialogue": "Meet me near the northern entrance if ya want a lift. Alternatively, you can just go by the Workshop if you're into walking!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "161": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-126", + "lineInfo": { + "dialogue": "Hey! I'm back in my original clothes. It feels much better...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-127", + "lineInfo": { + "dialogue": "Remember that hill next to the Workshop? We'll work there again. Tell me when you're ready for the lift.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ava" + } + } + ] + }, + "162": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-128", + "lineInfo": { + "dialogue": "Here we go!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "163": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-129", + "lineInfo": { + "dialogue": "There we are! Talk to me and I'll tell you all about the changes!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "164": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-130", + "lineInfo": { + "dialogue": "Do you remember how it worked last time? Don't worry, it's still fairly similar.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-131", + "lineInfo": { + "dialogue": "Once again, you'll have a remote. Simply click in the right orders. However!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-132", + "lineInfo": { + "dialogue": "Now, the machine requires a bit more... Dexterity.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-133", + "lineInfo": { + "dialogue": "If you're really quick, the machine will charge up real fast!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-134", + "lineInfo": { + "dialogue": "If you're too slow however, it'd take a bit of time to charge up...", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-135", + "lineInfo": { + "dialogue": "Time is still limited too. Don't worry, this is practice for the Council! Tell me once you're ready!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "165": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-136", + "lineInfo": { + "dialogue": "Alright, here's the remote!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-137", + "lineInfo": { + "dialogue": "A li'l push there...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-138", + "lineInfo": { + "dialogue": "Alright, it's on you now!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "166": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-139", + "lineInfo": { + "dialogue": "Oh no, time's up! It was supposed to be easy... Hold on, I'm booting it up again.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "167": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-140", + "lineInfo": { + "dialogue": "Oh, you're back! Talk to me so we can get started!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "168": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-141", + "lineInfo": { + "dialogue": "Hey, it happens to the best of us!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-142", + "lineInfo": { + "dialogue": "As I've said, this is only practice, don't worry.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-143", + "lineInfo": { + "dialogue": "Just tell me when you're up for another round!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "169": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-144", + "lineInfo": { + "dialogue": "Halfway there!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "170": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-145", + "lineInfo": { + "dialogue": "Please don't break..!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "171": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-146", + "lineInfo": { + "dialogue": "Now we're talking!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-147", + "lineInfo": { + "dialogue": "You gotta admit, this has to be revolutionary!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-148", + "lineInfo": { + "dialogue": "The corkian council... I hope they're nice. I really do. And you're coming!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-149", + "lineInfo": { + "dialogue": "Hey, let's meet up near the receptionist. Say, want another lift? I can't get you inside the city, though!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "172": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-150", + "lineInfo": { + "dialogue": "Cool, let's go! I still have to change back and wear the outfit you got me!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-151", + "lineInfo": { + "dialogue": "I'll drop you off around the city outskirts. See ya!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ava" + } + } + ] + }, + "173": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-152", + "lineInfo": { + "dialogue": "See ya!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "174": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-153", + "lineInfo": { + "dialogue": "This is it, then. Soldier, I'm... scared.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-154", + "lineInfo": { + "dialogue": "I guess it's normal to be stressed before an important event...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-155", + "lineInfo": { + "dialogue": "Look, once we go in there, I'm really counting on you to go all in with the machine.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-156", + "lineInfo": { + "dialogue": "I don't want to stress you out, but... Please know this is important to me.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-157", + "lineInfo": { + "dialogue": "Alright, we should go now or else I'll just chicken out or somethin'.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-158", + "lineInfo": { + "dialogue": "Just... tell me once you're ready, I guess.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "175": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-159", + "lineInfo": { + "dialogue": "Stay close to me... Let's go.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "176": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-160", + "lineInfo": { + "dialogue": "Where's... Everyone?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-161", + "lineInfo": { + "dialogue": "This is the right place... I'm sure it is...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-162", + "lineInfo": { + "dialogue": "Soldier... Any idea what's goi- Wait...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "177": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-163", + "lineInfo": { + "dialogue": "Who-", + "line": { + "current": 2, + "max": 20 + }, + "npc": "Ava" + } + } + ] + }, + "178": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-164", + "lineInfo": { + "dialogue": "What are y-", + "line": { + "current": 4, + "max": 20 + }, + "npc": "Ava" + } + } + ] + }, + "179": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-165", + "lineInfo": { + "dialogue": "...Hel-", + "line": { + "current": 6, + "max": 20 + }, + "npc": "Ava" + } + } + ] + }, + "180": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-166", + "lineInfo": { + "dialogue": "You did WHA-", + "line": { + "current": 16, + "max": 20 + }, + "npc": "Ava" + } + } + ] + }, + "181": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-167", + "lineInfo": { + "dialogue": "H-Hello everyone. I'm a mechanic and I have something for you...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "182": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-168", + "lineInfo": { + "dialogue": "...I've made a Growth Accelerator with help from soldier.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "183": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-169", + "lineInfo": { + "dialogue": "I'll just set it up super quickly!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "184": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-170", + "lineInfo": { + "dialogue": "...T-There.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "185": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-171", + "lineInfo": { + "dialogue": "I get that often, yeah. Green isn't really associated with money for me.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-172", + "lineInfo": { + "dialogue": "I enjoy nature and all, right? Well, I present to you...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-173", + "lineInfo": { + "dialogue": "The Growth Accelerator!!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Ava" + } + } + ] + }, + "186": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-174", + "lineInfo": { + "dialogue": "As you should be! Let me quickly set the machine up.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-175", + "lineInfo": { + "dialogue": "Ah, isn't it beautiful...", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Ava" + } + } + ] + }, + "187": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-176", + "lineInfo": { + "dialogue": "Hey, so... I'm here with soldier to show you a little something!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-177", + "lineInfo": { + "dialogue": "It's actually quite revolutionary! It's a Growth Accelerator!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Ava" + } + } + ] + }, + "188": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-178", + "lineInfo": { + "dialogue": "That piqued your interest, right? Well get ready!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-179", + "lineInfo": { + "dialogue": "It's better outdoors but I believe I can make it work here.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-180", + "lineInfo": { + "dialogue": "I'll set it up. Just sit back and watch!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-181", + "lineInfo": { + "dialogue": "There.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Ava" + } + } + ] + }, + "189": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-182", + "lineInfo": { + "dialogue": "*click*HELLO THERE EVERYO- *click*Wrong button.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "190": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-183", + "lineInfo": { + "dialogue": "Hey, look, I've only had it for a few- Nevermind. That's not what I'm here for.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "191": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-184", + "lineInfo": { + "dialogue": "Watch this.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "192": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-185", + "lineInfo": { + "dialogue": "This is really it, then. No backing down now.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-186", + "lineInfo": { + "dialogue": "I'll just try not to replicate my mistake back then with the Avos.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-187", + "lineInfo": { + "dialogue": "It's time to show them. I don't really have anything extra to tell you.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-188", + "lineInfo": { + "dialogue": "It's as the president just said, soldier. Do your thing..", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "193": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-189", + "lineInfo": { + "dialogue": "Here.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-190", + "lineInfo": { + "dialogue": "All of you, watch carefully!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ava" + } + } + ] + }, + "194": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-191", + "lineInfo": { + "dialogue": "No... No no no no..! Just hold on, guys!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "195": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-192", + "lineInfo": { + "dialogue": "I... I'm sorry if I put too much faith in you...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "196": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-193", + "lineInfo": { + "dialogue": "What happened?! I'll... I'll boot the machine up again!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "197": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-194", + "lineInfo": { + "dialogue": "I'm really, really counting on you...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "198": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-195", + "lineInfo": { + "dialogue": "Oh grook, oh no... Hold on!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "199": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-196", + "lineInfo": { + "dialogue": "Alright guys, don't worry... We got this.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "200": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-197", + "lineInfo": { + "dialogue": "I'll just... wait for your signal, soldier.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "201": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-198", + "lineInfo": { + "dialogue": "...Thanks.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "202": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-199", + "lineInfo": { + "dialogue": "No, no- Don't worry! We're showing you that... It can shut off instead of blowing up...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "203": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-200", + "lineInfo": { + "dialogue": "I- Wow. Okay. Soldier, please...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "204": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-201", + "lineInfo": { + "dialogue": "I... I understand, I think. We're trying, trust me.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "205": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-202", + "lineInfo": { + "dialogue": "Could you... Could you add more? Please?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-203", + "lineInfo": { + "dialogue": "I... I have my ways.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "206": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-204", + "lineInfo": { + "dialogue": "...No.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-205", + "lineInfo": { + "dialogue": "For years, I've been rejected by the entire world.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-206", + "lineInfo": { + "dialogue": "I don't need soldier. I'll show you. I'll do it myself, one final chance.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "207": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-207", + "lineInfo": { + "dialogue": "You guys aren't ready for this!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "208": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-208", + "lineInfo": { + "dialogue": "Wow, the machine's really warmed up this time.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-209", + "lineInfo": { + "dialogue": "Looks like you'll get less penalties if you press the wrong button now.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ava" + } + } + ] + }, + "209": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-210", + "lineInfo": { + "dialogue": "My turn now.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-211", + "lineInfo": { + "dialogue": "Here I go...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-212", + "lineInfo": { + "dialogue": "Gah! Wrong one...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "210": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-213", + "lineInfo": { + "dialogue": "I'm FINE. Screw the machine. I'll do something else!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "211": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-214", + "lineInfo": { + "dialogue": "Actually... I am.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Ava" + } + } + ] + }, + "212": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-215", + "lineInfo": { + "dialogue": "I... How do I put this...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-216", + "lineInfo": { + "dialogue": "I'm not exactly like you guys.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-217", + "lineInfo": { + "dialogue": "In fact, we're very different.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "213": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-218", + "lineInfo": { + "dialogue": "I'm an Avo.", + "line": { + "current": 1, + "max": 15 + }, + "npc": "Ava" + } + } + ] + }, + "214": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-219", + "lineInfo": { + "dialogue": "I-", + "line": { + "current": 8, + "max": 15 + }, + "npc": "Ava" + } + } + ] + }, + "215": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-220", + "lineInfo": { + "dialogue": "I swear soldier didn't know! Believe me!", + "line": { + "current": 1, + "max": 20 + }, + "npc": "Ava" + } + } + ] + }, + "216": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-221", + "lineInfo": { + "dialogue": "But... Why... I don't get it. I don't get the Avos. I don't get humans...", + "line": { + "current": 4, + "max": 20 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-222", + "lineInfo": { + "dialogue": "What's so wrong about me? Why shouldn't I do electromagic? Why??", + "line": { + "current": 5, + "max": 20 + }, + "npc": "Ava" + } + } + ] + }, + "217": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-223", + "lineInfo": { + "dialogue": "I think... I finally get it.", + "line": { + "current": 12, + "max": 20 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-224", + "lineInfo": { + "dialogue": "I do, really. The truth is...", + "line": { + "current": 13, + "max": 20 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-225", + "lineInfo": { + "dialogue": "You're all jokes.", + "line": { + "current": 14, + "max": 20 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-226", + "lineInfo": { + "dialogue": "Every single one of you. And soldier, you... Urgh!", + "line": { + "current": 15, + "max": 20 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-227", + "lineInfo": { + "dialogue": "You failed me! And you, so called council, can't even seem to see past my feathers!", + "line": { + "current": 16, + "max": 20 + }, + "npc": "Ava" + } + } + ] + }, + "218": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-228", + "lineInfo": { + "dialogue": "Don’t you dare touch- Gah! I’ll show you. I’ll show everyone what you’re missing out on!", + "line": { + "current": 19, + "max": 20 + }, + "npc": "Ava" + } + } + ] + }, + "219": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-229", + "lineInfo": { + "dialogue": "Huh, that armour's actually powerful. Now, if you'll excuse me, I'll show everyone what I'm really capable of.", + "line": { + "current": 19, + "max": 20 + }, + "npc": "Ava" + } + } + ] + }, + "220": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-230", + "lineInfo": { + "dialogue": "...You're here. Here to fix my own mistakes, right?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-231", + "lineInfo": { + "dialogue": "As well as yours too. Maybe things would've gone different if you didn't fail the audience, don't you think?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-232", + "lineInfo": { + "dialogue": "Not that it matters anyway. I suppose you can't be on my side anymore. No one can.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-233", + "lineInfo": { + "dialogue": "I... I'm not gonna fight back. There's no point. Just... Just go.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "221": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-234", + "lineInfo": { + "dialogue": "No point fighting back, even though I could totally manage with that armor. I really hurt that girl back there... Well then... Go.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "222": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-235", + "lineInfo": { + "dialogue": "I - I really didn't want this. I wanted to help people, soldier! Not... not...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-236", + "lineInfo": { + "dialogue": "I sure have impressed everyone. So I guess not all’s lost, huh?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-237", + "lineInfo": { + "dialogue": "I’ll be the talk of an entire nation!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-238", + "lineInfo": { + "dialogue": "I don’t... I don’t know what to do... I just reached rock bottom.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "223": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-239", + "lineInfo": { + "dialogue": "...What? Do you have anythin' to tell me before I leave?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-240", + "lineInfo": { + "dialogue": "Huh?! The president herself isn't too mad at me? What??", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-241", + "lineInfo": { + "dialogue": "Are you trying to make me get down and get arrested? You know I... I can't believe you...", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-242", + "lineInfo": { + "dialogue": "I want to, but... Have you seen how she was during the audience?", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-243", + "lineInfo": { + "dialogue": "I can't trust you, soldier. There's no way.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-244", + "lineInfo": { + "dialogue": "I regret this... I sho uldn't have acted this way, this wasn't supposed to happen, I...", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-245", + "lineInfo": { + "dialogue": "I can't stay, soldier. The president's one thing, but the others... It's safe to say no one's gonna welcome me with open arms, y'know?", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Ava" + } + } + ] + }, + "224": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-246", + "lineInfo": { + "dialogue": "You... I assume you're here to take me.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-247", + "lineInfo": { + "dialogue": "Go ahead, then. Do it. I don't have anything to lose anymore. I've already lost everything.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Ava" + } + } + ] + }, + "225": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-248", + "lineInfo": { + "dialogue": "I don't want your pity. I have no one. You're making this harder for yourself.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Ava" + } + } + ] + }, + "226": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-249", + "lineInfo": { + "dialogue": "What do you mean? Why should I trust you?", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Ava" + } + } + ] + }, + "227": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-250", + "lineInfo": { + "dialogue": "So you're here. Are you... Forgiving me?", + "line": { + "current": 3, + "max": 27 + }, + "npc": "Ava" + } + } + ] + }, + "228": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-251", + "lineInfo": { + "dialogue": "First the Avos, then you, huh. So it's come full circle.", + "line": { + "current": 7, + "max": 27 + }, + "npc": "Ava" + } + } + ] + }, + "229": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-252", + "lineInfo": { + "dialogue": "...soldier? If you stop by the Workshop later, I'll set up something for you as well.", + "line": { + "current": 26, + "max": 27 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-253", + "lineInfo": { + "dialogue": "Bye. Thanks. For everything.", + "line": { + "current": 27, + "max": 27 + }, + "npc": "Ava" + } + } + ] + }, + "230": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-254", + "lineInfo": { + "dialogue": "Go on, I'll follow you. I just gotta finish this first!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "231": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-255", + "lineInfo": { + "dialogue": "Hey, don't go alone head first! Talk to me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "232": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-256", + "lineInfo": { + "dialogue": "Wait, let's figure something out!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "233": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-257", + "lineInfo": { + "dialogue": "Look, we need a plan. Talk to me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "234": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-258", + "lineInfo": { + "dialogue": "You're a lucky one, you know that right?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "235": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-259", + "lineInfo": { + "dialogue": "I'll meet you back at the Workshop.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "236": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-260", + "lineInfo": { + "dialogue": "What we're looking for should be around here...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "237": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-261", + "lineInfo": { + "dialogue": "Well, have you found anything?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "238": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-262", + "lineInfo": { + "dialogue": "Time to go and repair some pipes or something!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "239": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-263", + "lineInfo": { + "dialogue": "...Is that someone crying over there? Eh, I'm not sure my social skills can handle that.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "240": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-264", + "lineInfo": { + "dialogue": "I'll try talking to more people!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "241": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-265", + "lineInfo": { + "dialogue": "Alright then, let's get goin'!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "242": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-266", + "lineInfo": { + "dialogue": "So, that dealer is in there, huh? Let's make sure to keep going. And avoid that place.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "243": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-267", + "lineInfo": { + "dialogue": "Let's hope we don't get rejected this time around.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "244": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-268", + "lineInfo": { + "dialogue": "Hey! I saw you run towards the castle. What did you do?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-269", + "lineInfo": { + "dialogue": "...Wait, what? You went to the receptionist alone, just like that?!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-270", + "lineInfo": { + "dialogue": "And you booked an audience for tomorrow morning??", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-271", + "lineInfo": { + "dialogue": "I... I'm really grateful. What a relief. I did some tweaking regarding the machine, so you should come and test with me!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-272", + "lineInfo": { + "dialogue": "Let's meet up near the northern entrance if ya want a lift. Alternatively, you can just meet me by the Workshop if you're into walking!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "245": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-273", + "lineInfo": { + "dialogue": "You're amazing, you know that right?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "246": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-274", + "lineInfo": { + "dialogue": "You helped deal with WHA-", + "line": { + "current": 16, + "max": 20 + }, + "npc": "Ava" + } + } + ] + }, + "247": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-275", + "lineInfo": { + "dialogue": "It's- It- Uh, helps plants. Grow. Yeah.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "248": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-276", + "lineInfo": { + "dialogue": "I'm really, really counting on you, soldier...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "249": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-277", + "lineInfo": { + "dialogue": "I - I really didn't want this... I wanted to help people, soldier! Not... Not...", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-278", + "lineInfo": { + "dialogue": "I sure have impressed everyone. So I guess not all's lost, huh?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-279", + "lineInfo": { + "dialogue": "I'll be the talk of an entire nation!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-280", + "lineInfo": { + "dialogue": "Gosh, I really am going crazy aren't I?..", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-281", + "lineInfo": { + "dialogue": "I just... I don't know what to do... I reached rock bottom...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-282", + "lineInfo": { + "dialogue": "I doomed my people, their people, and I... I had still so much to do...", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-283", + "lineInfo": { + "dialogue": "Go. Just go.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Ava" + } + } + ] + }, + "250": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-284", + "lineInfo": { + "dialogue": "Y-you!! I- oh no... I'm... It's over..!", + "line": { + "current": 3, + "max": 27 + }, + "npc": "Ava" + } + } + ] + }, + "251": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-285", + "lineInfo": { + "dialogue": "soldier, once you come back here, you'll be able to get some of my gadgets.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "252": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-286", + "lineInfo": { + "dialogue": "Alright, let's go!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "253": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-287", + "lineInfo": { + "dialogue": "Let's get going then...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "254": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-288", + "lineInfo": { + "dialogue": "I'm quite curious about this! Corkian outfits! Exciting!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "255": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-289", + "lineInfo": { + "dialogue": "Don't worry about me right now, just keep looking!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "256": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-290", + "lineInfo": { + "dialogue": "I saw some girl runnin' around in circles and looking all stressed over at the Armour Merchant. Maybe you can check that out?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "257": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-291", + "lineInfo": { + "dialogue": "Don't worry, we got this, let's keep looking!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "258": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-292", + "lineInfo": { + "dialogue": "Oh? You found the dealer as well as one other way to get an audience?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-293", + "lineInfo": { + "dialogue": "[24 Emerald Blocks], huh? No clue if that's a lot. I'd say we should try your other way! What is it?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-294", + "lineInfo": { + "dialogue": "There's a receptionist for audiences? How convenient! We should go talk to her then!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-295", + "lineInfo": { + "dialogue": "What? It's apparently really hard? Huh. Well, we should still give it a go? I look fancy, surely they'll listen!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-296", + "lineInfo": { + "dialogue": "Buy from that weird dealer if ya want, but we also should try to go see that receptionist. Tell me if you want me to follow you there.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "259": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-297", + "lineInfo": { + "dialogue": "Alright, let's go then. I'd say we should avoid the dealer, I definitely don't want to get on the bad side of the law!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "260": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-298", + "lineInfo": { + "dialogue": "Hey, don't go back in there! Just hold on, we got this!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "261": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-299", + "lineInfo": { + "dialogue": "Wait wait wait what did I just tell yo- I'll just make myself small...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "262": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-300", + "lineInfo": { + "dialogue": "Maybe that's our ticket? I don't know, I'm just a law-abiding citizen. Well, actually, about that...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "263": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-301", + "lineInfo": { + "dialogue": "I'm right behind ya!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "264": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-302", + "lineInfo": { + "dialogue": "Uhh...... Tha-", + "line": { + "current": 6, + "max": 20 + }, + "npc": "Ava" + } + } + ] + }, + "265": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-303", + "lineInfo": { + "dialogue": "Hey, so... I'm here with soldier to show you a little something!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-304", + "lineInfo": { + "dialogue": "It's actually quite revolutionary! It's a Growth Accelerator!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "266": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-305", + "lineInfo": { + "dialogue": "That piqued your interest, right? Well get ready!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-306", + "lineInfo": { + "dialogue": "It's better outdoors, but I believe I can make it work here.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-307", + "lineInfo": { + "dialogue": "I'll set it up. Just sit back and watch!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "267": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-308", + "lineInfo": { + "dialogue": "There.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "268": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-309", + "lineInfo": { + "dialogue": "What happened, soldier?! I'll... I'll boot the machine up again!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "269": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-310", + "lineInfo": { + "dialogue": "Actually... I do.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Ava" + } + } + ] + }, + "270": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-311", + "lineInfo": { + "dialogue": "Every. Single. One of you.", + "line": { + "current": 15, + "max": 20 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-312", + "lineInfo": { + "dialogue": "I come up to you with an incredible breakthrough, and you can't even see past my feathers.", + "line": { + "current": 16, + "max": 20 + }, + "npc": "Ava" + } + } + ] + }, + "271": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-313", + "lineInfo": { + "dialogue": "And then, here to take me, I suppose. Right?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-314", + "lineInfo": { + "dialogue": "Y'know, I noticed you always were one to follow orders. Well, what you're lookin' for is on top of the plant.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "272": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-315", + "lineInfo": { + "dialogue": "It's all over. My life's over...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "273": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-316", + "lineInfo": { + "dialogue": "So... Maxie, was it? Right?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "274": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-317", + "lineInfo": { + "dialogue": "Alright, show me what you found...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "275": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-318", + "lineInfo": { + "dialogue": "Wait, you don't have anything yet? There must be some stuff lying around!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "276": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-319", + "lineInfo": { + "dialogue": "I lead, you follow!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "277": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-320", + "lineInfo": { + "dialogue": "I'll just wear whatever works best for us.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "278": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-321", + "lineInfo": { + "dialogue": "We don't have that much time you know!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "279": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-322", + "lineInfo": { + "dialogue": "You lead, I follow!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "280": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-323", + "lineInfo": { + "dialogue": "There we go!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "281": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-324", + "lineInfo": { + "dialogue": "Wait, where are you going?! ...Fine, I'll wait nearby, just come back quickly!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "282": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-325", + "lineInfo": { + "dialogue": "It's difficult to get an audience? Well, it's worth a try, right? Maybe they'll see me as a wealthy lad!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "283": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-326", + "lineInfo": { + "dialogue": "Leaving town? I'll stick around, just come back eventually, alright?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "284": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-327", + "lineInfo": { + "dialogue": "Efena... She's nicer than Chief, that's for sure...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "285": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-328", + "lineInfo": { + "dialogue": "You're leaving?! ...Understandable, actually. Just buy the damn thing yourself, I'll cover the cost.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "286": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-329", + "lineInfo": { + "dialogue": "I'll try my best, soldier!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "287": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-330", + "lineInfo": { + "dialogue": "No no no don't go in first, please wait up!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "288": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-331", + "lineInfo": { + "dialogue": "I can't do this by myself, soldier!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "289": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-332", + "lineInfo": { + "dialogue": "Or... Just leave, I guess? Nevermind?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "290": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-333", + "lineInfo": { + "dialogue": "Hurry! It's really close by!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "291": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-334", + "lineInfo": { + "dialogue": "Oh, you don't have anything. Have you checked the nearby roo ms?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "292": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-335", + "lineInfo": { + "dialogue": "Hey, I bet whoever's in charge will be impressed with my fancy clothes AND that letter.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "293": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-336", + "lineInfo": { + "dialogue": "Hey, come back!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "294": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-337", + "lineInfo": { + "dialogue": "Do you think it'd work with that Mechanic outfit? Well, I don't think that matters anymore!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "295": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-338", + "lineInfo": { + "dialogue": "Huh, you're leaving through here? I just wonder why t hey never fixed this hole, it's been here for too long! Well, I'll head back to town.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "296": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-339", + "lineInfo": { + "dialogue": "Y'know, that is a pretty lookin' place! However, it also happens not to be the right direction!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "297": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-340", + "lineInfo": { + "dialogue": "Hold on a minute!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "298": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-341", + "lineInfo": { + "dialogue": "Alright, ya got this!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "299": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-342", + "lineInfo": { + "dialogue": "I have no idea how this audience thing works, but I could try to get people to notice me!", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Ava" + } + } + ] + }, + "300": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-343", + "lineInfo": { + "dialogue": "I'll be around the town center if ya got any information!", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Ava" + } + } + ] + }, + "301": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-344", + "lineInfo": { + "dialogue": "I was thinking they'd see me as a potential investor, but with that letter there's nothin' to worry about.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "302": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-345", + "lineInfo": { + "dialogue": "I get that often, yeah. Green isn't really associated with money for me.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-346", + "lineInfo": { + "dialogue": "I enjoy nature and all, right? Well, I present to you...", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-347", + "lineInfo": { + "dialogue": "The Growth Accelerator!!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "303": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-348", + "lineInfo": { + "dialogue": "As you should be! Let me quickly set the machine up.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ava" + } + } + ] + }, + "304": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-349", + "lineInfo": { + "dialogue": "Ah, isn't it beautiful...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "305": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-350", + "lineInfo": { + "dialogue": "Nothing? It's fine, just keep looking!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "306": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-351", + "lineInfo": { + "dialogue": "An audience is booked, and you didn't even give me the chance to show my cool armour!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "307": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-352", + "lineInfo": { + "dialogue": "I screwed up with my people, then with the humans, then...", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Ava" + } + } + ] + }, + "308": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-353", + "lineInfo": { + "dialogue": "Go, soldier. You're not done with my mess.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "309": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-354", + "lineInfo": { + "dialogue": "...Wow.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "310": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-355", + "lineInfo": { + "dialogue": "So you did come back! Hang tight!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "311": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-356", + "lineInfo": { + "dialogue": "Haha!... Wait, that's not it. Urgh.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-357", + "lineInfo": { + "dialogue": "Hey, I'll just give that to you. Though, you probably don't know how to use it, heh!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-358", + "lineInfo": { + "dialogue": "Looks like we got another shot. I still have some water left.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "312": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-359", + "lineInfo": { + "dialogue": "Alright, I'm trusting you.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-360", + "lineInfo": { + "dialogue": "So this was the one! Alright, great!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-361", + "lineInfo": { + "dialogue": "Nicely done. I'm not exactly done here personally, though.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "313": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-362", + "lineInfo": { + "dialogue": "I wonder what the other sides would've done...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "314": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-363", + "lineInfo": { + "dialogue": "...why yes come to me I probably have a lot of money by the looks of my outfit!... Would that work?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "315": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-364", + "lineInfo": { + "dialogue": "You ARE coming back... Right??", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "316": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-365", + "lineInfo": { + "dialogue": "Soon you'll be able to cut down this mess. So go ahead, ''soldier''. Do your thing.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "317": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-366", + "lineInfo": { + "dialogue": "Why'd you leave me like that? I still need you, y'know!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-367", + "lineInfo": { + "dialogue": "Well, it's fine. The way to operate the machine is simple!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-368", + "lineInfo": { + "dialogue": "You just have to swiftly press buttons! That's the simplest way I can explain it.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-369", + "lineInfo": { + "dialogue": "Since you seem in a hurry, let's get this over with. Tell me when to start, I'll give you the remote.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ava" + } + } + ] + }, + "318": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-370", + "lineInfo": { + "dialogue": "It's... Quite hard to move around with that outfit, actually.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "319": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-371", + "lineInfo": { + "dialogue": "I'll just... Hang around town. What do people do exactly? 'guess I'l l figure it out.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "320": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-372", + "lineInfo": { + "dialogue": "Oh, you're already leaving, just like that? Well, meet me back at the Avos Chief hut!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "321": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-373", + "lineInfo": { + "dialogue": "Or... Just leave, I guess? See ya later??", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "322": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-374", + "lineInfo": { + "dialogue": "Oh, you're already leaving, just like that? Well, meet me back near the Corkus receptionist! You're missing out on this though... Oh well!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "323": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-375", + "lineInfo": { + "dialogue": "'t would've been too good to be true, right?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "324": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-376", + "lineInfo": { + "dialogue": "Leaving so soon? We didn't even get started! Oh well, see ya' later. I'll wait for you.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "325": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-377", + "lineInfo": { + "dialogue": "Left it is then. Let's hope we get it right this time.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-378", + "lineInfo": { + "dialogue": "Second time's the charm.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ava" + } + } + ] + }, + "326": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-379", + "lineInfo": { + "dialogue": "What? Wait, no, come back! Urgh, I'll go back to the town center, we'll, uh, come back, alright?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ava" + } + } + ] + }, + "327": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-380", + "lineInfo": { + "dialogue": "And you booked an audience for tomorrow morning?! How did you...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "328": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-381", + "lineInfo": { + "dialogue": "That's fine, I'm sure you just have to show her your resolve or something.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Ava" + } + } + ] + }, + "329": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-382", + "lineInfo": { + "dialogue": "Wait up, you're too fast!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "330": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-383", + "lineInfo": { + "dialogue": "Thanks! I'll try not to disappoint you.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Ava" + } + } + ] + }, + "331": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-384", + "lineInfo": { + "dialogue": "Thank you! soldier, let's get going!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Ava" + } + } + ] + }, + "332": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-385", + "lineInfo": { + "dialogue": "This is all... Very hard to believe.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "333": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-386", + "lineInfo": { + "dialogue": "Hey, don't leave already! Oh well, I'll be waiting here, pick a good outfit for me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "334": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-387", + "lineInfo": { + "dialogue": "It's... Apparently really hard? Oh... Well, that's not helpful. Maybe we can still give it a go?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "335": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-388", + "lineInfo": { + "dialogue": "I wonder how that place works... How are they transforming powders like that?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "336": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-389", + "lineInfo": { + "dialogue": "No matter how hard, we should definitely try that out. I mean, have you seen that armor?!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "337": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-390", + "lineInfo": { + "dialogue": "Oh, you're already leaving, just like that? Well, meet me back near the Corkus receptionist!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "338": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-391", + "lineInfo": { + "dialogue": "Left... Right... Center... 'up to you.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "339": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-392", + "lineInfo": { + "dialogue": "The dude's insane, don't think you can figure out the right one. Just pick a random side.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "340": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-393", + "lineInfo": { + "dialogue": "Look, we're both lost. Just choose one side.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "341": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-394", + "lineInfo": { + "dialogue": "Oh, you're already leaving, just like that? Well, meet me back at the Avos Chief hut! You're missing out on this though... Oh well!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "342": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-395", + "lineInfo": { + "dialogue": "You wanna go again? Sure!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ava" + } + }, + { + "fileOverride": "thefeathersflypart2-ava-396", + "lineInfo": { + "dialogue": "Good luck! I'm countin' on ya!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ava" + } + } + ] + }, + "343": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-397", + "lineInfo": { + "dialogue": "Oh, uh... Thanks? It is? I think??", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Ava" + } + } + ] + }, + "344": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-398", + "lineInfo": { + "dialogue": "Huh? Not ready? Come back soon, I need ya!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "345": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-399", + "lineInfo": { + "dialogue": "I sure hope this works... for you.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "346": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-400", + "lineInfo": { + "dialogue": "Oh-uh, it's fine! Don't worry!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "347": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-401", + "lineInfo": { + "dialogue": "No no no- look, it's fine. We can get it right this time, ok?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Ava" + } + } + ] + }, + "348": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-ava-402", + "lineInfo": { + "dialogue": "Wait, you can't just pick this cool outfit for me and just- Whatever, just come back alright?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ava" + } + } + ] + }, + "349": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-nodise-9", + "lineInfo": { + "dialogue": "Oh, greetings. I seldom see humans around these parts.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Nodise" + } + }, + { + "fileOverride": "thefeathersflypart2-nodise-10", + "lineInfo": { + "dialogue": "I'm from Corkus. You ought to have heard of it at one point.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Nodise" + } + }, + { + "fileOverride": "thefeathersflypart2-sybil-13", + "lineInfo": { + "dialogue": "Of course they've heard of it, like, come on!", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Sybil" + } + }, + { + "fileOverride": "thefeathersflypart2-nodise-11", + "lineInfo": { + "dialogue": "We are part of the Council. Maybe we'll meet there someday.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Nodise" + } + }, + { + "fileOverride": "thefeathersflypart2-nodise-12", + "lineInfo": { + "dialogue": "So, what brings you here? I'm personally researching about the region.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Nodise" + } + }, + { + "fileOverride": "thefeathersflypart2-sybil-14", + "lineInfo": { + "dialogue": "And I'm starting to get bored to death!", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Sybil" + } + }, + { + "fileOverride": "thefeathersflypart2-nodise-13", + "lineInfo": { + "dialogue": "sigh You seem to be a soldier of sorts. From Wynn, right? I've never been there.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Nodise" + } + }, + { + "fileOverride": "thefeathersflypart2-sybil-15", + "lineInfo": { + "dialogue": "Uh, Nodise? There's a literal WAR over there? Of course we've never been there?!", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Sybil" + } + }, + { + "fileOverride": "thefeathersflypart2-nodise-14", + "lineInfo": { + "dialogue": "You know, Sybil, sometimes you just have to go and take a leap of faith.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Nodise" + } + }, + { + "fileOverride": "thefeathersflypart2-nodise-15", + "lineInfo": { + "dialogue": "Hey, soldier, no point bothering you any longer. I have some research to do.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Nodise" + } + } + ] + }, + "350": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-sybil-16", + "lineInfo": { + "dialogue": "You think I can't go to Wynn?! Well, maybe I'll go alone!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sybil" + } + } + ] + }, + "351": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-nodise-16", + "lineInfo": { + "dialogue": "Oh... It's you. I wasn't expecting that. Remember the Corkian Council?", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Nodise" + } + } + ] + }, + "352": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-nodise-17", + "lineInfo": { + "dialogue": "There are tensions, sure, but we're doing fine back home.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Nodise" + } + } + ] + }, + "353": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-90", + "lineInfo": { + "dialogue": "Oh... It's you. 'figured you'd pop here one day.", + "line": { + "current": 1, + "max": 17 + }, + "npc": "Efena" + } + } + ] + }, + "354": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-91", + "lineInfo": { + "dialogue": "There's no way she made that power armour by herself. I feel like I heard 'bout something like that at one point...", + "line": { + "current": 10, + "max": 17 + }, + "npc": "Efena" + } + } + ] + }, + "355": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-92", + "lineInfo": { + "dialogue": "That great azure clothing she had... I'm sure you stole it. Am I right?", + "line": { + "current": 10, + "max": 17 + }, + "npc": "Efena" + } + } + ] + }, + "356": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-93", + "lineInfo": { + "dialogue": "That mechanic outfit Ava had... You stole it, didn't you? No point in lyin'.", + "line": { + "current": 10, + "max": 17 + }, + "npc": "Efena" + } + } + ] + }, + "357": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-94", + "lineInfo": { + "dialogue": "That one rich outfit she wore last time... This was your doing, right? As in, you totally stole it, right?!", + "line": { + "current": 10, + "max": 17 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-95", + "lineInfo": { + "dialogue": "Gahah! I knew it! You actually stole from some friends of mine, y'know?!", + "line": { + "current": 11, + "max": 17 + }, + "npc": "Efena" + } + } + ] + }, + "358": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-96", + "lineInfo": { + "dialogue": "Oh, so you got it from that room downstairs?! ...damn. You might've stolen some of my friend's clothes, then!", + "line": { + "current": 11, + "max": 17 + }, + "npc": "Efena" + } + }, + { + "fileOverride": "thefeathersflypart2-efena-97", + "lineInfo": { + "dialogue": "'wonder what these guys are doin' now. 'kinda left Corkus... I don't like goodbyes and all, so I ignored that.", + "line": { + "current": 12, + "max": 17 + }, + "npc": "Efena" + } + } + ] + }, + "359": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-98", + "lineInfo": { + "dialogue": "Oh, uh, well, bye?!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Efena" + } + } + ] + }, + "360": { + "dialogues": [ + { + "fileOverride": "thefeathersflypart2-efena-99", + "lineInfo": { + "dialogue": "See ya!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Efena" + } + } + ] + } + } + }, + "The Hero of Gavel": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "heroofgavel-excitedfan-1", + "lineInfo": { + "dialogue": "Hmm... I might have just enough for one tier 3... Why are you standing there?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Excited Fan" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "heroofgavel-excitedfan-2", + "lineInfo": { + "dialogue": "I've been saving up for this scavenger hunt all year, there's no way I can lose!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Excited Fan" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "heroofgavel-scavengerhuntcollector-1", + "lineInfo": { + "dialogue": "Tickets for sale! You! Would you like to join the great Siegfried Scavenger Hunt?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Scavenger Hunt Collector" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "heroofgavel-scavengerhuntcollector-2", + "lineInfo": { + "dialogue": "You're back! Let me see your items.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Scavenger Hunt Collector" + } + }, + { + "fileOverride": "heroofgavel-scavengerhuntcollector-3", + "lineInfo": { + "dialogue": "This... Wow, all of them? Let me take a look at these...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Scavenger Hunt Collector" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "heroofgavel-announcer-1", + "lineInfo": { + "dialogue": "Welcome, welcome everyone! We're only waiting on a few more people before we begin.", + "line": { + "current": 1, + "max": 14 + }, + "npc": "Announcer" + } + }, + { + "fileOverride": "heroofgavel-announcer-2", + "lineInfo": { + "dialogue": "Ah, there we go! I believe we're all set now.", + "line": { + "current": 2, + "max": 14 + }, + "npc": "Announcer" + } + }, + { + "fileOverride": "heroofgavel-announcer-3", + "lineInfo": { + "dialogue": "Welcome everyone, to the monthly SIEGFRIED FESTIVAL SCAVENGER HUNT!", + "line": { + "current": 3, + "max": 14 + }, + "npc": "Announcer" + } + }, + { + "fileOverride": "heroofgavel-announcer-4", + "lineInfo": { + "dialogue": "Today, we are once again celebrating the heroic deeds of Siegfried!", + "line": { + "current": 4, + "max": 14 + }, + "npc": "Announcer" + } + }, + { + "fileOverride": "heroofgavel-announcer-5", + "lineInfo": { + "dialogue": "All of you, my fellow gavellians, have adventured far and wide to gather rare items across the province.", + "line": { + "current": 5, + "max": 14 + }, + "npc": "Announcer" + } + }, + { + "fileOverride": "heroofgavel-announcer-6", + "lineInfo": { + "dialogue": "And yet, I cannot announce the winner...", + "line": { + "current": 6, + "max": 14 + }, + "npc": "Announcer" + } + }, + { + "fileOverride": "heroofgavel-announcer-7", + "lineInfo": { + "dialogue": "BECAUSE SIEGFRIED WILL!", + "line": { + "current": 7, + "max": 14 + }, + "npc": "Announcer" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "6": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfriedfan-1", + "lineInfo": { + "dialogue": "SIEEEGGFRIEED!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Siegfried Fan" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "7": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-1", + "lineInfo": { + "dialogue": "Hello, Citizens of Gavel!", + "line": { + "current": 8, + "max": 14 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-2", + "lineInfo": { + "dialogue": "Thank you all for participating in this fantastic scavenger hunt around Gavel!", + "line": { + "current": 9, + "max": 14 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-3", + "lineInfo": { + "dialogue": "The winner of this hunt will have the privilege of going on a once-in-a-lifetime, fully authentic, adventure with me!", + "line": { + "current": 10, + "max": 14 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-4", + "lineInfo": { + "dialogue": "I shall announce the winner! ", + "line": { + "current": 11, + "max": 14 + }, + "npc": "Siegfried: Now, without further ado" + } + }, + { + "fileOverride": "heroofgavel-siegfried-5", + "lineInfo": { + "dialogue": "And the winner is...", + "line": { + "current": 12, + "max": 14 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-6", + "lineInfo": { + "dialogue": "Soldier!! Congratulations!", + "line": { + "current": 13, + "max": 14 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-7", + "lineInfo": { + "dialogue": "Soldier, please head to the backstage area to my right for your adventure. Thank you everyone!!", + "line": { + "current": 14, + "max": 14 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "8": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-8", + "lineInfo": { + "dialogue": "Welcome Soldier! Congratulations on winning the scavenger hunt!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-9", + "lineInfo": { + "dialogue": "Today, you'll be going with me on one of my glorious adventures.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-10", + "lineInfo": { + "dialogue": "And to get there, we'll ride in the great Siegfried Airship!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-11", + "lineInfo": { + "dialogue": "It's up at the airship docks - I'll teleport us there!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-12", + "lineInfo": { + "dialogue": "ⓜⓐⓖⓘⓒⓐⓛ ⓜⓐⓖⓘⓒⓚⓨ ⓜⓐⓖⓘⓒ ⓜⓐⓖⓘⓒⓢⓟⓔⓛⓛ, Teleport!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-13", + "lineInfo": { + "dialogue": "TELEPORT!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "9": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-14", + "lineInfo": { + "dialogue": "Here, follow me onto the airship!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "10": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-15", + "lineInfo": { + "dialogue": "And away we go!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "11": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-16", + "lineInfo": { + "dialogue": "Impressed by my piloting skills? Dodging these islands isn't a challenge at all for the mighty Siegfried!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-17", + "lineInfo": { + "dialogue": "I rode an airship much like this one when I saved Ahmsord from the dragon.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-18", + "lineInfo": { + "dialogue": "Right now we're heading to a cave on the far east of the region.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-19", + "lineInfo": { + "dialogue": "We'll have to navigate its treacherous corridors and defeat terrible beasts to get to the treasure at the end.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-20", + "lineInfo": { + "dialogue": "Why don't you go get my map from the upper level of the airship, and we'll get ready for our adventure.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "12": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-21", + "lineInfo": { + "dialogue": "How much lon- Oh, you brought the map! Thanks.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-22", + "lineInfo": { + "dialogue": "We'll need to use this map to navigate the dangerous cave we're going to.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-23", + "lineInfo": { + "dialogue": "How did I get this? Well-er- I always prepare before my adventures!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-24", + "lineInfo": { + "dialogue": "Anyway, we're about to land now - be careful not to fall off!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "13": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-25", + "lineInfo": { + "dialogue": "Here we are, the great Cave of Treasure-Hoarding Evil Creatures!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-26", + "lineInfo": { + "dialogue": "Speak to me when you're fully prepared for this dangerous adventure.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "14": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-27", + "lineInfo": { + "dialogue": "This cave is exceedingly dangerous, so make sure to follow my instructions.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-28", + "lineInfo": { + "dialogue": "I've got decades of experience bravely adventuring in these caves, so I know what I'm doing.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-29", + "lineInfo": { + "dialogue": "Onwards! Soldier, stay right behind me!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "15": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-30", + "lineInfo": { + "dialogue": "You sure took your time getting here! No matter.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "16": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-31", + "lineInfo": { + "dialogue": "I adventure in caves such as these often to get rid of the evil beasts dwelling within.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-32", + "lineInfo": { + "dialogue": "If it wasn't for me defeating them before they could even--", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-33", + "lineInfo": { + "dialogue": "Woah, stop! This might look like a harmless decoration, but it's a trap!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "17": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-35", + "lineInfo": { + "dialogue": "Aha! I'll protect you from the guardian, you deal with the rat!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "18": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-36", + "lineInfo": { + "dialogue": "Take THIS!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "19": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-37", + "lineInfo": { + "dialogue": "Ow- I mean, hah! That was easier than swatting a fly for the mighty Siegfried!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "20": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-38", + "lineInfo": { + "dialogue": "Seems like we're done here! That must have been a very difficult fight for you.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-39", + "lineInfo": { + "dialogue": "The caves I adventure in are filled with terrifying beasts similar to those.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-40", + "lineInfo": { + "dialogue": "WAIT! Don't move, that boulder is about to fall!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-41", + "lineInfo": { + "dialogue": "Wow, that was close! Of course, I saw that coming and had no risk at all.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-42", + "lineInfo": { + "dialogue": "You might say that we can't go further, as it's blocking our way. But I can fix that! ", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "21": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-43", + "lineInfo": { + "dialogue": "And no more boulder! Only one as powerful as I can do that.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-44", + "lineInfo": { + "dialogue": "All we must do now is cross a perilous bridge over the Endless Chasm.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-45", + "lineInfo": { + "dialogue": "Aa, why did- Woah, careful! It looks like the bridge fell.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-46", + "lineInfo": { + "dialogue": "But this is not such an obstacle as you might think, for I can, uh, jump over this chasm!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-47", + "lineInfo": { + "dialogue": "Here I go!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "22": { + "dialogues": [ + { + "fileOverride": "heroofgavel-villager-1", + "lineInfo": { + "dialogue": "WAIT!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "23": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-48", + "lineInfo": { + "dialogue": "The spell--", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-49", + "lineInfo": { + "dialogue": "AAAAAAAAAAAAAH!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "24": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-50", + "lineInfo": { + "dialogue": "AAAAAAGH!!", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Siegfried" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-51", + "lineInfo": { + "dialogue": "You found something? Ok. I’ll... follow you then.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "26": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-52", + "lineInfo": { + "dialogue": "WHAT WAS THAT SOUND?! A- are you sure we should go into there?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "27": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-53", + "lineInfo": { + "dialogue": "MY ARM! IT HIT MY ARM!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-54", + "lineInfo": { + "dialogue": "... I think I can manage.. OW!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "28": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-55", + "lineInfo": { + "dialogue": "You.. You got us out of there!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-56", + "lineInfo": { + "dialogue": "I didn't think we'd ever find a way out of there...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-57", + "lineInfo": { + "dialogue": "... Well, I guess we should keep going. M- Maybe there's a way out?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "29": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-58", + "lineInfo": { + "dialogue": "L- Look! There's plants and light up ahead! A WAY OUT!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-59", + "lineInfo": { + "dialogue": "Come on, follow me!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-60", + "lineInfo": { + "dialogue": "AAAH!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-61", + "lineInfo": { + "dialogue": "W- What just happened?! I'm trapped in here!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-62", + "lineInfo": { + "dialogue": "... It's... some sort of trap. I can feel the ground heating up!!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "30": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-63", + "lineInfo": { + "dialogue": "T-that was terrifying... Y-you saved my life. Thank you, Soldier... I wasn't prepared for real danger like this.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "31": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-64", + "lineInfo": { + "dialogue": "...What? Houses, and a well? All the way down here?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-65", + "lineInfo": { + "dialogue": "It's... empty. And the houses sure don't look like anyone's lived here for.. centuries.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "32": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-68", + "lineInfo": { + "dialogue": "... Is this the food you found?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-69", + "lineInfo": { + "dialogue": "I guess it's... the best that could be found here. You say you cooked it yourself?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-70", + "lineInfo": { + "dialogue": "I'll give it a try, then. Doubt there's anything better around here.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-71", + "lineInfo": { + "dialogue": "These are... amazing!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-72", + "lineInfo": { + "dialogue": "Thank you, Soldier! I feel much better, I can head deeper as soon as you're ready.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "33": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-73", + "lineInfo": { + "dialogue": "... Was this a sandwich at some point?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-74", + "lineInfo": { + "dialogue": "It barely has any resemblance to one.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-75", + "lineInfo": { + "dialogue": "Well... I doubt there’s anything better around here. I- I’ll take it.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-76", + "lineInfo": { + "dialogue": "OW!! I think I broke my teeth! This is like eating stone!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-77", + "lineInfo": { + "dialogue": "... I th-ow-ink I’m ready to- ow- move on. Let’s get go-oow-ing.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "34": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-78", + "lineInfo": { + "dialogue": "You know... my name is actually Gurix.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-gurix-1", + "lineInfo": { + "dialogue": "Sounds extremely Corkian, I know. They made me use Siegfried because it sounds less foreign, I suppose.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-2", + "lineInfo": { + "dialogue": "AAAH! Get away!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-3", + "lineInfo": { + "dialogue": "OW! Soldier, I think this web is poisoned! Quick, get me out with one of your spells!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "35": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-4", + "lineInfo": { + "dialogue": "Thank you, Soldier. I'll.. I'll follow you from now on. Clearly you're more prepared than I am.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "36": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-5", + "lineInfo": { + "dialogue": "Soldier? I think that giant web there is being held up by the platforms on the walls.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-6", + "lineInfo": { + "dialogue": "I think... Maybe you can cut them down? I'll stay here, I think it's the safest place. I'll call for you if a spider webs me again.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "37": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-7", + "lineInfo": { + "dialogue": "You did it! The web fell!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-8", + "lineInfo": { + "dialogue": "Let's head onwards, I don't want to deal with any more spiders.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "38": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-9", + "lineInfo": { + "dialogue": "Hey, wait up! Thanks for saving me there.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "39": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-10", + "lineInfo": { + "dialogue": "Ok, I'll wait here. Tell me when to follow you again.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "40": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-11", + "lineInfo": { + "dialogue": "Hm.. I'll bet you an emerald these tiles are trapped.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-12", + "lineInfo": { + "dialogue": "What are these little green thingies? Soldier, try right-clicking one and see what happens.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "41": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-13", + "lineInfo": { + "dialogue": "Woah, I think the other tiles got activated when you disarmed that one!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "42": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-14", + "lineInfo": { + "dialogue": "I think that tile's disarmed! Let's head onwards!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "43": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-15", + "lineInfo": { + "dialogue": "Hmm.. I think I see how these work.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-16", + "lineInfo": { + "dialogue": "So if I use this button...", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-17", + "lineInfo": { + "dialogue": "It disarms the tile! Here, I'll disarm the next one!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-18", + "lineInfo": { + "dialogue": "And now this one!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-19", + "lineInfo": { + "dialogue": "AAH! That burns!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-20", + "lineInfo": { + "dialogue": "Well.. I think I see now. It's a bad idea to disarm one of the same type that you're standing on.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-21", + "lineInfo": { + "dialogue": "Well.. you try these out. Tell me when to follow you further.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "44": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-22", + "lineInfo": { + "dialogue": "Ok, lead the way. Tell me when to stop following.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "45": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-23", + "lineInfo": { + "dialogue": "... This temple is... Sort of fascinating, honestly.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-24", + "lineInfo": { + "dialogue": "It feels similar to the ruins back above, but... Better, uh...better preserved. Maybe those faded over the millenia?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-25", + "lineInfo": { + "dialogue": "... Hmm. Clearly there's a path further in that direction.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "46": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-26", + "lineInfo": { + "dialogue": "soldier, look! That could be a teleporter to the other side!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-27", + "lineInfo": { + "dialogue": "It's... surrounded by those tiles. I don't think I'll live if another hits me... Tell me when to follow you.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "47": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-28", + "lineInfo": { + "dialogue": "Soldier, I think I know what these are for! If we activate both at once, the teleporter might start up! I'll stay at one, and activate it as soon as you activate the other. ", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gurix" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-29", + "lineInfo": { + "dialogue": "I've activated mine, let's see if this works!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "49": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-30", + "lineInfo": { + "dialogue": "Hey, don't use the teleporter without me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "50": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-31", + "lineInfo": { + "dialogue": "Soldier, it worked!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-32", + "lineInfo": { + "dialogue": "I.. I honestly didn't think the teleporter would still work. The ancient villagers' magic must have been really powerful.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-33", + "lineInfo": { + "dialogue": ".. Let's keep going, then. I think I can see something up ahead.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "51": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-34", + "lineInfo": { + "dialogue": "Another town? Or another part of the same one? I'm not sure..", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-35", + "lineInfo": { + "dialogue": "This one even seems to have a forge and a tailor.. It was a full, proper village!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-36", + "lineInfo": { + "dialogue": "That.. is that sunlight? ", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-37", + "lineInfo": { + "dialogue": "Soldier, look! I can see the sky from here! M- maybe there's a way to get up!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-38", + "lineInfo": { + "dialogue": "I think.. what if we can use this geyser somehow? It looks dormant, but I feel like we can activate it again.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-39", + "lineInfo": { + "dialogue": "You take a look around, I'll be resting a little. I don't think I've ever walked this much in my life...", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "52": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-40", + "lineInfo": { + "dialogue": "Woah! The geyser's active!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-41", + "lineInfo": { + "dialogue": "W-Wait.. that'll be quite a long fall after we get launched up. Can you try making some safety equipment, like a parachute or some really soft boots?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "53": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-42", + "lineInfo": { + "dialogue": "You've already made something? Let me see.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-43", + "lineInfo": { + "dialogue": "This looks... usable? It's something, at least.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-44", + "lineInfo": { + "dialogue": "Probably the best we'll get down here. Are you sure you don't need anything for yourself? No? Okay.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-gurix-45", + "lineInfo": { + "dialogue": "I can't wait to see the look on their faces when we get back. We've just saved the legacy of Siegfried!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "54": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-46", + "lineInfo": { + "dialogue": "WOAH! The parachute worked!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gurix" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "55": { + "dialogues": [ + { + "fileOverride": "heroofgavel-beacon-1", + "lineInfo": { + "dialogue": "Teleport Activation Successful! Exit teleporter is now active.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Beacon" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "56": { + "dialogues": [ + { + "fileOverride": "heroofgavel-teleporter-1", + "lineInfo": { + "dialogue": "Teleport Successful!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Teleporter" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "57": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-79", + "lineInfo": { + "dialogue": "Hey, wait for me! Le- Let's work together here.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "58": { + "dialogues": [ + { + "fileOverride": "heroofgavel-gurix-47", + "lineInfo": { + "dialogue": "W-we made it? ...soldier, WE DID IT! WE'RE BACK! HAHAAA! I'M ALIVE!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-siegfried-80", + "lineInfo": { + "dialogue": "Hello there! It is I, Siegfried, and I just stopped the threat that was this cave!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-81", + "lineInfo": { + "dialogue": "Hah, that's a great costume you have there! Looks just like me!", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-gurix-48", + "lineInfo": { + "dialogue": "What? I- I've been REPLACED?!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Gurix" + } + }, + { + "fileOverride": "heroofgavel-siegfried-82", + "lineInfo": { + "dialogue": "Hah, don't mind that jokester over there. He does have an impressive costume though!", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-83", + "lineInfo": { + "dialogue": "Look over there! Those must be fireworks to celebrate my victory!", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-84", + "lineInfo": { + "dialogue": "Well, anyways! You had a really bad fall in that cave there. I carried you out myself, you must've had some wild hallucinations.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-85", + "lineInfo": { + "dialogue": "Even though it was your own mistake, I'll return you the emeralds you spent on the scavenger hunt.. and some more as compensation. That'll be.. [5 Liquified Emeralds]!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-86", + "lineInfo": { + "dialogue": "I must return to Ahmsord for the celebration now. Perhaps we will meet again at the next scavenger hunt!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Siegfried" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "59": { + "dialogues": [ + { + "fileOverride": "heroofgavel-siegfried-87", + "lineInfo": { + "dialogue": "Hello there, human! It is I, Siegfried! You must have just missed how I expertly ended the threat of this monster-ridden cave!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-88", + "lineInfo": { + "dialogue": "Soldier, I'm glad to see you managed to get out alive. That must have been quite a fall into the chasm.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-siegfried-89", + "lineInfo": { + "dialogue": "Of course, I got out easily using my spells and great knowledge of caves! Well, I must be off now. Maybe we may meet again if you win the next scavenger hunt!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Siegfried" + } + }, + { + "fileOverride": "heroofgavel-announcer-8", + "lineInfo": { + "dialogue": "As compensation for your unfortunate accident, Siegfried will return you the emeralds spent on purchasing scavenger hunt items, and some more as compensation.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "???" + } + }, + { + "fileOverride": "heroofgavel-announcer-9", + "lineInfo": { + "dialogue": "That should amount to... 5 Liquid Emeralds. We apologize for the difficulties you encountered during your adventure with Siegfried, The Hero of Gavel! ", + "line": { + "current": 5, + "max": 5 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "60": { + "dialogues": [ + { + "fileOverride": "heroofgavel-scavengerhuntcollector-4", + "lineInfo": { + "dialogue": "Come back next month, maybe you'll win again! Who knows what glorious adventure Siegfried will take the next winner on?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Scavenger Hunt Collector" + } + } + ] + } + } + }, + "The Hidden City": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "thehiddencity-narder-1", + "lineInfo": { + "dialogue": "A human? Agh! Don't worry about getting me medical attention, I've got this under control...", + "line": { + "current": 1, + "max": 14 + }, + "npc": "Narder" + } + }, + { + "fileOverride": "thehiddencity-narder-2", + "lineInfo": { + "dialogue": "It's a broken leg. I'm already getting it treated, but I have a job to do elsewise- and a time sensitive one, too.", + "line": { + "current": 2, + "max": 14 + }, + "npc": "Narder" + } + }, + { + "fileOverride": "thehiddencity-narder-3", + "lineInfo": { + "dialogue": "I won't be able to do it like this, but it doesn't matter if I'm the one who carries it out. It just needs to be done.", + "line": { + "current": 3, + "max": 14 + }, + "npc": "Narder" + } + }, + { + "fileOverride": "thehiddencity-narder-4", + "lineInfo": { + "dialogue": "I don't work for villagers, I was hired to come here by other humans... there's something you must keep secret.", + "line": { + "current": 4, + "max": 14 + }, + "npc": "Narder" + } + }, + { + "fileOverride": "thehiddencity-narder-5", + "lineInfo": { + "dialogue": "Swear it! If you're going to take the job, and my payment for it, you must be silent about it!", + "line": { + "current": 5, + "max": 14 + }, + "npc": "Narder" + } + }, + { + "fileOverride": "thehiddencity-narder-6", + "lineInfo": { + "dialogue": "Do you agree?", + "line": { + "current": 6, + "max": 14 + }, + "npc": "Narder" + } + }, + { + "fileOverride": "thehiddencity-narder-7", + "lineInfo": { + "dialogue": "Good. To business then.", + "line": { + "current": 7, + "max": 14 + }, + "npc": "Narder" + } + }, + { + "fileOverride": "thehiddencity-narder-8", + "lineInfo": { + "dialogue": "There is a hidden town in the canyon here. Up in the mountains- it was built and run by humans.", + "line": { + "current": 8, + "max": 14 + }, + "npc": "Narder" + } + }, + { + "fileOverride": "thehiddencity-narder-9", + "lineInfo": { + "dialogue": "Now, the villagers have very strict rules about humans living in their lands, and it's VERY illegal.", + "line": { + "current": 9, + "max": 14 + }, + "npc": "Narder" + } + }, + { + "fileOverride": "thehiddencity-narder-10", + "lineInfo": { + "dialogue": "I was contacted by the Mayor because he is aware that the town may have become... compromised.", + "line": { + "current": 10, + "max": 14 + }, + "npc": "Narder" + } + }, + { + "fileOverride": "thehiddencity-narder-11", + "lineInfo": { + "dialogue": "The job is to figure out who and why, of course. To let this slip could collapse the treatise between our races.", + "line": { + "current": 11, + "max": 14 + }, + "npc": "Narder" + } + }, + { + "fileOverride": "thehiddencity-narder-12", + "lineInfo": { + "dialogue": "I've never been to the city in the mountains, but I was given instructions. Here, I'll write down the location in your book.", + "line": { + "current": 12, + "max": 14 + }, + "npc": "Narder" + } + }, + { + "fileOverride": "thehiddencity-narder-13", + "lineInfo": { + "dialogue": "Be aware though, they won't let you in unless the area is safe. They can't risk villagers wandering in.", + "line": { + "current": 13, + "max": 14 + }, + "npc": "Narder" + } + }, + { + "fileOverride": "thehiddencity-narder-14", + "lineInfo": { + "dialogue": "Good luck.", + "line": { + "current": 14, + "max": 14 + }, + "npc": "Narder" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "thehiddencity-curiousvillager-1", + "lineInfo": { + "dialogue": "Hm? Oh, a fellow adventurer, I see! I'm sorry, but this discovery is mine to make. There's something strange about that door...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Curious Villager" + } + }, + { + "fileOverride": "thehiddencity-curiousvillager-2", + "lineInfo": { + "dialogue": "Deadly gasses? Nonsense! As you can see the two of us are breathing just fine.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Curious Villager" + } + }, + { + "fileOverride": "thehiddencity-curiousvillager-3", + "lineInfo": { + "dialogue": "You want me to leave? Why, so that you can have all of the glory for yourself? Ha, not a chance!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Curious Villager" + } + }, + { + "fileOverride": "thehiddencity-curiousvillager-4", + "lineInfo": { + "dialogue": "The only way I'm leaving is if I can get that door open or if the whole cave starts crashing down on us.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Curious Villager" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "thehiddencity-curiousvillager-5", + "lineInfo": { + "dialogue": "Gweh! I just had to go running my mouth about the cave collapsing! I'm out- if you have any sense you'll leave too!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Curious Villager" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "thehiddencity-eltomguard-1", + "lineInfo": { + "dialogue": "Thank you for getting rid of that curious villager! We thought he'd never leave.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Eltom Guard" + } + }, + { + "fileOverride": "thehiddencity-eltomguard-2", + "lineInfo": { + "dialogue": "I've never seen you before. Who gave you access to the town?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Eltom Guard" + } + }, + { + "fileOverride": "thehiddencity-eltomguard-3", + "lineInfo": { + "dialogue": "You're here in place of the detective the mayor hired?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Eltom Guard" + } + }, + { + "fileOverride": "thehiddencity-eltomguard-4", + "lineInfo": { + "dialogue": "Normally, I wouldn't believe that, but come in. We're desperate.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Eltom Guard" + } + }, + { + "fileOverride": "thehiddencity-eltomguard-5", + "lineInfo": { + "dialogue": "If you ever need to leave and get back, I can simply open the way.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Eltom Guard" + } + }, + { + "fileOverride": "thehiddencity-eltomguard-6", + "lineInfo": { + "dialogue": "You probably should be going now. Our mayor can get impatient.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Eltom Guard" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "thehiddencity-eoric-1", + "lineInfo": { + "dialogue": "What are you doing here? I'm writing an important letter, this better be worth my time.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Eoric" + } + }, + { + "fileOverride": "thehiddencity-eoric-2", + "lineInfo": { + "dialogue": "What? Narder sent you? Why'd he send a Ragni soldier?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Eoric" + } + }, + { + "fileOverride": "thehiddencity-eoric-3", + "lineInfo": { + "dialogue": "I didn't think the army were authorized to know about Eltom, especially Fruma recruits.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Eoric" + } + }, + { + "fileOverride": "thehiddencity-eoric-4", + "lineInfo": { + "dialogue": "Anyway, Eltom's secrecy is in great danger. We have found evidence of a traitor.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Eoric" + } + }, + { + "fileOverride": "thehiddencity-eoric-5", + "lineInfo": { + "dialogue": "We have locked down all of the exits. No one leaves or enters without my permission.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Eoric" + } + }, + { + "fileOverride": "thehiddencity-eoric-6", + "lineInfo": { + "dialogue": "We need a detective to sniff out the traitor and expose him.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Eoric" + } + }, + { + "fileOverride": "thehiddencity-eoric-7", + "lineInfo": { + "dialogue": "Start by asking the citizens around here about anything suspicious they've seen.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Eoric" + } + }, + { + "fileOverride": "thehiddencity-eoric-8", + "lineInfo": { + "dialogue": "When you find the culprit, remember to leave him alive! The guards will take care of him.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Eoric" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "thehiddencity-reder-1", + "lineInfo": { + "dialogue": "Sorry, detective, but I haven't seen anything suspicious. In fact, I haven't even left my house for the last week.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Reder" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "thehiddencity-nichye-1", + "lineInfo": { + "dialogue": "The only suspicious thing I've seen is a hooded man walking around. There's not many people in Eltom, so it's weird.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Nichye" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "thehiddencity-sybeth-1", + "lineInfo": { + "dialogue": "If you want to find out anything, the best person to ask is Lumilda. She's in her bakery, next to the Scroll Shop.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sybeth" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "thehiddencity-lumilda-1", + "lineInfo": { + "dialogue": "Ah, detective! What brings you to the sweet Lumilda's Bakery?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Lumilda" + } + }, + { + "fileOverride": "thehiddencity-lumilda-2", + "lineInfo": { + "dialogue": "Hm, yes, there is a weird person coming through.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Lumilda" + } + }, + { + "fileOverride": "thehiddencity-lumilda-3", + "lineInfo": { + "dialogue": "It's a hooded man. Never seen the face. A trouble maker, if you ask me!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Lumilda" + } + }, + { + "fileOverride": "thehiddencity-lumilda-4", + "lineInfo": { + "dialogue": "He's been here a few times, usually writing things on a piece of paper. That man's a real mystery. No one even knows where he lives.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Lumilda" + } + }, + { + "fileOverride": "thehiddencity-lumilda-5", + "lineInfo": { + "dialogue": "One time my grandson couldn't resist and followed the man. Last thing he saw was the man leaving through the Eastern Exit.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Lumilda" + } + }, + { + "fileOverride": "thehiddencity-lumilda-6", + "lineInfo": { + "dialogue": "Ain't that a place to start, sweetheart?", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Lumilda" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "thehiddencity-ardulf-1", + "lineInfo": { + "dialogue": "Ah, you must be the detective. None of those half-witted Eltomites could figure it out.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "thehiddencity-ardulf-2", + "lineInfo": { + "dialogue": "I guess the grook is out of the pen then.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "thehiddencity-ardulf-3", + "lineInfo": { + "dialogue": "This town shouldn't even be here. Humans aren't allowed to settle in Gavel.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "thehiddencity-ardulf-4", + "lineInfo": { + "dialogue": "These humans couldn't be bothered to fight their own war, so they hid an entire city here.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "thehiddencity-ardulf-5", + "lineInfo": { + "dialogue": "Traitor? I'm no traitor. I'm just looking to carry out the law where it needs to be carried out. Nothing personal, yes?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "???" + } + }, + { + "fileOverride": "thehiddencity-ardulf-6", + "lineInfo": { + "dialogue": "Maybe they'll actually use “Ardulf” instead of saying “freak” once they've seen the good I can do for them!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ardulf" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "thehiddencity-hilan-1", + "lineInfo": { + "dialogue": "H-h-help!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Hilan" + } + }, + { + "fileOverride": "thehiddencity-hilan-2", + "lineInfo": { + "dialogue": "Hooded man... Climbed tower...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Hilan" + } + }, + { + "fileOverride": "thehiddencity-hilan-3", + "lineInfo": { + "dialogue": "Demanded to use a ship... I refused...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Hilan" + } + }, + { + "fileOverride": "thehiddencity-hilan-4", + "lineInfo": { + "dialogue": "He beat me up... And left...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Hilan" + } + }, + { + "fileOverride": "thehiddencity-hilan-5", + "lineInfo": { + "dialogue": "Hurry!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Hilan" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "thehiddencity-ardulf-7", + "lineInfo": { + "dialogue": "What are you doing here? Why are you protecting this illegal town?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ardulf" + } + }, + { + "fileOverride": "thehiddencity-ardulf-8", + "lineInfo": { + "dialogue": "The Villagers will not be happy about Eltom. This could seriously harm the Gavel-Wynn relationship.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ardulf" + } + }, + { + "fileOverride": "thehiddencity-ardulf-9", + "lineInfo": { + "dialogue": "You can't stop me. You wouldn't murder one of your own, would you?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ardulf" + } + }, + { + "fileOverride": "thehiddencity-ardulf-10", + "lineInfo": { + "dialogue": "I will tell the mayor of Thesead all about this place, and claim my reward for doing so. I will be rich and if you want to stop me you'll have to do it yourself.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ardulf" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "thehiddencity-theseadsmayor-1", + "lineInfo": { + "dialogue": "What brings a human to my office?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Thesead's Mayor" + } + }, + { + "fileOverride": "thehiddencity-theseadsmayor-2", + "lineInfo": { + "dialogue": "A letter? Oh, that. The one about Eltom? Don't look so worried. The secret is safe with me.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Thesead's Mayor" + } + }, + { + "fileOverride": "thehiddencity-theseadsmayor-3", + "lineInfo": { + "dialogue": "Yes, I know about Eltom. After all, its mayor is my ex-husband.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Thesead's Mayor" + } + }, + { + "fileOverride": "thehiddencity-theseadsmayor-4", + "lineInfo": { + "dialogue": "It may seem odd, a love between a villager and a human. I know, but our race did not stop us from being in love.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Thesead's Mayor" + } + }, + { + "fileOverride": "thehiddencity-theseadsmayor-5", + "lineInfo": { + "dialogue": "The person who left the letter about Eltom is our son, Ardulf. As soon as Eoric found out about our child, he panicked and left me.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Thesead's Mayor" + } + }, + { + "fileOverride": "thehiddencity-theseadsmayor-6", + "lineInfo": { + "dialogue": "Ardulf will never be accepted as a half breed... Still, I hope he's OK.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Thesead's Mayor" + } + }, + { + "fileOverride": "thehiddencity-theseadsmayor-7", + "lineInfo": { + "dialogue": "Huh, oh yeah, one more thing. The switch under the table... go on, press it!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Thesead's Mayor" + } + } + ] + } + } + }, + "The House of Twain": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "houseoftwain-twendle-1", + "lineInfo": { + "dialogue": "Oh, hey you there! Are you heading down this road? You know it's a dead end, right?", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Twendle" + } + }, + { + "fileOverride": "houseoftwain-twendle-2", + "lineInfo": { + "dialogue": "It leads to an old mansion, that has fallen into decay.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Twendle" + } + }, + { + "fileOverride": "houseoftwain-twendle-3", + "lineInfo": { + "dialogue": "That mansion is the house of my ancestor; Dwendle Twain. It was a house of incredible heritage and magical powers, Dwendle himself was adopted into it.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Twendle" + } + }, + { + "fileOverride": "houseoftwain-twendle-4", + "lineInfo": { + "dialogue": "Marius Twain was the leader of the mansion; they fought against evil spirits, I think. The history of the house is not well-known, outside of a novel.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Twendle" + } + }, + { + "fileOverride": "houseoftwain-twendle-5", + "lineInfo": { + "dialogue": "I want to know the history of the mansion and uncover its secrets, but every time I get close, dark beings prevent me from entering.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Twendle" + } + }, + { + "fileOverride": "houseoftwain-twendle-6", + "lineInfo": { + "dialogue": "I am no soldier, and I don't think I will ever uncover the truth without your help. I can greatly reward you for your help.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Twendle" + } + }, + { + "fileOverride": "houseoftwain-twendle-7", + "lineInfo": { + "dialogue": "My ancestor left our family a large amount of emeralds. Beware though, traveller, the mansion's secrets are incredibly difficult to uncover and the monsters are powerful.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Twendle" + } + }, + { + "fileOverride": "houseoftwain-twendle-8", + "lineInfo": { + "dialogue": "Unravel the secrets of the mansion and help me uncover the secrets of my heritage. Bring me [1 Twain Journal].", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Twendle" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "houseoftwain-twendle-9", + "lineInfo": { + "dialogue": "[9/10] Twendle:This book has been hidden within the depths of the mansion and is protected by far more than puzzles or walls." + } + }, + { + "fileOverride": "houseoftwain-twendle-10", + "lineInfo": { + "dialogue": "I believe the spirits that now haunt the mansion will do anything to protect the book. I'm sure they think it's their own, and the secrets it hides.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Twendle" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "houseoftwain-twendle-11", + "lineInfo": { + "dialogue": "I guess I put my faith in the right person. My history lies within these pages, and I don't intend to keep them secret. I shall make them public.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Twendle" + } + }, + { + "fileOverride": "houseoftwain-twendle-12", + "lineInfo": { + "dialogue": "Thank you traveller. As promised, here is your reward.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Twendle" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "houseoftwain-twendle-13", + "lineInfo": { + "dialogue": "I know uncovering the truth is never easy, but keep trying, please bring me [1 Twain Journal].", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Twendle" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "houseoftwain-twendle-14", + "lineInfo": { + "dialogue": "Thank you again for all of your help!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Twendle" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "houseoftwain-twendle-15", + "lineInfo": { + "dialogue": "Greetings traveller! I am on a personal quest, but I'm not sure you're any use to me. I doubt you can even enter the mansion. Come back when you are level 49.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Twendle" + } + } + ] + } + } + }, + "The Lost": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "thelost-dejol-1", + "lineInfo": { + "dialogue": "Ho, traveller! I could use your help with something, but I need someone more familiar with the canyon. Come back when you're level 85.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dejol" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "thelost-yuge-1", + "lineInfo": { + "dialogue": "Oh! How on earth did you get up here? Well, I hope you're having fun. I'm far to scared to go anywhere near the edge...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Yuge" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "thelost-gordon-1", + "lineInfo": { + "dialogue": "Hey there! I'm in a bit of a pickle right now, but I'm not too sure you can help me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gordon" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "thelost-dejol-2", + "lineInfo": { + "dialogue": "Ho, traveller! I need the help of a true explorer. I can see it in your eyes, you are an adventurer like me!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Dejol" + } + }, + { + "fileOverride": "thelost-dejol-3", + "lineInfo": { + "dialogue": "While you are here, adventurer, I could use your help with something. I have gotten myself into a small predicament in my travels.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Dejol" + } + }, + { + "fileOverride": "thelost-dejol-4", + "lineInfo": { + "dialogue": "You see, me and three others were on a grand expedition to explore the entire canyon! Unfortunately, we ran into a slight problem...", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Dejol" + } + }, + { + "fileOverride": "thelost-dejol-5", + "lineInfo": { + "dialogue": "The Canyon of the Lost is clearly called that for a reason, within hours, we had lost each other!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Dejol" + } + }, + { + "fileOverride": "thelost-dejol-6", + "lineInfo": { + "dialogue": "Luckily, we were prepared for it. We each carried a flag so if we ever got lost, we can raise it to be found.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Dejol" + } + }, + { + "fileOverride": "thelost-dejol-7", + "lineInfo": { + "dialogue": "They were all meant to come to my blue flag, but they must all be trapped in some predicament! The canyon can be a dangerous place.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Dejol" + } + }, + { + "fileOverride": "thelost-dejol-8", + "lineInfo": { + "dialogue": "I can see all three red flags from here, but it would be terrible if I went looking and they came back to this flag to find me gone!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Dejol" + } + }, + { + "fileOverride": "thelost-dejol-9", + "lineInfo": { + "dialogue": "Do you think you could go and check if they're all alright? I'm sure I can find some reward for you if you help!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Dejol" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "thelost-dejol-10", + "lineInfo": { + "dialogue": "Ho, adventurer! Have you found the missing members of my crew? If they're not by their red flag, they can't have gotten too far from it!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dejol" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "thelost-fetu-1", + "lineInfo": { + "dialogue": "...AAAAAAAAAAAAAAAAAAAAHHHHHHHH!!!!!!! HEEEEEEEEEEEEELLLLLLLLPPPPPP!!!!! THERE ARE BIIIIIIIIIIIRDS!!!!!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Fetu" + }, + "settings": { + "falloff": 50, + "position": { + "x": 448.0, + "y": 87.0, + "z": -4498.0 + } + } + }, + { + "fileOverride": "thelost-fetu-2", + "lineInfo": { + "dialogue": "HUMAN! YOU, DOWN THERE! HELP ME! I was just trying to find my way back to my friends...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Fetu" + }, + "settings": { + "falloff": 50, + "position": { + "x": 448.0, + "y": 87.0, + "z": -4498.0 + } + } + }, + { + "fileOverride": "thelost-fetu-3", + "lineInfo": { + "dialogue": "When this GIANT BIRD KIDNAPPED ME and threw me in her nest! I think she thinks I'm one of her chicks!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Fetu" + }, + "settings": { + "falloff": 50, + "position": { + "x": 448.0, + "y": 87.0, + "z": -4498.0 + } + } + }, + { + "fileOverride": "thelost-fetu-4", + "lineInfo": { + "dialogue": "The Canyon's movements must've dislodged her eggs from her nest-", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Fetu" + }, + "settings": { + "falloff": 50, + "position": { + "x": 448.0, + "y": 87.0, + "z": -4498.0 + } + } + }, + { + "fileOverride": "thelost-fetu-5", + "lineInfo": { + "dialogue": "O-OH GROOK, SHE’S PECKING ME! FIND HER EGGS NEARBY AND THROW THEM UP HERE... QUICKLY!!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Fetu" + }, + "settings": { + "falloff": 50, + "position": { + "x": 448.0, + "y": 87.0, + "z": -4498.0 + } + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "thelost-fetu-6", + "lineInfo": { + "dialogue": "YOU HAVE THE EGGS?? GOOD! THROW THEM UP HERE, PLEASE!!!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Fetu" + }, + "settings": { + "falloff": 50, + "position": { + "x": 448.0, + "y": 87.0, + "z": -4498.0 + } + } + }, + { + "fileOverride": "thelost-fetu-7", + "lineInfo": { + "dialogue": "W-WOAH, STAY BACK, BIRD! I have a... uhh... I DON’T HAVE A WEAPON, HUMAN! PLEASE HURRY UP!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Fetu" + }, + "settings": { + "falloff": 50, + "position": { + "x": 448.0, + "y": 87.0, + "z": -4498.0 + } + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "thelost-fetu-8", + "lineInfo": { + "dialogue": "YES YES YES!!! THANK YOU, HUMAN! Oh, thank grook, this bird’s leaving me alone now... It worked!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Fetu" + }, + "settings": { + "falloff": 50, + "position": { + "x": 448.0, + "y": 87.0, + "z": -4498.0 + } + } + }, + { + "fileOverride": "thelost-fetu-9", + "lineInfo": { + "dialogue": "I’ll head back to Dejol, now... And I’m never going to go near another bird again!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Fetu" + }, + "settings": { + "falloff": 50, + "position": { + "x": 448.0, + "y": 87.0, + "z": -4498.0 + } + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "thelost-yuge-2", + "lineInfo": { + "dialogue": "A-ah, hello. I’m g-guessing Dejol sent you?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Yuge" + } + }, + { + "fileOverride": "thelost-yuge-3", + "lineInfo": { + "dialogue": "W-Well, I was just walking through the c-canyon, when... the ground suddenly rose up underneath me and launched me all the way up here!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Yuge" + } + }, + { + "fileOverride": "thelost-yuge-4", + "lineInfo": { + "dialogue": "N-Now, I’m... embarrassed to admit it, but I’m REALLY afraid of heights, s-so I don’t know what to do... Do you have any ideas?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Yuge" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "thelost-yuge-5", + "lineInfo": { + "dialogue": "N-Now, I’m... embarrassed to admit it, but I’m REALLY afraid of heights, s-so I don’t know what to do... Do you have any ideas?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Yuge" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "thelost-yuge-6", + "lineInfo": { + "dialogue": "AAAAAAAAHHHHH!!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Yuge" + }, + "settings": { + "position": { + "x": 355.0, + "y": 139.0, + "z": -4478.0 + } + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "thelost-yuge-7", + "lineInfo": { + "dialogue": "Y-YOU JERK!! I COULD HAVE DIED!!! WHAT THE HELL IS WRONG WITH YOU???", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Yuge" + } + }, + { + "fileOverride": "thelost-yuge-8", + "lineInfo": { + "dialogue": "P-Please NEVER do that again! That was the worst thing I’ve ever done in my entire life!!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Yuge" + } + }, + { + "fileOverride": "thelost-yuge-9", + "lineInfo": { + "dialogue": "...Ugh! I-I’m gonna head back to Dejol now. I hope I NEVER see you again!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Yuge" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "thelost-gordon-2", + "lineInfo": { + "dialogue": "Hey there! I’m in a bit of a pickle right now, you see. This house I took refuge in, well... The original owner must have left for a reason!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Gordon" + } + }, + { + "fileOverride": "thelost-gordon-3", + "lineInfo": { + "dialogue": "It’s so sad... So many people are constantly displaced by the canyon’s movements destroying their homes every year. I remember hearing a story once, it was about–", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Gordon" + } + }, + { + "fileOverride": "thelost-gordon-4", + "lineInfo": { + "dialogue": "Wait... Hey, do you hear that?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Gordon" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "thelost-gordon-5", + "lineInfo": { + "dialogue": "Hey! You alright down there?! Oh, lord, how are we going to get out of this? I'm up here, come find me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gordon" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "thelost-gordon-6", + "lineInfo": { + "dialogue": "Oh... Well, this isn’t good! The house just went and collapsed on us!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Gordon" + } + }, + { + "fileOverride": "thelost-gordon-7", + "lineInfo": { + "dialogue": "See what I was talking about human? The canyon isn’t really a good place to be. Now we’re stuck in this pit!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Gordon" + } + }, + { + "fileOverride": "thelost-gordon-8", + "lineInfo": { + "dialogue": "Although... there is a crafting table over there... Hey, maybe you could collect some supplies and make something to get us out of here?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Gordon" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "thelost-gordon-9", + "lineInfo": { + "dialogue": "Heh, that’s certainly one way to get out of here! You made an entire catapult, huh?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gordon" + } + }, + { + "fileOverride": "thelost-gordon-10", + "lineInfo": { + "dialogue": "So we’re just gonna launch ourselves out of this pit? You got it!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gordon" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "thelost-gordon-11", + "lineInfo": { + "dialogue": "Alrighty, I’ll be right behind you!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gordon" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "thelost-gordon-12", + "lineInfo": { + "dialogue": "Hey, no time to dawdle, right? Head on up!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gordon" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "thelost-gordon-13", + "lineInfo": { + "dialogue": "Woah... That's certainly a lot of fun! Anyways, come talk to me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gordon" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "thelost-gordon-14", + "lineInfo": { + "dialogue": "Me first? Okay, I’ll do just that!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Gordon" + } + }, + { + "fileOverride": "thelost-gordon-15", + "lineInfo": { + "dialogue": "Alright, here I... GOOO!!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Gordon" + } + }, + { + "fileOverride": "thelost-gordon-16", + "lineInfo": { + "dialogue": "Hey, I made it!! You should come up as well, now.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Gordon" + }, + "settings": { + "position": { + "x": -12724.0, + "y": 33.0, + "z": 1928.0 + } + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "thelost-gordon-17", + "lineInfo": { + "dialogue": "Hey, come over here!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gordon" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "thelost-gordon-18", + "lineInfo": { + "dialogue": "Thanks for the help, friend! I couldn’t have done it without you!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Gordon" + } + }, + { + "fileOverride": "thelost-gordon-19", + "lineInfo": { + "dialogue": "I’m gonna go find my friend Dejol now— wait, you know who he is??", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Gordon" + } + }, + { + "fileOverride": "thelost-gordon-20", + "lineInfo": { + "dialogue": "Oh... Wow, guess it’s a small world, huh? That’s funny! Maybe I’ll see you down there later, then!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Gordon" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "thelost-gordon-21", + "lineInfo": { + "dialogue": "Oh, hey there! It’s good to see you again. Thanks again for helping me get away from that house– though, I feel kind of bad for the owner...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gordon" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "thelost-fetu-10", + "lineInfo": { + "dialogue": "Hey, human! Thanks for helping me with the birds. I managed to sneak down once you gave me the eggs, so... All said and done, now!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Fetu" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "thelost-dejol-11", + "lineInfo": { + "dialogue": "Ho, adventurer! Looks like you had some adventures helping out my crew!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Dejol" + } + }, + { + "fileOverride": "thelost-dejol-12", + "lineInfo": { + "dialogue": "Thank goodness they all found their way back unharmed. Mostly. Yuge's pride seems to have taken a hit.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Dejol" + } + }, + { + "fileOverride": "thelost-dejol-13", + "lineInfo": { + "dialogue": "Anyway, we ought to get back to our exploration - and we'll stick closer together this time!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Dejol" + } + }, + { + "fileOverride": "thelost-dejol-14", + "lineInfo": { + "dialogue": "You were a huge help, though so please take this as a reward!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Dejol" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "thelost-yuge-10", + "lineInfo": { + "dialogue": "EEK! A-Are you back to throw me off another cliff, human?? Keep your distance, p-please!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Yuge" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "thelost-dejol-15", + "lineInfo": { + "dialogue": "Ho, adventurer! Thanks for your help again!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dejol" + } + } + ] + } + } + }, + "The Maiden Tower": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "themaidentower-sherk-1", + "lineInfo": { + "dialogue": "Ah! What are you doing in my swamp?! Don't you know that Ogres live alone for a reason?", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-2", + "lineInfo": { + "dialogue": "Eh? You're from across the sea, a land called Win? You certainly don't look like a winner to me, ya small fry.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-3", + "lineInfo": { + "dialogue": "Fine then. Consider yourself lucky that I'm in a...mood. I'll talk with you instead of crackin' yer bones for my bread.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-4", + "lineInfo": { + "dialogue": "Ogres are tough. We're independent and solitary folks. You don't bother us or interfere with our life, we leave well enough alone.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-5", + "lineInfo": { + "dialogue": "That is, until it's time to find ourselves a partner. Then we'll turn over hell and highwater ta be together.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-6", + "lineInfo": { + "dialogue": "And...well, when it's two ogres getting together, it's simple. But... I passed by a tall tower, and heard a maiden's voice from inside...", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-7", + "lineInfo": { + "dialogue": "Ogres don't live in fairytale towers, or have a voice that could make flowers grow with its lovely lilt!", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-8", + "lineInfo": { + "dialogue": "I've been tryin' ta figure out how to approach this... I'm gettin' on in years, I need to find someone, and she's the girl.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-9", + "lineInfo": { + "dialogue": "If you can help me out, I'd be real grateful. I'm sure I've got somethin' that you'd like in exchange.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-10", + "lineInfo": { + "dialogue": "Follow the rocky-looking path to find the tower. I'll meet with you there- prepare to be a wingman for an ogre.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Sherk" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "themaidentower-sherk-11", + "lineInfo": { + "dialogue": "This is the place. She's up at the top... Remember, I won't stop 'til I meet her. Coming here means you're in for the long haul.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-maiden-1", + "lineInfo": { + "dialogue": "I hear a voice outside! Oh, who might it be, I wonder~", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Maiden" + }, + "settings": { + "position": { + "x": -1992.0, + "y": 92.0, + "z": -5298.0 + } + } + }, + { + "fileOverride": "themaidentower-sherk-12", + "lineInfo": { + "dialogue": "Here goes... Hello, fair lady of the tower! I am Sherk! I heard your voice on the road- and I must meet you myself! ...that's formal enough, right?", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-maiden-2", + "lineInfo": { + "dialogue": "Ohoho! An admirer? Such a lovely, rugged accent! However ...if you wish to meet me, I'd like to see your devotion, yes?", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Maiden" + }, + "settings": { + "position": { + "x": -1992.0, + "y": 92.0, + "z": -5298.0 + } + } + }, + { + "fileOverride": "themaidentower-sherk-13", + "lineInfo": { + "dialogue": "Woman, you have no idea what you're sayin' when you ask for devotion.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-maiden-3", + "lineInfo": { + "dialogue": "There is a lovely urn my father had before. He took it with him to the grave, and I do miss my dear father so.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Maiden" + }, + "settings": { + "position": { + "x": -1992.0, + "y": 92.0, + "z": -5298.0 + } + } + }, + { + "fileOverride": "themaidentower-maiden-4", + "lineInfo": { + "dialogue": "Retrieve the urn for me, so I can have a memento of him. Brave the crypts of Olux, behind the bank... And prove your devotion, dear suitor~", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Maiden" + }, + "settings": { + "position": { + "x": -1992.0, + "y": 92.0, + "z": -5298.0 + } + } + }, + { + "fileOverride": "themaidentower-sherk-14", + "lineInfo": { + "dialogue": "...I'll return! You'll get your urn, no doubt! ... ...and a lovely fine boot up my backside. I don't fancy a massacre for a piece of pottery, Win person.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-15", + "lineInfo": { + "dialogue": "I go into Olux, I'll get attacked. I get attacked, I attack back. They'll come after us... wouldn't want to present her with that. You get that urn for me, alright?", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Sherk" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "themaidentower-sherk-16", + "lineInfo": { + "dialogue": "And this is why I asked your help. As nice as blood spreads on toast, I have to reserve my sensibilities for the miss.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-17", + "lineInfo": { + "dialogue": "I've got you some compensation already, so don't worry about gettin' snubbed for credit. Thank you kindly for the help.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-18", + "lineInfo": { + "dialogue": "Just one last thing. I doubt she'll be expecting an ogre of all people to climb up her tower. I don't want her to get frightened away.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-19", + "lineInfo": { + "dialogue": "So, Win person. Care to temper her expectations before I arrive? Head up before me.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Sherk" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "themaidentower-maiden-5", + "lineInfo": { + "dialogue": "Ohoho... you're one of those Humans I've read about, aren't you? Did you truly intend to be my suitor, dear?~", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Maiden" + } + }, + { + "fileOverride": "themaidentower-sherk-20", + "lineInfo": { + "dialogue": "Not exactly, milady! I'm the one seeking your affections- Coming up the ladder. I know I may not be a fairytale husband, but-", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Sherk" + }, + "settings": { + "position": { + "x": -1995.0, + "y": 87.0, + "z": -5299.0 + } + } + }, + { + "fileOverride": "themaidentower-maiden-6", + "lineInfo": { + "dialogue": "Oh...my...goodness! A big, strong, strapping ogre!! Not a fairytale, my foot! And so polite, too... Oh, you'll make a perfect husband, heehee~", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Maiden" + } + }, + { + "fileOverride": "themaidentower-sherk-21", + "lineInfo": { + "dialogue": "...ehm. I. Ah.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-22", + "lineInfo": { + "dialogue": "Aren't your type supposed to be less... Ehm... Clefted? Grizzled? Pale?", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-maiden-7", + "lineInfo": { + "dialogue": "Oh, come here, Sherky-pie, give me a big kiss! And no need to worry, there's plenty more in store for my big hubby after that~", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Maiden" + } + }, + { + "fileOverride": "themaidentower-sherk-23", + "lineInfo": { + "dialogue": "Cor, lady! Even for an ogre you're layin' it on a bit thick! Aah, you see, ogres, and people like you, they have layers, right? And your first one is... Eh... ...rotten.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-24", + "lineInfo": { + "dialogue": "Now I'm sure you'll find a nice lad somewhere who'll take you for who you are, but until you find someone that has no standards, shove your creepy lips where I can't see 'em!!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-maiden-8", + "lineInfo": { + "dialogue": "...I...I g-guess he was rotten to the core, despite his...l-luscious exterior...but, you'll make me feel better, right, you s-studly human? Right?! RIGHT?!!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Maiden" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "themaidentower-sherk-25", + "lineInfo": { + "dialogue": "...what? Did you want an apology for my leavin' you there with her?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-26", + "lineInfo": { + "dialogue": "I already prayed salvation for your mortal soul, what more do you want?!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-27", + "lineInfo": { + "dialogue": "I'm just goin' ta be here with my new pet 'til I can find a nice ogre to settle down with instead.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Sherk" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "themaidentower-sherk-28", + "lineInfo": { + "dialogue": "Follow the rocky-looking path to find the tower. I'll meet with you there- prepare to be a wingman for an ogre.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sherk" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "themaidentower-sherk-29", + "lineInfo": { + "dialogue": "Get me that urn, Win person. If I go up there covered in guts, I have reason to believe she won't take it well?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sherk" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "themaidentower-sherk-30", + "lineInfo": { + "dialogue": "Ah! What are you doin' in my swamp?! Don't you know ogres prefer ta be alone? I'd squeeze your eyes for trespassing...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Sherk" + } + }, + { + "fileOverride": "themaidentower-sherk-31", + "lineInfo": { + "dialogue": "...but you're not even Level 51. So...this is the part where you run away. Get out of mah swamp!!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Sherk" + } + } + ] + } + } + }, + "The Mercenary": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "themercenary-mylo-1", + "lineInfo": { + "dialogue": "These are dark times, weary traveler! Too dark for you. Come back when you are at least level 30.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mylo" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "themercenary-mylo-2", + "lineInfo": { + "dialogue": "Your deeds bring me great relief! Thank you, my friend.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Mylo" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "themercenary-mylo-3", + "lineInfo": { + "dialogue": "These are dark times, weary traveler! Nemract is at its weakest!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Mylo" + } + }, + { + "fileOverride": "themercenary-mylo-4", + "lineInfo": { + "dialogue": "Our warriors have been massacred! We are completely defenceless!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Mylo" + } + }, + { + "fileOverride": "themercenary-mylo-5", + "lineInfo": { + "dialogue": "We once had a brave commander who lead us to victory, but I fear he has turned!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Mylo" + } + }, + { + "fileOverride": "themercenary-mylo-6", + "lineInfo": { + "dialogue": "He is the reason our warriors are dead! He led them into a trap, I'm sure of it!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Mylo" + } + }, + { + "fileOverride": "themercenary-mylo-7", + "lineInfo": { + "dialogue": "His name is Takan. He's been acting strange ever since his brother was sentenced to death by Admiral Amerigo.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Mylo" + } + }, + { + "fileOverride": "themercenary-mylo-8", + "lineInfo": { + "dialogue": "Sadly, I can't prove of his treachery. I desperately need your help! You must investigate further!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Mylo" + } + }, + { + "fileOverride": "themercenary-mylo-9", + "lineInfo": { + "dialogue": "Go talk to Admiral Amerigo in Almuj. Ask him about Takan, then ask him for reinforcements immediately!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Mylo" + } + }, + { + "fileOverride": "themercenary-mylo-10", + "lineInfo": { + "dialogue": "What!? You don't know how to reach Almuj? Just venture past Saint's Row and through the savannah!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Mylo" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "themercenary-amerigo-1", + "lineInfo": { + "dialogue": "I have no time for you, stranger! Almuj's army is in panic!", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-2", + "lineInfo": { + "dialogue": "You are here for Takan? In Bob's name, of course he's a traitor!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-3", + "lineInfo": { + "dialogue": "You came too late, he has already caused us much trouble!", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-4", + "lineInfo": { + "dialogue": "After leaving Nemract, he came to Almuj's barracks and led a surprise attack of bandits! The carnage!", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-5", + "lineInfo": { + "dialogue": "I was just about to lead the rest of my army to retaliate, but perhaps there is a better way.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-6", + "lineInfo": { + "dialogue": "Since it would seem that Nemract needs my army, I need you to take care of Takan. Who knows what he could be up to!", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-7", + "lineInfo": { + "dialogue": "However, the bandits that have taken over the barracks will be too strong for you! You must use stealth instead of force.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-8", + "lineInfo": { + "dialogue": "Go to the barracks in the corner of the desert and assassinate Commander Takan. Bring me his badge!", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-9", + "lineInfo": { + "dialogue": "There should be a way to sneak in from a hole blasted on the far west side of the barracks that I escaped from.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-10", + "lineInfo": { + "dialogue": "In fact, the trail of blood I left behind might lead you to him! You should be able to find him in the command room.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Amerigo" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "themercenary-takan-1", + "lineInfo": { + "dialogue": "The commanding officers are aristocrats, all of them! They deserve to suffer for their selfishness!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Takan" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "themercenary-takan-2", + "lineInfo": { + "dialogue": "Now that we have taken over their barracks, we can take over all of Wynn and make them suffer!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Takan" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "themercenary-takan-3", + "lineInfo": { + "dialogue": "Today is the dawn of a new era... GAAHHH!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Takan" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "themercenary-amerigo-11", + "lineInfo": { + "dialogue": "Stranger, report!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-12", + "lineInfo": { + "dialogue": "You... You did it?! That was rather fast, I must say!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-13", + "lineInfo": { + "dialogue": "You have done this city proud, stranger. Almuj stands for another day then.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-14", + "lineInfo": { + "dialogue": "Please take this small reward as a token of the city's appreciation... Hm...", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-15", + "lineInfo": { + "dialogue": "No, not a small reward. I will give you something that one such as yourself more than deserves.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-16", + "lineInfo": { + "dialogue": "This is not any mere piece of gear. This is spoken of in fantasies, in fables.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-17", + "lineInfo": { + "dialogue": "Such items have special abilities that are far beyond any of the normal magic powers you find on most things.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-18", + "lineInfo": { + "dialogue": "This one, in particular is only awarded in very certain cases, and can be considered a medal of honour. Be proud!", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Amerigo" + } + }, + { + "fileOverride": "themercenary-amerigo-19", + "lineInfo": { + "dialogue": "Now run along, I have to collect my own honorary badge for taking out Ex-Commander Takan.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Amerigo" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "themercenary-amerigo-20", + "lineInfo": { + "dialogue": "I have no time for you, stranger! Run along.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Amerigo" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "themercenary-amerigo-21", + "lineInfo": { + "dialogue": "I need you to assassinate Commander Takan! Hurry stranger!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Amerigo" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "themercenary-amerigo-22", + "lineInfo": { + "dialogue": "Keep that bracelet around! I am certain you will find it useful.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Amerigo" + } + } + ] + } + } + }, + "The Order of the Grook": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-seasum-1", + "lineInfo": { + "dialogue": "Ugh... I really, really, reeeeally don't want to go...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Seasum" + } + }, + { + "fileOverride": "orderofthegrook-seasum-2", + "lineInfo": { + "dialogue": "Hey, who are you?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Seasum" + } + }, + { + "fileOverride": "orderofthegrook-seasum-3", + "lineInfo": { + "dialogue": "Do you...not have any manners at all?! Just running into my parents' house like that! Jeez!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Seasum" + } + }, + { + "fileOverride": "orderofthegrook-seasum-4", + "lineInfo": { + "dialogue": "I oughta... Hm. well... maybe...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Seasum" + } + }, + { + "fileOverride": "orderofthegrook-seasum-5", + "lineInfo": { + "dialogue": "Oh, I know! Here, go into my room real fast, and grab the letter in there.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Seasum" + } + }, + { + "fileOverride": "orderofthegrook-seasum-6", + "lineInfo": { + "dialogue": "Bring it to me when you do, I wanna make sure it's the right one.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Seasum" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-seasum-7", + "lineInfo": { + "dialogue": "Yep, that's the right letter. I hope you like school!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Seasum" + } + }, + { + "fileOverride": "orderofthegrook-seasum-8", + "lineInfo": { + "dialogue": "My parents were super excited when that letter flew into my room, but magical school sounds so boring...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Seasum" + } + }, + { + "fileOverride": "orderofthegrook-seasum-9", + "lineInfo": { + "dialogue": "I don't even want to learn magic! I just want to write my stories and play games. You can go instead.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Seasum" + } + }, + { + "fileOverride": "orderofthegrook-seasum-10", + "lineInfo": { + "dialogue": "I know the picture on the letter is of me, but you can, um...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Seasum" + } + }, + { + "fileOverride": "orderofthegrook-seasum-11", + "lineInfo": { + "dialogue": "You can say you had a growth spurt! Uh, that should work, I think!", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Seasum" + } + }, + { + "fileOverride": "orderofthegrook-seasum-12", + "lineInfo": { + "dialogue": "Now go on, you should get out before my parents see you. I don't want them to find out I gave that letter away...", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Seasum" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-boatcaptain-1", + "lineInfo": { + "dialogue": "Hey! What are you doing all the way over here? This dock's broken.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Boat Captain" + } + }, + { + "fileOverride": "orderofthegrook-boatcaptain-2", + "lineInfo": { + "dialogue": "Oh, a student, you say. Aren't you a little old to be learning fundamental magical knowledge?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Boat Captain" + } + }, + { + "fileOverride": "orderofthegrook-boatcaptain-3", + "lineInfo": { + "dialogue": "Well, if I could see your invitation letter, then?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Boat Captain" + } + }, + { + "fileOverride": "orderofthegrook-boatcaptain-4", + "lineInfo": { + "dialogue": "...hm. This...wow, you really look quite different than the picture. Did you get a new haircut?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Boat Captain" + } + }, + { + "fileOverride": "orderofthegrook-boatcaptain-5", + "lineInfo": { + "dialogue": "Well, no judging from me! Keep walking to the end of the dock. Have faith!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Boat Captain" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-boatcaptain-6", + "lineInfo": { + "dialogue": "Alright everyone. Ready for a magical experience?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Boat Captain" + } + }, + { + "fileOverride": "orderofthegrook-boatcaptain-7", + "lineInfo": { + "dialogue": "We're headed to the Nexus. You've been told where to go. If you've forgotten, ask your fellow students!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Boat Captain" + } + }, + { + "fileOverride": "orderofthegrook-boatcaptain-8", + "lineInfo": { + "dialogue": "If you ever need to come back here, just walk out onto the dock again. Good luck, now!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Boat Captain" + }, + "settings": { + "followPlayer": true + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-mamui-1", + "lineInfo": { + "dialogue": "Psst. Are you a student at Grookwarts?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Mamui" + } + }, + { + "fileOverride": "orderofthegrook-mamui-2", + "lineInfo": { + "dialogue": "This is the way in. Do you see that weird looking dirt wall?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Mamui" + } + }, + { + "fileOverride": "orderofthegrook-mamui-3", + "lineInfo": { + "dialogue": "Just run straight through. Don't tell any non-wizard folks, though.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Mamui" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-student-1", + "lineInfo": { + "dialogue": "Through the wall, right? I hope my uniform doesn't get dirty...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Student" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-cidre-1", + "lineInfo": { + "dialogue": "Hello, new students! Over here!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Cidre" + } + }, + { + "fileOverride": "orderofthegrook-cidre-2", + "lineInfo": { + "dialogue": "Welcome to the island of Grookwarts! I will be guiding and helping all the new students.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Cidre" + } + }, + { + "fileOverride": "orderofthegrook-cidre-3", + "lineInfo": { + "dialogue": "So all of you will be getting two vouchers each, and with them you will need to buy one wand, and a book or tome.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Cidre" + } + }, + { + "fileOverride": "orderofthegrook-cidre-4", + "lineInfo": { + "dialogue": "You can find everything here around the docks. Choosing your materials is very important, so buy the ones that speak to you!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Cidre" + } + }, + { + "fileOverride": "orderofthegrook-cidre-5", + "lineInfo": { + "dialogue": "When you're done, meet with Miss Una at the front gates!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Cidre" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-una-1", + "lineInfo": { + "dialogue": "Alrighty, fledgeling Grooks!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Una" + } + }, + { + "fileOverride": "orderofthegrook-una-2", + "lineInfo": { + "dialogue": "Seems like you all have your materials in order. You are now free to enter Grookwarts and begin your lessons.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Una" + } + }, + { + "fileOverride": "orderofthegrook-una-3", + "lineInfo": { + "dialogue": "The door is just behind me. Walk on in!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Una" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-student-2", + "lineInfo": { + "dialogue": "Hush, hush! The speech will be soon!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Student" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-student-3", + "lineInfo": { + "dialogue": "Hurry, take a seat! The banquet will be starting any second now!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Student" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "11": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-headmaster-1", + "lineInfo": { + "dialogue": "Magical children of Wynn and Gavel alike... We welcome you here, to our fair academy.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "???" + }, + "settings": { + "followPlayer": true + } + }, + { + "fileOverride": "orderofthegrook-student-4", + "lineInfo": { + "dialogue": "Oh lordy, the headmaster! I didn't even see him come in!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Student" + } + }, + { + "fileOverride": "orderofthegrook-student-5", + "lineInfo": { + "dialogue": "Uhm... I don't see him at all, actually...", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Student" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-2", + "lineInfo": { + "dialogue": "Well, I should hope you can see me now, all of you. Oh, what a splendid turnout this year!", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Headmaster" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-3", + "lineInfo": { + "dialogue": "Apologies, I simply can't resist a bit of theatrics. But now, it is time to listen and learn, fledgeling Grooks.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Headmaster" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-4", + "lineInfo": { + "dialogue": "We knowledged mages and scholars, the Order of the Grook, are pleased to see each of you here. Whether you be a young mind aching with curiosity...", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Headmaster" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-5", + "lineInfo": { + "dialogue": "...or an old hat looking to refine their knowledge, all seeking to learn magic are welcomed here. We expect great things of you.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Headmaster" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-6", + "lineInfo": { + "dialogue": "Now, to business. You will write your schedules for the semester. Look down on your paper and write in what classes you wish to participate in.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Headmaster" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-7", + "lineInfo": { + "dialogue": "Elemental Magic, Practical Magic, Magical Creatures, and Types of Magic.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Headmaster: You will need to choose four classes, one from each category. The categories are" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-8", + "lineInfo": { + "dialogue": "The schedule book is at the end of the table. Worry not, there is no limit on class size. If you wish to take it, you may take it.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Headmaster" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-headmaster-9", + "lineInfo": { + "dialogue": "Just fill in what subject you want to take and our guides will lead you to your classes.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Headmaster" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-headmaster-10", + "lineInfo": { + "dialogue": "The element of nature and physicality. Now, choose a Practical Magic lesson.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Headmaster" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-headmaster-11", + "lineInfo": { + "dialogue": "A true wizard after my own heart, seeking wisdom! Good choice. Now, choose a Practical Magic lesson.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Headmaster" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-headmaster-12", + "lineInfo": { + "dialogue": "The element of freedom and high spirits. Now, choose a Practical Magic lesson.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Headmaster" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-headmaster-13", + "lineInfo": { + "dialogue": "The element of bravery and resolve. Now, choose a Practical Magic lesson.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Headmaster" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-headmaster-14", + "lineInfo": { + "dialogue": "The element of destruction and force. Now, choose a Practical Magic lesson.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Headmaster" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-headmaster-15", + "lineInfo": { + "dialogue": "Effects and materials are intertwined in function, but each has applications independent of one another. Now, choose a Magical Creatures class.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Headmaster" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-headmaster-16", + "lineInfo": { + "dialogue": "Artificing is a very useful tool for the burgeoning magic user! I'm fond of it, myself. Now, choose a Magical Creatures class.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Headmaster" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-headmaster-17", + "lineInfo": { + "dialogue": "Ah, yes... as well-liked as that class is, those Wybels are more trouble than they're worth to keep sometimes. Lastly, you must choose a Magical Type class.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Headmaster" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-headmaster-18", + "lineInfo": { + "dialogue": "So you seek a broad spectrum of knowledge upon magicality! I wholeheartedly approve. Lastly, you must choose a Magical Type class.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Headmaster" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-headmaster-19", + "lineInfo": { + "dialogue": "What you take from the earth, you must give back. That's nature's way. Remember that as you learn. And with that, your schedule is completed.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Headmaster" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "23": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-headmaster-20", + "lineInfo": { + "dialogue": "To learn of the Corruption is a great risk. While admirable, remember your mind has limits. And with that, your schedule is completed.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Headmaster" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "24": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-ghostguide-1", + "lineInfo": { + "dialogue": "I'll be leading you to your classes, everyone! Talk to me when you're ready to go.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ghost Guide" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-ghostguide-2", + "lineInfo": { + "dialogue": "Alright, fledgeling Grooks! Your first class is starting in just a minute. Follow me!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ghost Guide" + } + }, + { + "fileOverride": "orderofthegrook-ghostguide-3", + "lineInfo": { + "dialogue": "Here are the elemental classes. Step on in. Your magical journey truly begins here!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ghost Guide" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-earthteacher-1", + "lineInfo": { + "dialogue": "Now, all of you. Sit. Listen.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-earthteacher-2", + "lineInfo": { + "dialogue": "Earth is an element of great power. Versatile and everpresent, nearly as the air.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-earthteacher-3", + "lineInfo": { + "dialogue": "Thunder provides force... Earth provides sheer power. The difference... Force chooses its own path. Power is force, directed.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-earthteacher-4", + "lineInfo": { + "dialogue": "Earth is also the earth itself. Stone, metal, trees and soil. Trees sway in the wind, but do not break. And the mountains do not crumble.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-earthteacher-5", + "lineInfo": { + "dialogue": "The Touroto, steeped in earthly magic, are nearly invincible to all but themselves. It is proof of the earth's strength.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-earthteacher-6", + "lineInfo": { + "dialogue": "The Doguns... They were masters of the earth, and fire alike, shaping caverns to their will... And now, nearly extinct. A terrible crime...", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-earthteacher-7", + "lineInfo": { + "dialogue": "But we shall honor them, and move forward. We shall strike the earth and claim it to be our own.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-earthteacher-8", + "lineInfo": { + "dialogue": "The tome directs the earth's force. Take it, and utilize it to shatter the stones I summon.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-earthteacher-9", + "lineInfo": { + "dialogue": "The darkest parts of the stone are weak points. Find them, and learn the power of the earth.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Teacher" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-earthteacher-10", + "lineInfo": { + "dialogue": "You know the earth's power, fledgeling. There is nothing more for you here. Go.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Teacher" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-earthteacher-11", + "lineInfo": { + "dialogue": "Remove the dark stone using your earth magic by right click the tome.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Teacher" + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-earthteacher-12", + "lineInfo": { + "dialogue": "Uh oh.... Time is up! Try again!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Teacher" + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-thunderteacher-1", + "lineInfo": { + "dialogue": "Hee hee, take your seats, take your seats, TAKE. YOUR. SEATS! A marvelous batch of eager students today!!", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-thunderteacher-2", + "lineInfo": { + "dialogue": "Almost as marvelous as the powers of Thunder! Energy! Pure, unfocused energy! Devastation, desolation, and industrialization all alike!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-thunderteacher-3", + "lineInfo": { + "dialogue": "Yes, yes! Thunder is technical and versatile! Unreliable to all those who don't know how to rely upon it, to those dextrous of hand and mind!", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-thunderteacher-4", + "lineInfo": { + "dialogue": "But woe, woe, Thunder is reviled, reviled! Pure energy has no morality! If used for good, yes yes, ho hum, but if used for evil, oh, burn the witch! Burn, burn! Evil, they say! Pah!!", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-thunderteacher-5", + "lineInfo": { + "dialogue": "All magicks are unaligned with silly concepts such as morality. They are pure chaos! But thunder, the element of energy and force, it seems ever so EASY to use for evil...", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-thunderteacher-6", + "lineInfo": { + "dialogue": "And evil has found it, found it! CORRUPTION!! DEMONS!! Forces anathema to us, but knowledged in the ways of force, and thus, thunder! So terrible, terrible, and thunder mages feared, feared...", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-thunderteacher-7", + "lineInfo": { + "dialogue": "And then, then! Joyous day, the Corkians arrived with their marvelous machines, and their electromagic! Thunder controlled, thunder tamed! The wonder of it all!", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-thunderteacher-8", + "lineInfo": { + "dialogue": "Electromagic makes handles crank, gears spin, metal move, gives sheer stones the power to THINK, and to PLAN! A Corkian original, and a splendid, splendid development reintroduced!", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-thunderteacher-9", + "lineInfo": { + "dialogue": "And so, you shall see for yourselves! Electromagic at work! You will control thunder and electricity, and make the machines bend to your will today, today, this shocking day!", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-thunderteacher-10", + "lineInfo": { + "dialogue": "The mechanism is behind me now! Come up, come up! See the power of thunder, shackled by our whims, won't you, soldier?!", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Teacher" + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-thunderteacher-11", + "lineInfo": { + "dialogue": "Whee hee hee! Thunder tamed, thunder shackled, and your magical wings unbound by such petty concepts, soldier! What a show!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-thunderteacher-12", + "lineInfo": { + "dialogue": "Expand your knowledge ever further, further! Your task is complete, complete, and your next awaits!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Teacher" + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-fireteacher-1", + "lineInfo": { + "dialogue": "Good to see a decent turnout this year for my class. Too dangerous, pah! You can take this just fine.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-2", + "lineInfo": { + "dialogue": "Anyways. The Fire element class. Many misunderstand just what fire stands for...but after today, you will leave with courage in your hearts.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-3", + "lineInfo": { + "dialogue": "Fire is, of course, related to physical fire, magma, etcetera. A burning torch is a source of fire magic, but that is not the only source of it.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-4", + "lineInfo": { + "dialogue": "Courage, bravery, and defensiveness are also tied to the fire element. Those stalwart and selfless, willing to sacrifice themselves for others.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-5", + "lineInfo": { + "dialogue": "In addition, although water is tied to healing magic, fire is tied to self-healing. Regenerative capacity, if you will. Many fire-based artifacts heal the user passively.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-6", + "lineInfo": { + "dialogue": "And while they are on the verge of extinction after the war in the Molten Heights, the Dogun species used to embody fire and earth magic alike. It is a shame what happened to them.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-7", + "lineInfo": { + "dialogue": "Unfortunately, it is also notable that corrupted creatures are often connected to fire, by nature of the corruption seeming to bring heat wherever it goes...", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-8", + "lineInfo": { + "dialogue": "But aside from that, onto our practical test. You will all come up to me, starting with soldier, and hone your courage. I will be lobbing fireballs at the wall behind you.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-9", + "lineInfo": { + "dialogue": "You will need to destroy the fireballs before they hit the wall, by attacking them directly. If you are hit, it counts as a failure! Now. Let's get started, soldier.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-10", + "lineInfo": { + "dialogue": "Are you ready? Summon your bravery.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Teacher" + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-fireteacher-11", + "lineInfo": { + "dialogue": "Ok Grook. I hope you're ready.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-12", + "lineInfo": { + "dialogue": "Lets start with 1 fireball.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-13", + "lineInfo": { + "dialogue": "Go!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Teacher" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-fireteacher-14", + "lineInfo": { + "dialogue": "Ok Grook. I hope you're ready for another test.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-15", + "lineInfo": { + "dialogue": "Now with... 3 fireballs!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-16", + "lineInfo": { + "dialogue": "Go!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Teacher" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-fireteacher-17", + "lineInfo": { + "dialogue": "Ok Grook. I hope you're ready for the final test!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-18", + "lineInfo": { + "dialogue": "With only 5 fireballs!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-19", + "lineInfo": { + "dialogue": "Go!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Teacher" + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-fireteacher-20", + "lineInfo": { + "dialogue": "Well done, fledgeling Grook! Continue to sharpen your instincts. You'll be a fine hero someday, I am sure of it.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-fireteacher-21", + "lineInfo": { + "dialogue": "Dismissed, soldier. You may leave. Now, do I have any volunteers for the next round...?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Teacher" + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-waterteacher-1", + "lineInfo": { + "dialogue": "Aah, wow! Everyone s-sure got here quick...", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-waterteacher-2", + "lineInfo": { + "dialogue": "Welcome, w-welcome. The Water element class is...certainly an interesting one, I-I'd hope... Because water doesn't j-just pertain to, well, w-water...", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-waterteacher-3", + "lineInfo": { + "dialogue": "It also is the element o-of knowledge, and pure magicality. Water i-is a sort of magical default, if you w-will. If it isn't focused on o-one element or another, magic ends up being water-based.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-waterteacher-4", + "lineInfo": { + "dialogue": "Learning a-about the water element and e-expanding your horizons can allow you to cast spells easier... C-control the flow of magic better, you see.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-waterteacher-5", + "lineInfo": { + "dialogue": "Most aquatic creatures are t-tied to water, though creatures that live in icy or snowy environments are, t-too...often, they are also connected to air, but not always.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-waterteacher-6", + "lineInfo": { + "dialogue": "In a-addition, many holy artifacts are enchanted with water magic... S-something about how it's a pure type of energy, I believe.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-waterteacher-7", + "lineInfo": { + "dialogue": "Lastly, healing abilities are b-bolstered by water magic. Just knowing magic well d-doesn't help, but actually having artifacts charged w-with water magic can increase healing capabilities.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-waterteacher-8", + "lineInfo": { + "dialogue": "N-now, for your test, I have...um, a...a test. Anyone who wants to try it f-first, just go up and start.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Teacher" + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-waterteacher-9", + "lineInfo": { + "dialogue": "Good w-work there! I h-hope I wasn't too boring with all my talking... You can go now.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-waterteacher-10", + "lineInfo": { + "dialogue": "N-now, who's n-next? And...i-is it really cold in here for all of you, too? Or, is it j-just me...?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Teacher" + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-airteacher-1", + "lineInfo": { + "dialogue": "Arright class, the sooner we start, the sooner we finish, so everyone, take your seats! You'll be getting up soon enough anyways!", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-airteacher-2", + "lineInfo": { + "dialogue": "Movin' right along. Air! You're breathin' it, we're surrounded by it, but ain'tcha know what it's all about yet, so pay attention.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-airteacher-3", + "lineInfo": { + "dialogue": "Air is the element of freedom! Speed, wind, and agility. If you're trained well in agility, attacks'll seem like they just phase through ya!", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-airteacher-4", + "lineInfo": { + "dialogue": "But over and above that, 'cause of air's ever-presence, it's one of the most versatile kinda of magic in existence. People use it in all sorts of ways.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-airteacher-5", + "lineInfo": { + "dialogue": "Over in Gavel, the Bantisu Air Monks have managed to extend their sight by the wind! They use this to help guide folks who get lost in that canyon over there.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-airteacher-6", + "lineInfo": { + "dialogue": "Many winged sorts a'creatures are tied to air, but not all of them. Some air magic users just straight-out float! Now wouldn't that be nice, eh?", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-airteacher-7", + "lineInfo": { + "dialogue": "Due to their tenuous physicality, souls and spirits are also often related to air magic. Makes ya wonder if you could just blow a ghost out the window!", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-airteacher-8", + "lineInfo": { + "dialogue": "And finally, some old, old tales tell of a woman who crossed the sea before it was calmed using air magic to fly. 's just an old legend, but an interesting one.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-airteacher-9", + "lineInfo": { + "dialogue": "Now, onto the practical test! It's time to get those bones a-shakin'! You'll be runnin' an obstacle course I have set up, but with a twist.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-airteacher-10", + "lineInfo": { + "dialogue": "Everyone up to the table! You'll need this feather with ya to get through. It'll help you jump higher!", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-airteacher-11", + "lineInfo": { + "dialogue": "The goal is to grab three crystal balls I put in the obstacle course. Once you find 'em, bring 'em back to me.", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-airteacher-12", + "lineInfo": { + "dialogue": "The course is behind me. Shake a leg, now!", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Teacher" + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-airteacher-13", + "lineInfo": { + "dialogue": "Lessee here, one, two, three, yes indeedy! You got through that pretty quick!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-airteacher-14", + "lineInfo": { + "dialogue": "Now, if you'll just hand me back that feather ya got there...", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-airteacher-15", + "lineInfo": { + "dialogue": "...then you'll be all done! Congrats, little fledge, you've finished this class! Now get on along to your next one!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Teacher" + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-ghostguide-4", + "lineInfo": { + "dialogue": "Moving swiftly on, the next class is just across the way. Follow me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ghost Guide" + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-magicalteacher-1", + "lineInfo": { + "dialogue": "Okay class, everyone take your seats, and listen up. This class is going to be interesting.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Teacher" + }, + "settings": { + "position": { + "x": 10885.0, + "y": 34.0, + "z": 4843.0 + } + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-2", + "lineInfo": { + "dialogue": "As you know, this class is all about magical effects, specifically those tied to various materials, and how they'll affect you!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Teacher" + }, + "settings": { + "position": { + "x": 10885.0, + "y": 34.0, + "z": 4843.0 + } + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-3", + "lineInfo": { + "dialogue": "This is going to be a hands-on learning experience, so those of you with weak constitutions may request to skip the demonstration if you're concerned for your health.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Teacher" + }, + "settings": { + "position": { + "x": 10885.0, + "y": 34.0, + "z": 4843.0 + } + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-4", + "lineInfo": { + "dialogue": "If you've read my books, you know about Quartz, and how dangerous it can be if overcharged. So, of course, we have an overcharged sample here so you can feel the signs of it.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Teacher" + }, + "settings": { + "position": { + "x": 10885.0, + "y": 34.0, + "z": 4843.0 + } + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-5", + "lineInfo": { + "dialogue": "It may be explosive, but it will be in a controlled manner. The worst that'll happen to you is your face will get a bit dusty, or your glasses will fall off.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Teacher" + }, + "settings": { + "position": { + "x": 10885.0, + "y": 34.0, + "z": 4843.0 + } + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-6", + "lineInfo": { + "dialogue": "Magical crystals, as we have to my left here, can be charged with all kinds of different effects. This is an incredibly valuable aspect for artificers.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Teacher" + }, + "settings": { + "position": { + "x": 10885.0, + "y": 34.0, + "z": 4843.0 + } + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-7", + "lineInfo": { + "dialogue": "Depending on the formation, they can have natural effects as well. These crystals were found in Gavel's floating islands, and...well, let's say it's difficult to keep it in its case.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Teacher" + }, + "settings": { + "position": { + "x": 10885.0, + "y": 34.0, + "z": 4843.0 + } + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-8", + "lineInfo": { + "dialogue": "Our last sample is of cosmic material, and if you're sickened easily, then don't examine it. Its effects are mostly unknown, but one thing's certain...", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Teacher" + }, + "settings": { + "position": { + "x": 10885.0, + "y": 34.0, + "z": 4843.0 + } + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-9", + "lineInfo": { + "dialogue": "...it's dangerous to be exposed for long periods. Now, each of you will go back behind me, and examine and interact with each of the three samples provided.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Teacher" + }, + "settings": { + "position": { + "x": 10885.0, + "y": 34.0, + "z": 4843.0 + } + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-10", + "lineInfo": { + "dialogue": "Once you've done so, then you can leave. Hands-on training is the best way to learn, after all.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Teacher" + }, + "settings": { + "position": { + "x": 10885.0, + "y": 34.0, + "z": 4843.0 + } + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-magicalteacher-11", + "lineInfo": { + "dialogue": "Well done. How did that feel?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Teacher" + }, + "settings": { + "position": { + "x": 10885.0, + "y": 34.0, + "z": 4843.0 + } + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-12", + "lineInfo": { + "dialogue": "Personally, the void sample is the most interesting to me. You may now leave the classroom.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Teacher" + }, + "settings": { + "position": { + "x": 10885.0, + "y": 34.0, + "z": 4843.0 + } + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-magicalteacher-13", + "lineInfo": { + "dialogue": "Alright everyone, take a seat but don't get comfy. You'll be getting up soon. Hope you brought your reading glasses.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-14", + "lineInfo": { + "dialogue": "See, I'll just be giving you a short primer, then sending you out for your practical exercise, since I have all this written down already.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-15", + "lineInfo": { + "dialogue": "The basis of this class is that many materials, whether you know it or not, are inherently magical in some way or another. If you want to be an artificer, you need to know how each one works.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-16", + "lineInfo": { + "dialogue": "Thankfully, the field of artifice is a very popular one, so there's a wealth of knowledge out there on magical materials and on how to use them effectively.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-17", + "lineInfo": { + "dialogue": "Heck, Wynn soldiers are cobbling together rings out of copper and old spider silk, so you know this sort of thing is easy to get into. Tough to master, though!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-18", + "lineInfo": { + "dialogue": "For those intimidated, you don't need much crafting knowledge for this class; you'll be reading up on everything you need to know in the back.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-19", + "lineInfo": { + "dialogue": "You all will be crafting a magical amulet using different items. I've got stockpiles in the back; everyone will be crafting a different kind of necklace.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-20", + "lineInfo": { + "dialogue": "Here's a note of what you should craft. Once you have the materials you think you need, come to the crafting table. It's enchanted, and will craft the item for you if you have what you need.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Teacher" + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-magicalteacher-21", + "lineInfo": { + "dialogue": "Mhm, that's the ticket, soldier. If you're interested in learning more, you can probably find my books at most libraries.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-magicalteacher-22", + "lineInfo": { + "dialogue": "Your feathers are coming in just nicely, fledgeling. You can scoot off to your next class now.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Teacher" + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-ghostguide-5", + "lineInfo": { + "dialogue": "There's a bit of a walk to your next class. Follow me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ghost Guide" + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-ghostguide-6", + "lineInfo": { + "dialogue": "These staircases were supposed to move, but... That was too much work to put together, apparently. They're a pain to navigate, aren't they?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ghost Guide" + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-speciesteacher-1", + "lineInfo": { + "dialogue": "Hello, students. This is your magical creatures class, and I will be your instructor.", + "line": { + "current": 1, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-speciesteacher-2", + "lineInfo": { + "dialogue": "Different species have different levels of innate magicality. This is often an invisible aspect of the species. You must never assume.", + "line": { + "current": 2, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-speciesteacher-3", + "lineInfo": { + "dialogue": "To begin with, Doguns. They are ancient creatures, artificial-seeming at first. Despite this, they are highly adept at earth and fire-based magic.", + "line": { + "current": 3, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-speciesteacher-4", + "lineInfo": { + "dialogue": "Able to quite literally move mountains, it is theorized that they were the ones to carve out the inside of the Molten Heights into the caves we know today.", + "line": { + "current": 4, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-speciesteacher-5", + "lineInfo": { + "dialogue": "Tales also tell of their utilizing demonic energy for various purposes. However, we are only able to assume their magical energy from Dwarven tales, as they are nigh-extinct.", + "line": { + "current": 5, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-speciesteacher-6", + "lineInfo": { + "dialogue": "Moving on. We'll touch on the societies of Trolls, Goblins, Orcs, Ogres, and Hobgoblins. Some include Gerts into this grouping, though by technicality they are separate.", + "line": { + "current": 6, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-speciesteacher-7", + "lineInfo": { + "dialogue": "Though many of these types of societies have mystical practices, the only known way for Orcs and such to utilize magic is through artifacts. They've little magical potential.", + "line": { + "current": 7, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-speciesteacher-8", + "lineInfo": { + "dialogue": "Meanwhile, Villagers are of the opposite persuasion. High magical potential, often unrealized out of laziness.", + "line": { + "current": 8, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-speciesteacher-9", + "lineInfo": { + "dialogue": "Humans are often thought of as more magical than Villagers, due to Fruman soldiers seeming to know some magic innately, but this is untrue.", + "line": { + "current": 9, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-speciesteacher-10", + "lineInfo": { + "dialogue": "Dwarves have a similar level of magicality to Humans, but like Villagers, it often goes unrealized. Their culture values physical strength more.", + "line": { + "current": 10, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-speciesteacher-11", + "lineInfo": { + "dialogue": "It is theorized that the reason for this is due to their distaste for the demonic energies of the Doguns. They reject their magic potential often, such that it is lessening over time.", + "line": { + "current": 11, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-speciesteacher-12", + "lineInfo": { + "dialogue": "Inversely, Elves have a deep connection to their magicality. Despite their reclusiveness, they are known for their open share of magical energy within their own society.", + "line": { + "current": 12, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-speciesteacher-13", + "lineInfo": { + "dialogue": "The outcast Elves of Efilim have shared their connection to what they refer to as 'The Light.' This connection is supposedly unfathomable, but guides them and protects them.", + "line": { + "current": 13, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-speciesteacher-14", + "lineInfo": { + "dialogue": "Now, we see if you were paying attention. You will come here and order the societies I have referred to in this class from least magical, to most.", + "line": { + "current": 14, + "max": 14 + }, + "npc": "Teacher" + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-speciesteacher-15", + "lineInfo": { + "dialogue": "Correct. soldier, thank you for paying attention. No one ever seems to in this class. You may go.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Teacher" + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-wybelteacher-1", + "lineInfo": { + "dialogue": "Alright, fledgeling grooks. Time to hit you all with the info you're really here for!", + "line": { + "current": 1, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-wybelteacher-2", + "lineInfo": { + "dialogue": "Wybels! Pronounced like ''nibble,'' they're a rather popular pet nowadays. But you all knew that, you want to know where they came from.", + "line": { + "current": 2, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-wybelteacher-3", + "lineInfo": { + "dialogue": "The explanation that we got was that they lived in the Ahms region, and when it split open, they eventually burrowed onto the surface of the Sky Islands.", + "line": { + "current": 3, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-wybelteacher-4", + "lineInfo": { + "dialogue": "But no one actually KNOWS for sure. That means they. Could. Be. ANYTHING! What could lie beneath that veneer of fluff and playful demeanor?!", + "line": { + "current": 4, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-wybelteacher-5", + "lineInfo": { + "dialogue": "Oh, speaking of fluff. They wooly fur never actually stops growing, ever, and neither do their hooves, their horns, or their teeth. They shed often.", + "line": { + "current": 5, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-wybelteacher-6", + "lineInfo": { + "dialogue": "These materials have innate magical energy to them. Stable like lodestone and reliable like quartz, but not as powerful as either. Interesting, that a fluffball has that potential!!", + "line": { + "current": 6, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-wybelteacher-7", + "lineInfo": { + "dialogue": "Wybel fluff is also able to be boiled, and it turns into a sticky molasses-like substance. It's used for candy, and it's very popular...but it's all POISON!!", + "line": { + "current": 7, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-wybelteacher-8", + "lineInfo": { + "dialogue": "It's poison, I tell you! Wybel meat is horrendously inedible! It'll give you the worst stomachache of your life! The candymakers are feeding us DEATH!", + "line": { + "current": 8, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-wybelteacher-9", + "lineInfo": { + "dialogue": "And the worst part is, if too much fluff gathers up in one spot, ANOTHER WYBEL APPEARS! They reproduce by budding!! Growing out of lint and dust! It's a no-win game they're makin' us play!", + "line": { + "current": 9, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-wybelteacher-10", + "lineInfo": { + "dialogue": "Wybels do have some good use though...they can sniff out sources of cosmic magic, like a pig sniffs out truffles. Sometimes they even try to take it home.", + "line": { + "current": 10, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-wybelteacher-11", + "lineInfo": { + "dialogue": "It's almost like they miss it, somehow. It's almost like they might be FROM outer space! It's ALMOST like they bring insanity-inducing things into our houses ON PURPOSE!", + "line": { + "current": 11, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-wybelteacher-12", + "lineInfo": { + "dialogue": "They're here to kill us all, I swear it! How else would you explain a wybel VAPORIZING a group of poachers? Ten colors of wybel, every one of them rotten evil!", + "line": { + "current": 12, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-wybelteacher-13", + "lineInfo": { + "dialogue": "Everyone says there's only nine, but WE know the truth! There's a tenth out there, an ultimately powerful one that wants us all gone. Pray you never see it, kids.", + "line": { + "current": 13, + "max": 14 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-wybelteacher-14", + "lineInfo": { + "dialogue": "Anyways, my lesson's safe from all that. All you have to do is re-order these plush Wybel toys on the stand. You'll figure it out once you're up here.", + "line": { + "current": 14, + "max": 14 + }, + "npc": "Teacher" + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-wybelteacher-15", + "lineInfo": { + "dialogue": "Alrighty, fledgeling, good job. You're armed with the REAL truth now! Go on to your next class.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Teacher" + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-ghostguide-7", + "lineInfo": { + "dialogue": "Next class is actually rather close!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ghost Guide" + } + }, + { + "fileOverride": "orderofthegrook-ghostguide-8", + "lineInfo": { + "dialogue": "Just follow me.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ghost Guide" + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-corruptionteacher-1", + "lineInfo": { + "dialogue": "...I was hoping for a smaller class size.", + "line": { + "current": 1, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-2", + "lineInfo": { + "dialogue": "Corruption is incredibly dangerous...it'll be tough to keep so many students safe. If anyone wishes to leave, you may.", + "line": { + "current": 2, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-3", + "lineInfo": { + "dialogue": "Now... Corruption is a force of nature of...some description. Yes, you heard me right. We don't actually know much about it.", + "line": { + "current": 3, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-4", + "lineInfo": { + "dialogue": "Even though it's plagued the Wynn province for a thousand years, the way it behaves is so incredibly alien in nature that it's nigh-impossible to study.", + "line": { + "current": 4, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-5", + "lineInfo": { + "dialogue": "We know it raises undead bodies... The working theory is that the more heavily injured a target is, the more susceptible they are to being corrupted.", + "line": { + "current": 5, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-6", + "lineInfo": { + "dialogue": "And...well, you can't exactly get more injured than \"dead.\" Hence, the growth of zombies and skeletons and all, over in Wynn.", + "line": { + "current": 6, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-7", + "lineInfo": { + "dialogue": "It appears to spread by a complex \"root\" system. A scientist from Nesaak, Orikal, has studied this. The corruption spikes appear to spread it in greater concentration.", + "line": { + "current": 7, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-8", + "lineInfo": { + "dialogue": "As for the effects on your person, most often paranoia and anger are seen. And that's about the only consistent thing with it; it affects everyone slightly differently.", + "line": { + "current": 8, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-9", + "lineInfo": { + "dialogue": "The worst part is that practically every single thing we've touched on here is conjecture and theorycrafting! The force of corruption is terrifying.", + "line": { + "current": 9, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-10", + "lineInfo": { + "dialogue": "The only thing we know for certain is that powerful ice-based magic can halt corruption, as seen in the Nesaak region.", + "line": { + "current": 10, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-11", + "lineInfo": { + "dialogue": "Now, the dangerous part. Everyone, come up past my desk here. We'll examine a corrupted creature in a controlled environment.", + "line": { + "current": 11, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-12", + "lineInfo": { + "dialogue": "We have one in captivity, and its cage is reinforced with the strongest metals we have...so dear god let it be enough.", + "line": { + "current": 12, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-13", + "lineInfo": { + "dialogue": "Bringing it out now...be sure to back up. We don't want anyone caught in the crossfire here.", + "line": { + "current": 13, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-14", + "lineInfo": { + "dialogue": "One thing to note about undead corrupteds...they can't be cured. You can weaken them, but that's about it. ...wait...", + "line": { + "current": 14, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-15", + "lineInfo": { + "dialogue": "Wait, why's it spreading here? It's never done this before! E-everyone, back up, now!", + "line": { + "current": 15, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-16", + "lineInfo": { + "dialogue": "A-as you can see, corruption is very powerful, eheheh, c-can someone go get another teacher or something?!", + "line": { + "current": 16, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-17", + "lineInfo": { + "dialogue": "Wait, no! It's corroding the bars! Everyone, RUN! NOW! GET OUT OF HERE, CLASS DISMISSED!!!", + "line": { + "current": 17, + "max": 18 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-18", + "lineInfo": { + "dialogue": "GAACK! No, soldier, I said RUN! Don't fight that thing, get OUT!", + "line": { + "current": 18, + "max": 18 + }, + "npc": "Teacher" + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-corruptionteacher-19", + "lineInfo": { + "dialogue": "Dear lord...that was awful. soldier, I can't believe you were able to kill that thing!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-corruptionteacher-20", + "lineInfo": { + "dialogue": "Class absolutely dismissed. We've got to cancel this class...it's far too dangerous for the students...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Teacher" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-natureteacher-1", + "lineInfo": { + "dialogue": "Welcome in, guys and gals...we're learnin' about nature magic today!", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-natureteacher-2", + "lineInfo": { + "dialogue": "There's two main ways of usin' nature magic... Shamanism and Druidism. Two sides of the same coin, man.", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-natureteacher-3", + "lineInfo": { + "dialogue": "Druidic practices tend to deal with healing more, and nurturing. When life's created, it gives off energy...and Druids use that energy for their magic.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-natureteacher-4", + "lineInfo": { + "dialogue": "Shamanic skills are a lot more direct, man. They take the life from other things and use that to do their stuff. It's way more varied than Druidic magic.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-natureteacher-5", + "lineInfo": { + "dialogue": "Each has its ups and downs, man. Druidism is chill and helpful...but you can really expand your mind with Shamanism, buddies.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-natureteacher-6", + "lineInfo": { + "dialogue": "Either way, it's all about equivalent exchange, y'see? You can't get somethin' from nothin', man. Either make life or take life.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-natureteacher-7", + "lineInfo": { + "dialogue": "But, it's not picky about what life you take, man! A good shaman takes from plants and animals, not people!", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-natureteacher-8", + "lineInfo": { + "dialogue": "Don't be a Slykaar, kiddos. He asked for human sacrifices, but he lived in a jungle, man! Like, what the hey! He coulda done anything else!", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-natureteacher-9", + "lineInfo": { + "dialogue": "Anyways. Our test today, little buds, is to practice some shamanic skills. We got a sick cow in the back, and you're gonna nurse it back to health.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-natureteacher-10", + "lineInfo": { + "dialogue": "You'll need to sacrifice some old Grooks, but it has to be just the right amount, man! The practice is through the door behind me.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Teacher" + } + } + ] + }, + "56": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-natureteacher-11", + "lineInfo": { + "dialogue": "When you think you have the right amount, activate the altar and see your results, man!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Teacher" + } + } + ] + }, + "57": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-natureteacher-12", + "lineInfo": { + "dialogue": "You may now leave.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Teacher" + } + } + ] + }, + "58": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-natureteacher-13", + "lineInfo": { + "dialogue": "Groovy work, man! You're at one with nature!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Teacher" + } + }, + { + "fileOverride": "orderofthegrook-natureteacher-14", + "lineInfo": { + "dialogue": "Your feathers are all grown out, man! Time to head out!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Teacher" + } + } + ] + }, + "59": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-ghostguide-9", + "lineInfo": { + "dialogue": "That's all four classes! I hope you found them magically enriching! Now, off to the graduation hall!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ghost Guide" + } + }, + { + "fileOverride": "orderofthegrook-ghostguide-10", + "lineInfo": { + "dialogue": "It's the room all the way at the bottom of the stairs. Hurry, don't hold up the ceremony! It won't start until everyone's there.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ghost Guide" + } + } + ] + }, + "60": { + "dialogues": [ + { + "fileOverride": "orderofthegrook-headmaster-21", + "lineInfo": { + "dialogue": "Take a seat. The ceremony is starting.", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Headmaster" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-22", + "lineInfo": { + "dialogue": "And so, your teachings, or at least their basics, have ended. Your magical feathers have started to grow!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Headmaster" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-23", + "lineInfo": { + "dialogue": "You have all been performing very well during your classes today. I've heard quite a bit of praise from the teachers being passed around.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Headmaster" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-24", + "lineInfo": { + "dialogue": "But now, for your efforts, you shall not go unrewarded. You will leave here with more than simply knowledge.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Headmaster" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-25", + "lineInfo": { + "dialogue": "Your tools have shaped your minds, subtly but inexorably. And so with that, what you leave with today, both in mind and in treasure, shall be different for each of you.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Headmaster" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-26", + "lineInfo": { + "dialogue": "Let us start with soldier. Please come up to the stage!", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Headmaster" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-27", + "lineInfo": { + "dialogue": "There is a reason I've called you up first, you know. Recall what I said about old hats earlier? Don't think we didn't notice the armor, or the weapon, or the grim countenance.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Headmaster" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-28", + "lineInfo": { + "dialogue": "But no need to worry. Those who truly have the drive to become learned in the ways of magic, no matter who they are, will always find their way here, and be accepted.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Headmaster" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-29", + "lineInfo": { + "dialogue": "A shame about Seasum, but not to worry. Now, hand over your materials, and you'll receive your rewards.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Headmaster" + } + }, + { + "fileOverride": "orderofthegrook-headmaster-30", + "lineInfo": { + "dialogue": "And there you have it. Your feathers are grown, and you can spread your magical wings! Good luck on your adventures, Wynn soldier.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Headmaster" + } + } + ] + } + } + }, + "The Passage": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "thepassage-wirt-1", + "lineInfo": { + "dialogue": "Not so fast, you!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Wirt" + } + }, + { + "fileOverride": "thepassage-wirt-2", + "lineInfo": { + "dialogue": "My dad said I can't let any strangers through this passage!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Wirt" + } + }, + { + "fileOverride": "thepassage-wirt-3", + "lineInfo": { + "dialogue": "If you want access, talk to him, he's the recruiter of the town! His name is Ildan. He's just southwest of here.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Wirt" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "thepassage-ildan-1", + "lineInfo": { + "dialogue": "Oh! So you want to become a member of this town?", + "line": { + "current": 1, + "max": 10 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-2", + "lineInfo": { + "dialogue": "You will have to help us first, of course!", + "line": { + "current": 2, + "max": 10 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-3", + "lineInfo": { + "dialogue": "I'm sure you've noticed, but there is a tribe camp not far from here.", + "line": { + "current": 3, + "max": 10 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-4", + "lineInfo": { + "dialogue": "They used to have a powerful chief, but he eventually died in battle.", + "line": { + "current": 4, + "max": 10 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-5", + "lineInfo": { + "dialogue": "The tribe couldn't bear the fact that he was dead. They performed some unethical necromancy spell on him.", + "line": { + "current": 5, + "max": 10 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-6", + "lineInfo": { + "dialogue": "They quickly realised that it was a bad idea, so they locked him in a tomb.", + "line": { + "current": 6, + "max": 10 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-7", + "lineInfo": { + "dialogue": "He keeps reviving his minions and it's causing quite some problems to our army.", + "line": { + "current": 7, + "max": 10 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-8", + "lineInfo": { + "dialogue": "You can access the tomb from a sacrificial shrine I've heard, but I'm not sure how. There are probably hints nearby the shrine.", + "line": { + "current": 8, + "max": 10 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-9", + "lineInfo": { + "dialogue": "Bring me back [1 Antic Bead] as a proof of its death, and I will let you become a citizen.", + "line": { + "current": 9, + "max": 10 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-10", + "lineInfo": { + "dialogue": "I've marked the direction to the shrine in your book. Remember, there should be hints right nearby the shrine. Good luck.", + "line": { + "current": 10, + "max": 10 + }, + "npc": "Ildan" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "thepassage-ildan-11", + "lineInfo": { + "dialogue": "Impressive! You got the bead!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-12", + "lineInfo": { + "dialogue": "Well, welcome to this town, adventurer! You are now officially a citizen.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-13", + "lineInfo": { + "dialogue": "Oh, but before you go! I do have a few things to say. First, about the beads here.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-14", + "lineInfo": { + "dialogue": "The tribesmen accept these as currency, so if you collect enough, I've heard they can offer you powerful masks.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-15", + "lineInfo": { + "dialogue": "Second, about the shrine. Now, this is just a rumor, but apparently that tomb is not unique.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-16", + "lineInfo": { + "dialogue": "There are supposed to be a bunch of these altars scattered around the province, even in Gavel too!", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-17", + "lineInfo": { + "dialogue": "If true, you should look for them. While the fights will be tough, I would imagine great rewards could be gotten from them!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Ildan" + } + }, + { + "fileOverride": "thepassage-ildan-18", + "lineInfo": { + "dialogue": "Anyway, I've talked enough. I'm proud to have such a powerful fighter join our town! I wish you luck, friend!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Ildan" + } + } + ] + } + } + }, + "The Qira Hive": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "qirahive-yansur-1", + "lineInfo": { + "dialogue": "I see another challenger has found their way to The Qira Hive!", + "line": { + "current": 1, + "max": 13 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-2", + "lineInfo": { + "dialogue": "I can't say I am overwhelmed by your appearance. Here, the birth of many powerful and magical monsters take place.", + "line": { + "current": 2, + "max": 13 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-3", + "lineInfo": { + "dialogue": "Gavel's governments can not stop Mistress Qira. I doubt you can either.", + "line": { + "current": 3, + "max": 13 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-4", + "lineInfo": { + "dialogue": "If you want to meet her, you will have to defeat each division of her army.", + "line": { + "current": 4, + "max": 13 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-5", + "lineInfo": { + "dialogue": "Although powerful, she is not without honour. After every floor you complete, you will receive a token for a reward from the shop. Good luck, adventurer-", + "line": { + "current": 5, + "max": 13 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-qira-1", + "lineInfo": { + "dialogue": "Excuse me, but aren't you forgetting some things, Yansur?", + "line": { + "current": 6, + "max": 13 + }, + "npc": "????" + } + }, + { + "fileOverride": "qirahive-yansur-6", + "lineInfo": { + "dialogue": "Wh- Oh, Mistress, am I? My apologies...", + "line": { + "current": 7, + "max": 13 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-qira-2", + "lineInfo": { + "dialogue": "You will be disciplined later...fine. Consider yourself honoured to have even a moment of my time, adventurer. Allow me to explain in further detail, my glorious Hive.", + "line": { + "current": 8, + "max": 13 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-qira-3", + "lineInfo": { + "dialogue": "As Yansur explained, if you wish audience with me, you must prove yourself worthy of my presence by defeating each division of my personal army.", + "line": { + "current": 9, + "max": 13 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-qira-4", + "lineInfo": { + "dialogue": "It consists of five main divisions, each one based around a particular element. Thunder, Air, Earth, and so on. Clearing one will unlock the next for you to face.", + "line": { + "current": 10, + "max": 13 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-qira-5", + "lineInfo": { + "dialogue": "To pass a floor of the division, defeat my forces and put the catalysts they drop into the collector. You will need five catalysts to pass a floor.", + "line": { + "current": 11, + "max": 13 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-qira-6", + "lineInfo": { + "dialogue": "After nine floors of normal troops, you will face a Division Leader. These exceptionally powerful members of my army will be fought alone, and you will only need one catalyst from them to pass.", + "line": { + "current": 12, + "max": 13 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-qira-7", + "lineInfo": { + "dialogue": "The Thunder Division will be your first challenge. I do hope you will be entertaining to watch...", + "line": { + "current": 13, + "max": 13 + }, + "npc": "Qira" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-8", + "lineInfo": { + "dialogue": "Begin, the Thunder Division! Strike quickly and move on, for those within will warp your very mind should you stray for too long!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "qirahive-psychomancer-1", + "lineInfo": { + "dialogue": "Heeheehahaaaah! I see you! You humans have such easily influenced minds, but I'll settle for beating you within an inch of your life! Come through, come through!!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "????" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "qirahive-psychomancer-2", + "lineInfo": { + "dialogue": "HAAAHAHAHAAH! Idiot! I'm over HERE!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Psychomancer" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "qirahive-psychomancer-3", + "lineInfo": { + "dialogue": "This is your punishment for thinking you had the right to attack me so!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Psychomancer" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "qirahive-psychomancer-4", + "lineInfo": { + "dialogue": "You ten-ton drip! Can't even keep track of a single target, hehehahaaaah!!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Psychomancer" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "qirahive-psychomancer-5", + "lineInfo": { + "dialogue": "Now, stand still for me, would you? Or keep running! Whichever works for me, heehehahahaaah!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Psychomancer" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "qirahive-psychomancer-6", + "lineInfo": { + "dialogue": "Look behind you! Hahaah! Nothing there?! Your mind's playing tricks on you!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Psychomancer" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "qirahive-psychomancer-7", + "lineInfo": { + "dialogue": "You can't even track me! Face it, human, your brain's too worthless to beat me...so give it up to me, instead!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Psychomancer" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "qirahive-psychomancer-8", + "lineInfo": { + "dialogue": "Feh, you're no fun, you little cheater! I was supposed to beat you, not the other way around!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Psychomancer" + }, + "settings": { + "falloff": 100 + } + }, + { + "fileOverride": "qirahive-psychomancer-9", + "lineInfo": { + "dialogue": "I hate you so much. Just get out and talk to that idiot servant already!!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Psychomancer" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "qirahive-yansur-7", + "lineInfo": { + "dialogue": "You have completed the Thunder floor? How surprising. They were some of Mistress Qira's earliest successes.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-qira-9", + "lineInfo": { + "dialogue": "How was your first taste of the Hive? Your battle against the Psychomancer was quite the spectacle to behold, ahaha...", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-yansur-8", + "lineInfo": { + "dialogue": "I agree, Mistress. As promised, here is a Thunder Voucher.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-9", + "lineInfo": { + "dialogue": "Take it to the shop to claim your prize. It is located at the base of the Hive. The servant there will have important information for you regarding your prizes.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-10", + "lineInfo": { + "dialogue": "I doubt you are still worth Mistress's time, however. She has much to tend to here, as you might guess.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-11", + "lineInfo": { + "dialogue": "She made a deal with Gavel's people long ago, after they foolishly attempted to lay siege to our Hive.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-12", + "lineInfo": { + "dialogue": "She could continue her unethical and possibly evil work...and in return, she would allow the people of Gavel to remain undisturbed by her.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-13", + "lineInfo": { + "dialogue": "Next you must tackle the Air division, featuring some of her tougher creations.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Yansur" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-10", + "lineInfo": { + "dialogue": "Begin, the Air Division! Fight freely with the wind, for the coming storm shall claim you for my own if you cannot spread your wings here!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "qirahive-gale-1", + "lineInfo": { + "dialogue": "Well, nice work getting this far! Don't tell anyone, but I'm gonna pull my punches here, okay? I'm rooting for you, so let's have fun with this! Come on through!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "????" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "qirahive-gale-2", + "lineInfo": { + "dialogue": "Haha, look out below! Dropping some bombs on ya!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gale" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "qirahive-gale-3", + "lineInfo": { + "dialogue": "Bombaaaardmeeeent!! Better get moving!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gale" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "qirahive-gale-4", + "lineInfo": { + "dialogue": "Eyes on the skies down there! INCOMING!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gale" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "qirahive-gale-5", + "lineInfo": { + "dialogue": "What a rush, huh? Let's keep up the pace!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gale" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "qirahive-gale-6", + "lineInfo": { + "dialogue": "It's a fight to the finish, but we can have fun with it, right?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gale" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "qirahive-gale-7", + "lineInfo": { + "dialogue": "Woo! Betcha didn't even see me rush by, huh?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gale" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "qirahive-gale-8", + "lineInfo": { + "dialogue": "Whoa, you're really keeping up! Maybe it's time for me to cut loose a little bit!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gale" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "qirahive-gale-9", + "lineInfo": { + "dialogue": "Heehee, maybe I didn't need to hold back after all? You did really, really well!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gale" + }, + "settings": { + "falloff": 100 + } + }, + { + "fileOverride": "qirahive-gale-10", + "lineInfo": { + "dialogue": "A lot of people say I'm the roughest we have to offer, so you've got this! I'm sorry you have to go talk to Yansur of all people now, though.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gale" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "qirahive-yansur-14", + "lineInfo": { + "dialogue": "Hrm, perhaps we have underestimated you. The creations of Air have defeated thousands, particularly-", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-qira-11", + "lineInfo": { + "dialogue": "Hush, Yansur. Not a word about her.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-yansur-15", + "lineInfo": { + "dialogue": "...yes. Here is the promised Air Voucher.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-16", + "lineInfo": { + "dialogue": "The shop has your reward prepared. If you have not talked to the servant at the shop, do so next you go there.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-17", + "lineInfo": { + "dialogue": "You still have a long way to go. It is not easy to gain an audience with Mistress Qira.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-18", + "lineInfo": { + "dialogue": "Your next objective is to clear the Earth Division. Some of the most powerful, raw creatures ever hatched.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Yansur" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-12", + "lineInfo": { + "dialogue": "Begin, the Earth Division! You must withstand both sheer force and deadly toxins! Be quick on your feet, or you will return to the dust of the earth!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "qirahive-genesis-1", + "lineInfo": { + "dialogue": "Seems you can move on... All you hear is a bloodcurdling roar. What lies ahead...?" + } + }, + { + "fileOverride": "qirahive-yansur-19", + "lineInfo": { + "dialogue": "Creatures of the earth were not enough for you... Mistress's most rawly powerful... Destroyed.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-qira-13", + "lineInfo": { + "dialogue": "Managed to defeat Genesis, hm? It is normally the end of most... Interesting.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-yansur-20", + "lineInfo": { + "dialogue": "Well, here is your Earth Voucher.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Yansur" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "qirahive-yansur-21", + "lineInfo": { + "dialogue": "It is impressive to see how far you have come. Many have failed at this point.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-22", + "lineInfo": { + "dialogue": "It is of no consequence, however, for the Water division is your next challenge. I am sure you will not succeed.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Yansur" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-14", + "lineInfo": { + "dialogue": "Begin, the Water Division! If you will not withstand the crashing waves, the creatures that lurk within shall ensure you never emerge from the abyss!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "qirahive-oceanicjudge-1", + "lineInfo": { + "dialogue": "You have been judged worthy enough to face me in combat. However, I know your strength, and I do not believe it enough to defeat me. Come forth now. Make your attempt to prove me wrong.", + "line": { + "current": 1, + "max": 1 + }, + "npc": ":????" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "qirahive-oceanicjudge-2", + "lineInfo": { + "dialogue": "The ocean winds shall claim you in this bout.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Oceanic Judge" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "29": { + "dialogues": [ + { + "fileOverride": "qirahive-oceanicjudge-3", + "lineInfo": { + "dialogue": "The winds intensify... Do you fear the storm?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Oceanic Judge" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "30": { + "dialogues": [ + { + "fileOverride": "qirahive-oceanicjudge-4", + "lineInfo": { + "dialogue": "You have decent skill, I will admit. But the seas will claim all!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Oceanic Judge" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "31": { + "dialogues": [ + { + "fileOverride": "qirahive-oceanicjudge-5", + "lineInfo": { + "dialogue": "These distractions belie my true power. Behold, and kneel before the law of the Hive!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Oceanic Judge" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "32": { + "dialogues": [ + { + "fileOverride": "qirahive-oceanicjudge-6", + "lineInfo": { + "dialogue": "Seems my judgment was incorrect. In this case, however, it is refreshing to see.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Oceanic Judge" + }, + "settings": { + "falloff": 100 + } + }, + { + "fileOverride": "qirahive-oceanicjudge-7", + "lineInfo": { + "dialogue": "Continue forwards, honourable human. Perhaps your intellect and respect will rub off on that insufferable Yansur.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Oceanic Judge" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "33": { + "dialogues": [ + { + "fileOverride": "qirahive-yansur-23", + "lineInfo": { + "dialogue": "Impossible. Not even the most tactically advanced monsters could defeat you.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-qira-15", + "lineInfo": { + "dialogue": "I must admit I am impressed; the Judge is ruthless... perhaps he needs further tweaking?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-yansur-24", + "lineInfo": { + "dialogue": "... Here's the Water Voucher you're expecting.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-25", + "lineInfo": { + "dialogue": "The shop has your reward prepared. If you have not talked to the servant at the shop, do so next you go there.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-26", + "lineInfo": { + "dialogue": "We are intrigued by your determination... But we are not worried. We do not expect you to make it past the next floor.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-27", + "lineInfo": { + "dialogue": "Now you must face some of the toughest creatures of Mistress Qira's imagination!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-28", + "lineInfo": { + "dialogue": "You must now face the division of Fire, and it will be sure to burn you.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Yansur" + } + } + ] + }, + "34": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-16", + "lineInfo": { + "dialogue": "Begin, the Fire Division! Summon your courage, and brave the heat of the volcanoes and stars for my amusement, else burn to cinders and blow away in the breeze!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + } + } + ] + }, + "35": { + "dialogues": [ + { + "fileOverride": "qirahive-solarvanguard-1", + "lineInfo": { + "dialogue": "Impressive, making it this far. I am your final test. Let us fight fairly, then. An honourable end to your challenge is only fitting, whether that be triumph or defeat. Come forward and face me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "????" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "36": { + "dialogues": [ + { + "fileOverride": "qirahive-solarvanguard-2", + "lineInfo": { + "dialogue": "Now, you will burn away before me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Solar Vanguard" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "37": { + "dialogues": [ + { + "fileOverride": "qirahive-solarvanguard-3", + "lineInfo": { + "dialogue": "The zeal of the sun cannot be curbed.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Solar Vanguard" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "38": { + "dialogues": [ + { + "fileOverride": "qirahive-solarvanguard-4", + "lineInfo": { + "dialogue": "That is enough- Fall!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Solar Vanguard" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "39": { + "dialogues": [ + { + "fileOverride": "qirahive-solarvanguard-5", + "lineInfo": { + "dialogue": "Hm. It seems I will need to pick up the pace.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Solar Vanguard" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "40": { + "dialogues": [ + { + "fileOverride": "qirahive-solarvanguard-6", + "lineInfo": { + "dialogue": "You fight well. We shall see if you can adapt to this.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Solar Vanguard" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "41": { + "dialogues": [ + { + "fileOverride": "qirahive-solarvanguard-7", + "lineInfo": { + "dialogue": "Defeat feels strange, after so long. You fought valiantly, and with great zeal, however. It would be a lie to say I am disappointed.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Solar Vanguard" + }, + "settings": { + "falloff": 100 + } + }, + { + "fileOverride": "qirahive-solarvanguard-8", + "lineInfo": { + "dialogue": "All that is left is to talk to Mistress's servant, and claim your final prize. Surely he will not be as great an obstacle as I was.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Solar Vanguard" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "42": { + "dialogues": [ + { + "fileOverride": "qirahive-yansur-29", + "lineInfo": { + "dialogue": "This is unprecedented. You have defeated some of the most recent and powerful creations.", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-qira-17", + "lineInfo": { + "dialogue": "Even downed the Vanguard...? My word...", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-yansur-30", + "lineInfo": { + "dialogue": "Here you are then, the Fire Voucher!", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-31", + "lineInfo": { + "dialogue": "The shop has your reward prepared. If you have not talked to the servant at the shop, do so next you go there.", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-32", + "lineInfo": { + "dialogue": "This is unorthodox, as few have made it this far. But I suppose this means that you have earned an audience with-", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-qira-18", + "lineInfo": { + "dialogue": "Allow me to stop you there, Yansur. I wish to make an exception for this challenger.", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-qira-19", + "lineInfo": { + "dialogue": "You have intrigued me, adventurer...and I want to put you to the truest test.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-yansur-33", + "lineInfo": { + "dialogue": "Hah! Incredible! Mistress wishes to battle you herself! You astound me.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-34", + "lineInfo": { + "dialogue": "Be warned, however. This will be your toughest battle yet. Mistress Qira is the most feared being in Gavel.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-35", + "lineInfo": { + "dialogue": "You will die...but consider it the greatest honour to die by her hand.", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-qira-20", + "lineInfo": { + "dialogue": "I await you in my chambers...", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Qira" + } + } + ] + }, + "43": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-21", + "lineInfo": { + "dialogue": "So, you've arrived. You have proven yourself very capable... I am looking forward to this bout! Let's dance, mortal!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "44": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-22", + "lineInfo": { + "dialogue": "Many have made it this far. None have succeeded- not against me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "45": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-23", + "lineInfo": { + "dialogue": "Oh? You look surprised! Is it a wonder that the creator may be able to use powers of those she has created?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "46": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-24", + "lineInfo": { + "dialogue": "Yes, I am responsible for the state of all those who fight in this Hive. Wondrous, is it not?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "47": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-25", + "lineInfo": { + "dialogue": "That is a minute and a half you have survived in this battle. So many have failed by this point. You look promising, then...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "48": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-26", + "lineInfo": { + "dialogue": "Endurance is not enough to best me, however... I am certain you are aware of this.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "49": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-27", + "lineInfo": { + "dialogue": "So let us see if you can break me down. Take the first step in this waltz of the damned.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "50": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-28", + "lineInfo": { + "dialogue": "What shall be the end of you here? Myself, or my wonderful little creations?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "51": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-29", + "lineInfo": { + "dialogue": "Go on, Wynn warrior! Dance for me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "52": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-30", + "lineInfo": { + "dialogue": "Come now, pick up the pace. We are here to battle, not participate in a marathon.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "53": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-31", + "lineInfo": { + "dialogue": "...you. You...ahaha...I like you. You're capable enough... Perhaps we could be allies in the future...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "54": { + "dialogues": [ + { + "fileOverride": "qirahive-yansur-36", + "lineInfo": { + "dialogue": "How cowardly! After defeating so many in the Hive, and receiving such praise, you've the gall to upstand Mistress's request?", + "line": { + "current": 1, + "max": 14 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-37", + "lineInfo": { + "dialogue": "I had begun to think highly of you, but after such a disgusting display-", + "line": { + "current": 2, + "max": 14 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-qira-32", + "lineInfo": { + "dialogue": "They defeated me, Yansur.", + "line": { + "current": 3, + "max": 14 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-yansur-38", + "lineInfo": { + "dialogue": "Wha...that- No, that can't possibly be correct, you are-", + "line": { + "current": 4, + "max": 14 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-qira-33", + "lineInfo": { + "dialogue": "You question your mistress? I have nothing to gain from lying to you about this. And there is no shame in admitting defeat.", + "line": { + "current": 5, + "max": 14 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-yansur-39", + "lineInfo": { + "dialogue": "...Masterful...Have we been cooped up in this Hive so long that our army is outdated?", + "line": { + "current": 6, + "max": 14 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-40", + "lineInfo": { + "dialogue": "To be defeated by a human of Wynn... I am not sure whether to be disappointed or amazed. Our ultimate challenge has been bested.", + "line": { + "current": 7, + "max": 14 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-qira-34", + "lineInfo": { + "dialogue": "It is simply a testament to their strength. I will prepare a special reward for them to mark the occasion.", + "line": { + "current": 8, + "max": 14 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-yansur-41", + "lineInfo": { + "dialogue": "Here is your voucher, then. The back room in the shop will have your rewards. If you still have not talked to the servant at the shop...well. You should know by now.", + "line": { + "current": 9, + "max": 14 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-42", + "lineInfo": { + "dialogue": "Mistress...if I may tell the tale? She was once called upon to help stop the decay of the forest.", + "line": { + "current": 10, + "max": 14 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-43", + "lineInfo": { + "dialogue": "With her boundless knowledge and magic, she surely could have cured it. But she declined.", + "line": { + "current": 11, + "max": 14 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-44", + "lineInfo": { + "dialogue": "She instead chose to create, obsessed with preparing for some sort of war.", + "line": { + "current": 12, + "max": 14 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-yansur-45", + "lineInfo": { + "dialogue": "Mistress never elaborated, but it seems like she knows something we don't.", + "line": { + "current": 13, + "max": 14 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-qira-35", + "lineInfo": { + "dialogue": "It is as I have always told you. The darkness is coming...but if you Wynn folk are all as strong as you have proven yourself to be, we may just be able to beat it back. Honour to you, warrior of Wynn.", + "line": { + "current": 14, + "max": 14 + }, + "npc": "Qira" + } + } + ] + }, + "55": { + "dialogues": [ + { + "fileOverride": "qirahive-yansur-46", + "lineInfo": { + "dialogue": "You have already bested Mistress Qira, the strongest being in all Gavel. Do you seek to further boost your ego? We have nothing more to offer you here.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Yansur" + } + }, + { + "fileOverride": "qirahive-qira-36", + "lineInfo": { + "dialogue": "I have told you in the past, Yansur. There is no \"we\" in this operation, you are a peon! One who will reign in his inflated ego immediately. Understood?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Qira" + } + }, + { + "fileOverride": "qirahive-yansur-47", + "lineInfo": { + "dialogue": "...yes, Mistress.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Yansur" + } + } + ] + }, + "56": { + "dialogues": [ + { + "fileOverride": "qirahive-yansur-48", + "lineInfo": { + "dialogue": "Come back when you are level 80. We will not accept applicants of the challenge who are not thoroughly prepared.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Yansur" + } + } + ] + }, + "57": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-37", + "lineInfo": { + "dialogue": "You are not worth my time to see. What could a peon such as you possibly hope to request? Prove yourself worthy...and then we will see what I may do for you.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "????" + } + } + ] + }, + "58": { + "dialogues": [ + { + "fileOverride": "qirahive-gale-11", + "lineInfo": { + "dialogue": "Alriiiight, now you're feelin' it, right? All warmed up? Good! Try and keep up now!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gale" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "59": { + "dialogues": [ + { + "fileOverride": "qirahive-gale-12", + "lineInfo": { + "dialogue": "WOOOOHOOOO!!! BING, BAM, POW!! YEEEEAH!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gale" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "60": { + "dialogues": [ + { + "fileOverride": "qirahive-gale-13", + "lineInfo": { + "dialogue": "Keep it up! You're almost there but I can't make it easy for you!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gale" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "61": { + "dialogues": [ + { + "fileOverride": "qirahive-gale-14", + "lineInfo": { + "dialogue": "Let's get WILD with it now!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gale" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "62": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-38", + "lineInfo": { + "dialogue": "Aha! So you can crack my defenses...then let me see what you are made of up close, Wynn warrior.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "63": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-39", + "lineInfo": { + "dialogue": "There have been scarce few to push me to this point... I will not stop, however. You have not won yet, Wynn warrior!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "64": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-40", + "lineInfo": { + "dialogue": "I must admit my pleasure seeing you last this long- It is a refreshing change of pace.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "65": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-41", + "lineInfo": { + "dialogue": "Do not presume I am limited to merely one trick. My knowledge surpasses the barriers of reality itself.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "66": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-42", + "lineInfo": { + "dialogue": "To balance life itself with the power I require of my army is a delicate art. Every single creation must be perfect.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "67": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-43", + "lineInfo": { + "dialogue": "Some must be reined in, some must be adjusted as time goes on... But there is beauty in iteration.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "68": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-44", + "lineInfo": { + "dialogue": "I could compare the methods and rituals I use to the choreography of a dance... But that would be reaching, wouldn't it?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "69": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-45", + "lineInfo": { + "dialogue": "No, calling it art is far more apt. Art through adversity, perhaps.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "70": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-46", + "lineInfo": { + "dialogue": "But all things can be improved. Everything can be iterated upon and made stronger... And that includes you.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "71": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-47", + "lineInfo": { + "dialogue": "Practice, rigorous training, magical equipment... And have you not gained all of these from my glorious Hive?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "72": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-48", + "lineInfo": { + "dialogue": "Our work is exhaustive, and we must be tireless in our preparations. And so...I extend my invitation to all adventurers.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "73": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-49", + "lineInfo": { + "dialogue": "Come and break yourselves upon my creations! Find the limits of your power- so we may also find ours.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "74": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-50", + "lineInfo": { + "dialogue": "So that I may eliminate all weaknesses from my army- for the enemy shall prey upon all it can find.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "75": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-51", + "lineInfo": { + "dialogue": "All is fair in love and war, as it is said. But we of the Hive shall emerge victorious.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "76": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-52", + "lineInfo": { + "dialogue": "This leaves you. And you must ask of yourself what your breaking point is. Is it here, in my clutches?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "77": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-53", + "lineInfo": { + "dialogue": "Will it be elsewhere, to some unknown horror? Will you succumb to your own despair?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "78": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-54", + "lineInfo": { + "dialogue": "Are you bound by your limitations? Or will you continue to fight, Wynn warrior? Answer me!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "79": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-55", + "lineInfo": { + "dialogue": "But combat- Now this is truly a dance. And like this, I shall take the lead!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "80": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-56", + "lineInfo": { + "dialogue": "Do not make me cast you aside. Your armor would catch a pretty penny for scrap... But it would be a waste.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "81": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-57", + "lineInfo": { + "dialogue": "To have seen you fought against the best my Hive had to offer was entertaining... To see you in person is another prospect entirely.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "82": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-58", + "lineInfo": { + "dialogue": "Are you overwhelmed? Do you fear me?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "83": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-59", + "lineInfo": { + "dialogue": "Leaving so soon? Haha...not until I am through with you. I must see what you are capable of...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "84": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-60", + "lineInfo": { + "dialogue": "Yansur... I should not have to repeat you our rules. You do not threaten our contestants. Am I understood, or do you need re-education?", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "85": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-61", + "lineInfo": { + "dialogue": "Will you fear the end, or seek to rewrite fate?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "86": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-62", + "lineInfo": { + "dialogue": "Will you give your heart in vain to those you cannot save?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "87": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-63", + "lineInfo": { + "dialogue": "Will you find a cause nobler than yourself, and dedicate your life to it?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "88": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-64", + "lineInfo": { + "dialogue": "Power begets the attention of madness. Can you endure its pull?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + }, + "89": { + "dialogues": [ + { + "fileOverride": "qirahive-qira-65", + "lineInfo": { + "dialogue": "Is your power given, or wielded? Will you abuse it, or make use of it?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Qira" + }, + "settings": { + "falloff": 100 + } + } + ] + } + } + }, + "The Sewers of Ragni": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "thesewersofragni-jenprest-1", + "lineInfo": { + "dialogue": "Soldier! Good timing. We've been requesting help for ages.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-2", + "lineInfo": { + "dialogue": "Looks like we have a blocked pipe in the sewers. No wonder no one wanted the job.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-3", + "lineInfo": { + "dialogue": "I'm going to need you to get your hands dirty. I'll need some assistance with the blockage.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-4", + "lineInfo": { + "dialogue": "Follow me up the hill to the sewer entrance, just right of this big drain here.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Jenprest" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "thesewersofragni-jenprest-5", + "lineInfo": { + "dialogue": "So... Are you ready to go now?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jenprest" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "thesewersofragni-jenprest-6", + "lineInfo": { + "dialogue": "Well?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jenprest" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "thesewersofragni-jenprest-7", + "lineInfo": { + "dialogue": "Alright! Come back to me when you are ready.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jenprest" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "thesewersofragni-jenprest-8", + "lineInfo": { + "dialogue": "Alright! Come back to me when you are.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jenprest" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "thesewersofragni-jenprest-9", + "lineInfo": { + "dialogue": "Alright, follow me then!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-10", + "lineInfo": { + "dialogue": "It's not far at all, just up the stairs.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-11", + "lineInfo": { + "dialogue": "Ah here we are. The entrance to the sewers!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-12", + "lineInfo": { + "dialogue": "Here's the brief. We get in, deploy small explosives to dislodge the blockage, and get out.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-13", + "lineInfo": { + "dialogue": "I forgot to mention this won't be without danger. There's all sorts of nasty things in this sewer. Keep your wits about you. Right, let's go!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Jenprest" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "thesewersofragni-jenprest-14", + "lineInfo": { + "dialogue": "What are you doing here? We need to be in the sewer!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-15", + "lineInfo": { + "dialogue": "We need to go back now!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Jenprest" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "thesewersofragni-jenprest-16", + "lineInfo": { + "dialogue": "Alright, Let's go back then!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Jenprest" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "thesewersofragni-jenprest-17", + "lineInfo": { + "dialogue": "The dungeon is unsealed, you must go and defeat it!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jenprest" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "thesewersofragni-jenprest-18", + "lineInfo": { + "dialogue": "Do you feel like there's something lurking that doesn't want us here?", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-19", + "lineInfo": { + "dialogue": "Anyway, I've found the blockage. It's right up ahead.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-20", + "lineInfo": { + "dialogue": "Here's a small explosive. I placed one at the blockage already, if that alone doesn't work, use this.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Jenprest" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "thesewersofragni-jenprest-21", + "lineInfo": { + "dialogue": "Ah, you re alive! Looks like we underestimated the amount of sewage.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-22", + "lineInfo": { + "dialogue": "Let's get out of here. Do you still have the explosive I gave you?", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-23", + "lineInfo": { + "dialogue": "Good, let's use it on this wall, it looks like we can break right through...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Jenprest" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "thesewersofragni-jenprest-24", + "lineInfo": { + "dialogue": "Oh no, oh no no no! Did you just open that? Come here immediately.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Jenprest" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "thesewersofragni-jenprest-25", + "lineInfo": { + "dialogue": "Oh no...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-26", + "lineInfo": { + "dialogue": "Dungeons are sealed for a reason. This one used to be the old Ragni prison.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-27", + "lineInfo": { + "dialogue": "It has a horrible history. People used to hide here during raids.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-28", + "lineInfo": { + "dialogue": "Rumour has it that Bob, the hero of Wynn, was born in this very prison.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-29", + "lineInfo": { + "dialogue": "Now only proven parties of soldiers may enter if one has slain a key guardian.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-30", + "lineInfo": { + "dialogue": "You must go in and defeat the dungeon.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Jenprest" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "thesewersofragni-jenprest-31", + "lineInfo": { + "dialogue": "Hello, I am a lieutenant in the Ragni army. I have a job for you soldier.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Jenprest" + } + }, + { + "fileOverride": "thesewersofragni-jenprest-32", + "lineInfo": { + "dialogue": "Wait, you aren't [level 5] yet! Come back to me when you get stronger.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Jenprest" + } + } + ] + } + } + }, + "The Shadow of the Beast": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "shadowofthebeast-dereg-1", + "lineInfo": { + "dialogue": "Oh, you look tough. You must be one of those humans I keep hearing about, right? People talk about your kind all the time.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Dereg" + } + }, + { + "fileOverride": "shadowofthebeast-dereg-2", + "lineInfo": { + "dialogue": "You know, that you're all scrappers. Tough as nails, and willing to kill all sorts of beasts, you know?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Dereg" + } + }, + { + "fileOverride": "shadowofthebeast-dereg-3", + "lineInfo": { + "dialogue": "I think you know what I'm getting at. I saw some massive thing lumbering around the swamp one night! Tall as the trees, it was.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Dereg" + } + }, + { + "fileOverride": "shadowofthebeast-dereg-4", + "lineInfo": { + "dialogue": "I couldn't make out the details, but if its size was any indication, it could just step over the Olux walls and wreck the whole town!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Dereg" + } + }, + { + "fileOverride": "shadowofthebeast-dereg-5", + "lineInfo": { + "dialogue": "Of course, there's so many scam artists around here trying to sell anti-monster underwear or whatever that no one believes me.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Dereg" + } + }, + { + "fileOverride": "shadowofthebeast-dereg-6", + "lineInfo": { + "dialogue": "So, that means it's up to you! Ehm, supposing that you're willing to help out, at least... The one thing I know for sure is that it was eating something.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Dereg" + } + }, + { + "fileOverride": "shadowofthebeast-dereg-7", + "lineInfo": { + "dialogue": "See the blood on the ground? That stuff is fresh. Follow it, see where it leads, and hunt that beast before it does something terrible!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Dereg" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "shadowofthebeast-tolem-1", + "lineInfo": { + "dialogue": "Oh, this is such a mess! And my axe is busted, too...how am I going to get this fixed?!", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-2", + "lineInfo": { + "dialogue": "I can't pay for- AAAH! H-Human! What do you want?! Not a good time!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-3", + "lineInfo": { + "dialogue": "Something destroyed my cow pen and wrecked up my entire farm!", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-4", + "lineInfo": { + "dialogue": "And they were solid, good-quality Willow, too...uff...", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-5", + "lineInfo": { + "dialogue": "Wait, what? You're hunting the thing? Well, that's fine and dandy, but do you think you could help here first?", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-6", + "lineInfo": { + "dialogue": "I have an idea of where it went, so...you scratch my back, I scratch yours?", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-7", + "lineInfo": { + "dialogue": "Okay, this can work, this can work! I have to figure out how to fix this, and some of my cows ran off in a panic.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-8", + "lineInfo": { + "dialogue": "So, you can take care of them while I re-plan my fencing. Simple enough, right?", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-9", + "lineInfo": { + "dialogue": "Three of my cows ran off. Look around the farm for them. They were eating, so look for fallen wheat on the ground!", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Tolem" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "shadowofthebeast-tolem-10", + "lineInfo": { + "dialogue": "Oh, back aleady? I haven't even finished my stuff, where are the cows?", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Tolem" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "shadowofthebeast-tolem-11", + "lineInfo": { + "dialogue": "...eheh. You. You're. This is a joke, right? We're having a chuckle?!", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-12", + "lineInfo": { + "dialogue": "WE'RE JOKING, RIGHT?! FOR THE LOVE OF ALL THAT'S HOLY TELL ME THIS IS A JOKE!", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-13", + "lineInfo": { + "dialogue": "WHAT IS THIS?! ARE YOU BRAINDEAD?!", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-14", + "lineInfo": { + "dialogue": "NO, WAIT, YOU'RE HUMAN, THAT'S THE PROBLEM! IDIOT THUGS, ALL OF YOU!", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-15", + "lineInfo": { + "dialogue": "DID I NEED TO SPECIFY THAT I WANTED THEM BACK ALIVE? WAS THAT NOT OBVIOUS TO YOU?!", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-16", + "lineInfo": { + "dialogue": "Hff...haah...hrrgh...I...I can't bellevue...bellevue? Believe! I can't believe this!", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-17", + "lineInfo": { + "dialogue": "Uff, settle down, Tolem, settle down...you can still salvage this...", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-18", + "lineInfo": { + "dialogue": "Alright, two things. Your new name is Idiot, and I'm changing our deal. You owe me [10 Willow Planks].", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-19", + "lineInfo": { + "dialogue": "You're going to help me get at least one thing around here working. You get the wood, I'll keep looking over the fencing.", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Tolem" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "shadowofthebeast-tolem-20", + "lineInfo": { + "dialogue": "Oh lovely. Idiot's back! Joy of joys. Willow planks, please.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-21", + "lineInfo": { + "dialogue": "Good. Even if you've got murder on the mind constantly, you have decent woodcutting arms.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-22", + "lineInfo": { + "dialogue": "I'll sell the remainder of these planks to try and recoup the money for my cows you mulched.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Tolem" + } + }, + { + "fileOverride": "shadowofthebeast-tolem-23", + "lineInfo": { + "dialogue": "So go on, get out of here now. Make yourself useful and follow the giant footprints in the ground. Hunt something that NEEDS hunting, instead of cattle!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Tolem" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "shadowofthebeast-kroac-1", + "lineInfo": { + "dialogue": "Oh, look at this...all my years of carpentry and my bad back does my poor house in.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Kroac" + } + }, + { + "fileOverride": "shadowofthebeast-kroac-2", + "lineInfo": { + "dialogue": "What on earth could have done this?! It must be the biggest beast in the swamp!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Kroac" + } + }, + { + "fileOverride": "shadowofthebeast-kroac-3", + "lineInfo": { + "dialogue": "I was just sitting inside having some dinner, I hear some rumbling, and suddenly my house is falling apart!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Kroac" + } + }, + { + "fileOverride": "shadowofthebeast-kroac-4", + "lineInfo": { + "dialogue": "You human folk are good with physical labor, I hear? Do you think you could help me out here?", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Kroac" + } + }, + { + "fileOverride": "shadowofthebeast-kroac-5", + "lineInfo": { + "dialogue": "There's a mine just over there. Think you can get [10 Cobblestone] out of it?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Kroac" + } + }, + { + "fileOverride": "shadowofthebeast-kroac-6", + "lineInfo": { + "dialogue": "I'll go find someone who's selling any spare wood for the roof...", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Kroac" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "shadowofthebeast-kroac-7", + "lineInfo": { + "dialogue": "Did you get enough cobblestone? I found a guy down the street selling this top-quality Willow...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Kroac" + } + }, + { + "fileOverride": "shadowofthebeast-kroac-8", + "lineInfo": { + "dialogue": "Good, perfect. That should be enough. Though, I do have one other thing to ask you, soldier.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Kroac" + } + }, + { + "fileOverride": "shadowofthebeast-kroac-9", + "lineInfo": { + "dialogue": "My back's already screaming at me just from lugging the wood over here, there's no way I can climb up there and fix the roof like this.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Kroac" + } + }, + { + "fileOverride": "shadowofthebeast-kroac-10", + "lineInfo": { + "dialogue": "I can compensate you for the trouble, but d'you think you could do some patchwork for me with that cobble?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Kroac" + } + }, + { + "fileOverride": "shadowofthebeast-kroac-11", + "lineInfo": { + "dialogue": "Oh, you're a saint. Can't imagine why the guy was grumbling about humans... Just climb right on up the ladder!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Kroac" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "shadowofthebeast-kroac-12", + "lineInfo": { + "dialogue": "That'll do just fine, kind soldier! You're a lifesaver, really, you are.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Kroac" + } + }, + { + "fileOverride": "shadowofthebeast-kroac-13", + "lineInfo": { + "dialogue": "Wait, you're going after the thing that did this? Really?! Fantastic! That's a load off my mind.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Kroac" + } + }, + { + "fileOverride": "shadowofthebeast-kroac-14", + "lineInfo": { + "dialogue": "Looks like there's tracks off to the east...big tracks. Good luck following it, stay safe!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Kroac" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "shadowofthebeast-kroac-15", + "lineInfo": { + "dialogue": "Oh, I'll never be able to fix this with my back in this state...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Kroac" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "shadowofthebeast-rileen-1", + "lineInfo": { + "dialogue": "EVERYONE, MOVE! THE BEAST IS ON A RAMPAGE!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Rileen" + } + }, + { + "fileOverride": "shadowofthebeast-rileen-2", + "lineInfo": { + "dialogue": "Aah, no! There were people in that house!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Rileen" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "shadowofthebeast-rileen-3", + "lineInfo": { + "dialogue": "Wah! H-Human! Get away, there's nothing you can help with here!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Rileen" + } + }, + { + "fileOverride": "shadowofthebeast-rileen-4", + "lineInfo": { + "dialogue": "All your type does is break and hurt! You have more in common with the giant there than any of us!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Rileen" + } + }, + { + "fileOverride": "shadowofthebeast-rileen-5", + "lineInfo": { + "dialogue": "Aah, there's so many people hurt already, don't make it worse, please!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Rileen" + } + }, + { + "fileOverride": "shadowofthebeast-rileen-6", + "lineInfo": { + "dialogue": "We don't even have any medicine...", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Rileen" + } + }, + { + "fileOverride": "shadowofthebeast-rileen-7", + "lineInfo": { + "dialogue": "Ugh, think Rileen! You have the herbs, what else goes into those poultices...", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Rileen" + } + }, + { + "fileOverride": "shadowofthebeast-rileen-8", + "lineInfo": { + "dialogue": "Oh, right! Fish oil...but I don't have a rod, gah!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Rileen" + } + }, + { + "fileOverride": "shadowofthebeast-rileen-9", + "lineInfo": { + "dialogue": "There's no way I can get [10 Salmon Oil], even if that pond out back is teeming with fish...", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Rileen" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "shadowofthebeast-rileen-10", + "lineInfo": { + "dialogue": "No, there's no time to make a fishing spear- AAH! You're still here? What do you WANT?!", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Rileen" + } + }, + { + "fileOverride": "shadowofthebeast-rileen-11", + "lineInfo": { + "dialogue": "W-wait, what's...is this... This is salmon oil! Ten bottles of it! You...you heard me talking?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Rileen" + } + }, + { + "fileOverride": "shadowofthebeast-rileen-12", + "lineInfo": { + "dialogue": "And you went out of your way to... What kind of a human are you? I've only ever heard horror stories about your kind.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Rileen" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "shadowofthebeast-rileen-13", + "lineInfo": { + "dialogue": "...maybe you're not so bad. I don't have anything that I can give you in return, but thank you, still.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Rileen" + } + }, + { + "fileOverride": "shadowofthebeast-rileen-14", + "lineInfo": { + "dialogue": "Wait, you were chasing the giant? That's why you were here? That...that's amazing news!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Rileen" + } + }, + { + "fileOverride": "shadowofthebeast-rileen-15", + "lineInfo": { + "dialogue": "I think it went into the cave east of here. Go for it! Stop that thing before it causes any more damage!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Rileen" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "shadowofthebeast-rileen-16", + "lineInfo": { + "dialogue": "I think the giant went into the cave east of here. Go for it! Stop that thing before it causes any more damage!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Rileen" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "shadowofthebeast-dereg-8", + "lineInfo": { + "dialogue": "You're back! Any luck hunting the thing down?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Dereg" + } + }, + { + "fileOverride": "shadowofthebeast-dereg-9", + "lineInfo": { + "dialogue": "What? You actually found the beast?! Heck of a hunting job, human!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Dereg" + } + }, + { + "fileOverride": "shadowofthebeast-dereg-10", + "lineInfo": { + "dialogue": "You wouldn't be back here if you didn't manage to kill it... which means our problems are solved, right?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Dereg" + } + }, + { + "fileOverride": "shadowofthebeast-dereg-11", + "lineInfo": { + "dialogue": "Heheh! That bone powder looks giant enough to me! Great job, bucko!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Dereg" + } + }, + { + "fileOverride": "shadowofthebeast-dereg-12", + "lineInfo": { + "dialogue": "Y'know, come to think of it, I remember something that might be interesting to your sort.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Dereg" + } + }, + { + "fileOverride": "shadowofthebeast-dereg-13", + "lineInfo": { + "dialogue": "The weapon merchant in Olux researches cryptids as a hobby, and that beast seemed one-of-a-kind to me.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Dereg" + } + }, + { + "fileOverride": "shadowofthebeast-dereg-14", + "lineInfo": { + "dialogue": "You should show him that bone powder! He might have some good gear for you.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Dereg" + } + } + ] + } + } + }, + "The Thanos Depository": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-coulmis-1", + "lineInfo": { + "dialogue": "This is just a disaster... I pray nothing goes awry with the recovery team.", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-2", + "lineInfo": { + "dialogue": "I'd never be able to live it off if I'm responsible for more deaths.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-3", + "lineInfo": { + "dialogue": "But I must do what it takes to protect Thanos from any more disaster.", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-atila-1", + "lineInfo": { + "dialogue": "Sir! Coulmis, sir!", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Atila" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-4", + "lineInfo": { + "dialogue": "Atila, you're back! Give it to me straight, did they succeed? We can't afford any more losses.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-atila-2", + "lineInfo": { + "dialogue": "No, sir... I'm afraid not.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Atila" + } + }, + { + "fileOverride": "thethanosdepository-atila-3", + "lineInfo": { + "dialogue": "The elevator leads right in to where the dragon lays. Without knowing when it's asleep, it's a gamble...", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Atila" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-5", + "lineInfo": { + "dialogue": "So we truly do need to go through the vault. But with the defense systems gone haywire...", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-atila-4", + "lineInfo": { + "dialogue": "I'm sorry sir...", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Atila" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-6", + "lineInfo": { + "dialogue": "Think nothing of it, let's get back to the drawing board.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-atila-5", + "lineInfo": { + "dialogue": "Yes, I'll get to it immediately.", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Atila" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-7", + "lineInfo": { + "dialogue": "You there, human! What's your business here? Come speak to me.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Coulmis" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-atila-6", + "lineInfo": { + "dialogue": "This is not good... I'm not sure what more we can do.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Atila" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-coulmis-8", + "lineInfo": { + "dialogue": "What's your business here? This place is off limits, the vault is very dangerous right now.", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-9", + "lineInfo": { + "dialogue": "Now that I look, say, that gear of yours is pretty high quality, yeah? What's your name?", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-10", + "lineInfo": { + "dialogue": "Soldier I see, I haven't seen you around before.", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Coulmis" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-coulmis-11", + "lineInfo": { + "dialogue": "soldier... where have I heard that name before... Oh, I remember! You're that guy who defeated that Qira woman, yeah?", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-12", + "lineInfo": { + "dialogue": "Nevertheless, Thanos is in danger. To put it simply, a dragon is living uninvited in our despository.", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-13", + "lineInfo": { + "dialogue": "Perhaps you've seen its lair above our city. Normally she leaves us unharmed, but one day she suddenly made her way in to this vault.", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-14", + "lineInfo": { + "dialogue": "My great friend Atila has been leading a recon squad, he's discerned that she's nesting an egg.", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-15", + "lineInfo": { + "dialogue": "We've tried at our greatest expenses to steal the egg, and bring it back to her nest, so that maybe she would leave... But, as you've heard, it's not going well.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-16", + "lineInfo": { + "dialogue": "I don't normally ask this of strangers, but we've run ourselves thin. Do you think you're up to help? I'll make sure it is worth all your trouble.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-17", + "lineInfo": { + "dialogue": "So you'll help!? Thank you so much! I'll make sure it's worth every moment!", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-18", + "lineInfo": { + "dialogue": "You have to go through this chamber behind me to reach the depository. Our only other way in is right where the dragon is...", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-19", + "lineInfo": { + "dialogue": "Atila knows some of the inner workings of the vault. I bid you good luck and will be praying for your success. Your courage will inspire Thanos.", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Coulmis" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-coulmis-20", + "lineInfo": { + "dialogue": "Oh, so it wasn't meant to be I suppose...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-21", + "lineInfo": { + "dialogue": "Well, if we cross paths again, I'll always much appreciate your help... Back to the drawing board...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Coulmis" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-coulmis-22", + "lineInfo": { + "dialogue": "Soldier, you're back! Have you had a change of heart?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-23", + "lineInfo": { + "dialogue": "So you'll help!? Thank you so much! I'll make sure it's worth every moment!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-24", + "lineInfo": { + "dialogue": "You have to go through this chamber behind me to reach the depository. Our only other way in is right where the dragon is...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-25", + "lineInfo": { + "dialogue": "Atila knows some of the inner workings of the vault. I bid you good luck and will be praying for your success. Your courage will inspire Thanos.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Coulmis" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-coulmis-26", + "lineInfo": { + "dialogue": "I've done all that I can do now. If I went in with you, I'd only be a detriment. Good luck.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Coulmis" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-atila-7", + "lineInfo": { + "dialogue": "So you've taken the job. Good luck to you in there.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Atila" + } + }, + { + "fileOverride": "thethanosdepository-atila-8", + "lineInfo": { + "dialogue": "What would you like to know?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Atila" + } + }, + { + "fileOverride": "thethanosdepository-atila-9", + "lineInfo": { + "dialogue": "The way to the depository is guarded by some dragon-like sentinels. They're meant to cook any thieves to be well done.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Atila" + } + }, + { + "fileOverride": "thethanosdepository-atila-10", + "lineInfo": { + "dialogue": "There's a bit of a workaround though, if you kill the living sentinel, they'll deactivate and you can go through.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Atila" + } + }, + { + "fileOverride": "thethanosdepository-atila-11", + "lineInfo": { + "dialogue": "Make sure you don't get scorched either, the statues take a few seconds before they breath their flames. Good luck and godspeed!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Atila" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-atila-12", + "lineInfo": { + "dialogue": "...We've been unable to reach Ozoth through our second entrance. We've ought to strike while she's asleep, but there's no knowing when she is.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Atila" + } + }, + { + "fileOverride": "thethanosdepository-atila-13", + "lineInfo": { + "dialogue": "You'll be going directly in to the chamber. Once you see she's asleep, you book it to the egg!", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Atila" + } + }, + { + "fileOverride": "thethanosdepository-atila-14", + "lineInfo": { + "dialogue": "I understand if you're worried, but right now I can't think of anything else we can do...", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Atila" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-atila-15", + "lineInfo": { + "dialogue": "Oh-oh my gosh!! I took you for dead, and thought the dragon was sending me up a corpse!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Atila" + } + }, + { + "fileOverride": "thethanosdepository-atila-16", + "lineInfo": { + "dialogue": "You really got it!? Hurry then, the nest is up through this cave! Maybe Thanos can finally be rid of its woes...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Atila" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-atila-17", + "lineInfo": { + "dialogue": "Don't wait any longer, soldier! Place the egg and we can finally lure that wretched dragon out!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Atila" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-atila-18", + "lineInfo": { + "dialogue": "She's a beauty, isn't she? A monster though, nevertheless.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Atila" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-27", + "lineInfo": { + "dialogue": "Soldier! Over here... Atila told me the news, I came as fast as I could!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-28", + "lineInfo": { + "dialogue": "You're a hero, lad! With the dragon out of our city, Thanos no longer has to live in fear.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-29", + "lineInfo": { + "dialogue": "I've prepared your reward. The people of Thanos will remember your contribution years to come.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Coulmis" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-atila-19", + "lineInfo": { + "dialogue": "It's a great feat what you've accomplished. The dwarven defense system was thought to be impeccable. We'll need to rethink our security!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Atila" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-coulmis-30", + "lineInfo": { + "dialogue": "The people of Thanos have everlasting gratitude, soldier.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Coulmis" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-coulmis-31", + "lineInfo": { + "dialogue": "Thanos will no longer live in fear! You have my gratitude lad!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-32", + "lineInfo": { + "dialogue": "Once the depository is up and running again, we should have ourselves a hearty feast!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Coulmis" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-atila-20", + "lineInfo": { + "dialogue": "Soldier! Good to meet you again! Coulmis and I have been discussing repairs, and a new defense system.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Atila" + } + }, + { + "fileOverride": "thethanosdepository-atila-21", + "lineInfo": { + "dialogue": "This time it'll be dragon proof.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Atila" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "thethanosdepository-coulmis-33", + "lineInfo": { + "dialogue": "What's your business here? This place is off limits, the vault is very dangerous right now.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Coulmis" + } + }, + { + "fileOverride": "thethanosdepository-coulmis-34", + "lineInfo": { + "dialogue": "We're in dire need of help right now, but I can't send you to die. If you were level 81 though...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Coulmis" + } + } + ] + } + } + }, + "The Ultimate Weapon": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-dodegar-1", + "lineInfo": { + "dialogue": "I'm glad you came along, I could do with a little help if you're not too busy.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-2", + "lineInfo": { + "dialogue": "I'm Dodegar Bandysnoot, the world famous Hobbit swordsmith! Perhaps you^ve heard of me?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-3", + "lineInfo": { + "dialogue": "No? Oh... Well, I've had an idea about how I could make the best weapon that the world has ever seen!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-4", + "lineInfo": { + "dialogue": "But, I need some help getting the special resources to make it.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-5", + "lineInfo": { + "dialogue": "You'll help?! Excellent! We shall gather enough resources to make one for each of us!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-6", + "lineInfo": { + "dialogue": "So firstly, I need some living wood for the handle, [1 Enchanted Stick] should be enough.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-7", + "lineInfo": { + "dialogue": "The wood sprites located across the river to the west, in a big tree trunk, have magical properties! The handle can then mold to the user's hand! One shouldn't be too hard to come across!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-8", + "lineInfo": { + "dialogue": "I hope you are prepared, this will be your best quest yet!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Dodegar" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-dodegar-9", + "lineInfo": { + "dialogue": "Wow! You got the wood I needed, thanks!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-10", + "lineInfo": { + "dialogue": "While I'm making the handle, could you help me with the blade?", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-11", + "lineInfo": { + "dialogue": "Since we want this weapon to be as good as possible we need to find some sacred Hobbit metal!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-12", + "lineInfo": { + "dialogue": "The hobbit village, The Shiar, is really close! Follow the southern road. My brother Gogedar should be there!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Dodegar" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-gogedar-1", + "lineInfo": { + "dialogue": "What a beautiful day to stand here and do nothing.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gogedar" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-gogedar-2", + "lineInfo": { + "dialogue": "My brother you say... Trying to create a weapon...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Gogedar" + } + }, + { + "fileOverride": "ultimateweapon-gogedar-3", + "lineInfo": { + "dialogue": "Hmmm...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Gogedar" + } + }, + { + "fileOverride": "ultimateweapon-gogedar-4", + "lineInfo": { + "dialogue": "Oh he needs Sacred Hobbit Metal!?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Gogedar" + } + }, + { + "fileOverride": "ultimateweapon-gogedar-5", + "lineInfo": { + "dialogue": "Hmm..!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Gogedar" + } + }, + { + "fileOverride": "ultimateweapon-gogedar-6", + "lineInfo": { + "dialogue": "Sorry can't help you. I don't really know what that is.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Gogedar" + } + }, + { + "fileOverride": "ultimateweapon-gogedar-7", + "lineInfo": { + "dialogue": "Maybe ask our cousin, Togedar?", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Gogedar" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-gogedar-8", + "lineInfo": { + "dialogue": "Togedar is much more knowledgable than me...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gogedar" + } + }, + { + "fileOverride": "ultimateweapon-gogedar-9", + "lineInfo": { + "dialogue": "Hmmm...?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gogedar" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-togedar-1", + "lineInfo": { + "dialogue": "This ground sure is soft...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Togedar" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-togedar-2", + "lineInfo": { + "dialogue": "Dodegar? Does not really ring a bell I'm afraid.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Togedar" + } + }, + { + "fileOverride": "ultimateweapon-togedar-3", + "lineInfo": { + "dialogue": "Oh! Gogedar's brother, why didn't you tell me that.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Togedar" + } + }, + { + "fileOverride": "ultimateweapon-togedar-4", + "lineInfo": { + "dialogue": "Sacred Hobbit Metal... This is a metal forged by master blacksmith hobbits within our village. It is a bit expensive to get by but holds great potential, if used properly.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Togedar" + } + }, + { + "fileOverride": "ultimateweapon-togedar-5", + "lineInfo": { + "dialogue": "Oh. You need a piece?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Togedar" + } + }, + { + "fileOverride": "ultimateweapon-togedar-6", + "lineInfo": { + "dialogue": "I don't have any. Maybe ask my nephew's brother Alegdar?", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Togedar" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-togedar-7", + "lineInfo": { + "dialogue": "The metal is rather rare so I don't know if you can even find it...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Togedar" + } + }, + { + "fileOverride": "ultimateweapon-togedar-8", + "lineInfo": { + "dialogue": "My best guess is Alegdar, though!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Togedar" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-alegdar-1", + "lineInfo": { + "dialogue": "Sometimes I think about things.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Alegdar" + } + }, + { + "fileOverride": "ultimateweapon-alegdar-2", + "lineInfo": { + "dialogue": "I don't know why I do that.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Alegdar" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-alegdar-3", + "lineInfo": { + "dialogue": "Oh?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Alegdar" + } + }, + { + "fileOverride": "ultimateweapon-alegdar-4", + "lineInfo": { + "dialogue": "I actually don't know much about... anything.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Alegdar" + } + }, + { + "fileOverride": "ultimateweapon-alegdar-5", + "lineInfo": { + "dialogue": "I kind of just... stand around here.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Alegdar" + } + }, + { + "fileOverride": "ultimateweapon-alegdar-6", + "lineInfo": { + "dialogue": "Everyone I have ever met just calls me annoying and useless. So I decided to stop trying.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Alegdar" + } + }, + { + "fileOverride": "ultimateweapon-alegdar-7", + "lineInfo": { + "dialogue": "You know, life is hard. We all just have to fight through, and then eventually, we might become happy.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Alegdar" + } + }, + { + "fileOverride": "ultimateweapon-alegdar-8", + "lineInfo": { + "dialogue": "Right sorry... Ask Balegar for any information. He is way smarter.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Alegdar" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-alegdar-9", + "lineInfo": { + "dialogue": "Oh?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Alegdar" + } + }, + { + "fileOverride": "ultimateweapon-alegdar-10", + "lineInfo": { + "dialogue": "I actually don't know much about... anything.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Alegdar" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-balegar-1", + "lineInfo": { + "dialogue": "My family in the Shiar are all so stupid.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Balegar" + } + }, + { + "fileOverride": "ultimateweapon-balegar-2", + "lineInfo": { + "dialogue": "I just want to go study at the Llevigar university.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Balegar" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-balegar-3", + "lineInfo": { + "dialogue": "My cousin's nephew's dad has had a rough year... I feel bad for him.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Balegar" + } + }, + { + "fileOverride": "ultimateweapon-balegar-4", + "lineInfo": { + "dialogue": "Oh well!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Balegar" + } + }, + { + "fileOverride": "ultimateweapon-balegar-5", + "lineInfo": { + "dialogue": "I have nooooo clue about that metal. I heard it was just as valuable as a normal rock.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Balegar" + } + }, + { + "fileOverride": "ultimateweapon-balegar-6", + "lineInfo": { + "dialogue": "Maybe my cousin Reyoretrsed knows anything about it.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Balegar" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-balegar-7", + "lineInfo": { + "dialogue": "People really think the metal is special...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Balegar" + } + }, + { + "fileOverride": "ultimateweapon-balegar-8", + "lineInfo": { + "dialogue": "It is just a normal soap stone that looks fancy.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Balegar" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-reyoretrsed-1", + "lineInfo": { + "dialogue": "Reyoretrsed? That's me!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Reyoretrsed" + } + }, + { + "fileOverride": "ultimateweapon-reyoretrsed-2", + "lineInfo": { + "dialogue": "You are wondering how my name is pronounced? What a rude question.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Reyoretrsed" + } + }, + { + "fileOverride": "ultimateweapon-reyoretrsed-3", + "lineInfo": { + "dialogue": "Ray-ore-tree-sed, obviously. What is a human doing here?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Reyoretrsed" + } + }, + { + "fileOverride": "ultimateweapon-reyoretrsed-4", + "lineInfo": { + "dialogue": "You are wondering if I have Sacred whatever metal?", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Reyoretrsed" + } + }, + { + "fileOverride": "ultimateweapon-reyoretrsed-5", + "lineInfo": { + "dialogue": "I'm 7. Now if you excuse me, I am busy standing still. Go bother Richard or something.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Reyoretrsed" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-reyoretrsed-6", + "lineInfo": { + "dialogue": "If anyone ever mentions my name and how dumb it sounds again, I will finally snap.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Reyoretrsed" + } + }, + { + "fileOverride": "ultimateweapon-reyoretrsed-7", + "lineInfo": { + "dialogue": "Mark my words. You do not want to mess with a 7 year old.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Reyoretrsed" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-reyoretrsed-8", + "lineInfo": { + "dialogue": "I'm sleeping.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Reyoretrsed" + } + }, + { + "fileOverride": "ultimateweapon-reyoretrsed-9", + "lineInfo": { + "dialogue": "Shush, old person.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Reyoretrsed" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-richard-1", + "lineInfo": { + "dialogue": "Come talk to me! I have the item. I have it!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Richard" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-richard-2", + "lineInfo": { + "dialogue": "I've been trying to tell you that I have what you need.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Richard" + } + }, + { + "fileOverride": "ultimateweapon-richard-3", + "lineInfo": { + "dialogue": "You humans really need to practice your communication skills, please.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Richard" + } + }, + { + "fileOverride": "ultimateweapon-richard-4", + "lineInfo": { + "dialogue": "Anyway, here. Take it! This metal is just a scam anyway, nothing special with it.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Richard" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-richard-5", + "lineInfo": { + "dialogue": "If you knew how to listen you wouldn't have to go through all of that.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Richard" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-dodegar-13", + "lineInfo": { + "dialogue": "I hope it wasn't too much of an issue to get!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-14", + "lineInfo": { + "dialogue": "... I forgot a step. I can't attach a blade without a binder material.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-15", + "lineInfo": { + "dialogue": "I need the nectar of a native flower of the forest to attach it. [1 Diplacus Aurantiacus] would do the trick.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-16", + "lineInfo": { + "dialogue": "Finding the flower can be rather difficult, here's a riddle on how to find it.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-17", + "lineInfo": { + "dialogue": "On the side of a hut, hidden inside a hole. Resting in a forest of light, without plight. Whatever that would mean.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Dodegar" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-dodegar-18", + "lineInfo": { + "dialogue": "Hold up! This feels waaay, toooo easy.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-19", + "lineInfo": { + "dialogue": "If I'm going to give you this amazingly, incredible, showstopping, crazy item practically for free, you need to at least work for it!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-20", + "lineInfo": { + "dialogue": "Give me that!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-21", + "lineInfo": { + "dialogue": "Let me just...", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-22", + "lineInfo": { + "dialogue": "This looks so much better! Anyway, bring me that flower now!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Dodegar" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-dodegar-23", + "lineInfo": { + "dialogue": "Took you a while, did it not?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-24", + "lineInfo": { + "dialogue": "It's starting to look pretty amazing! Just like it's supposed to I'm sure!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-25", + "lineInfo": { + "dialogue": "Maybe this will actually work out. Either way, last ingredient we need!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-26", + "lineInfo": { + "dialogue": "So to finalize and apply some magical properties to this uniquely amazing item we need something known as Luster Blood.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-27", + "lineInfo": { + "dialogue": "The only known creature in the west, probably the whole world if I'm being frank, is known as the Glow Dust Leaf Beetle of the Underworld, not sure where the name comes from.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-28", + "lineInfo": { + "dialogue": "I happen to know that this Beetle lives in a cave in the eastern ravine thingy! If you walk straight east you will stumble upon it, I promise!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-29", + "lineInfo": { + "dialogue": "Oh! Almost forgot to mention, about 2000 Luster Bloodis probably enough.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Dodegar" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-beetle-1", + "lineInfo": { + "dialogue": "Do not step any closer... Or I will be forced to obliterate you!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + }, + "settings": { + "falloff": 40, + "position": { + "x": -874.0, + "y": 27.0, + "z": -4618.0 + } + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-dodegar-30", + "lineInfo": { + "dialogue": "The final component! It is finally here!", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-31", + "lineInfo": { + "dialogue": "Oh my Orphion!", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-32", + "lineInfo": { + "dialogue": "Do you see how it's glowing, sparkling and... and radiating!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-33", + "lineInfo": { + "dialogue": "You don't? Uhm... maybe you need glasses humie.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Dodegar" + } + }, + { + "fileOverride": "ultimateweapon-dodegar-34", + "lineInfo": { + "dialogue": "As promised! Here you go! Always happy to practice the art of weapon creation.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Dodegar" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-dodegar-35", + "lineInfo": { + "dialogue": "This weapon will definitely be something put in the history books!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Dodegar" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "ultimateweapon-dodegar-36", + "lineInfo": { + "dialogue": "I'm sure of it!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Dodegar" + } + } + ] + } + } + }, + "Time Lost Sanctum": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "timelostsanctum-garoth-1", + "lineInfo": { + "dialogue": "⒣⒜⒮ ⒮⒪⒨⒠⒪⒩⒠ ⒠⒩⒯⒠⒭⒠⒟ ⒯⒣⒠ ⒮⒜⒩⒞⒯⒰⒨2 ⒤ ⒟⒤⒟ ⒩⒪⒯ ⒯⒣⒤⒩⒦ ⒯⒣⒠ ⒝⒤⒩⒟⒤⒩⒢⒮ ⒲⒪⒰⒧⒟ ⒜⒧⒧⒪⒲ ⒠⒩⒯⒭⒴ ⒯⒪ ⒜⒩⒴⒪⒩⒠ ⒡⒭⒪⒨ ⒯⒣⒠ ⒪⒰⒯⒮⒤⒟⒠0 ⒭⒠⒱⒠⒜⒧ ⒴⒪⒰⒭⒮⒠⒧⒡ ⒤⒩⒯⒭⒰⒟⒠⒭1", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "2": { + "dialogues": [ + { + "fileOverride": "timelostsanctum-garoth-2", + "lineInfo": { + "dialogue": " ⒜⒩ ⒜⒩⒞⒣⒪⒭ ⒣⒜⒮ ⒡⒜⒧⒧⒠⒩000 ⒲⒣⒜⒯ ⒜⒭⒠ ⒴⒪⒰ ⒟⒪⒤⒩⒢2 ⒯⒣⒠ ⒮⒜⒩⒞⒯⒰⒨ ⒞⒜⒩⒩⒪⒯ ⒲⒤⒯⒣⒮⒯⒜⒩⒟ ⒮⒰⒞⒣ ⒞⒪⒧⒧⒜⒫⒮⒠0 ⒯⒣⒤⒮ ⒞⒜⒩ ⒮⒯⒤⒧⒧ ⒝⒠ ⒭⒠⒫⒜⒤⒭⒠⒟000", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + }, + { + "fileOverride": "timelostsanctum-garoth-3", + "lineInfo": { + "dialogue": "⒟⒪ ⒩⒪⒯ ⒲⒜⒩⒟⒠⒭ ⒡⒰⒭⒯⒣⒠⒭ ⒤⒩⒯⒭⒰⒟⒠⒭0 ⒤ ⒲⒤⒧⒧ ⒟⒠⒜⒧ ⒲⒤⒯⒣ ⒴⒪⒰ ⒮⒣⒪⒭⒯⒧⒴1 ⒯⒣⒤⒮ ⒨⒰⒮⒯ ⒯⒜⒦⒠ ⒫⒭⒤⒪⒭⒤⒯⒴0", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "3": { + "dialogues": [ + { + "fileOverride": "timelostsanctum-garoth-4", + "lineInfo": { + "dialogue": "⒪⒣ ⒡⒪⒭ ⒣⒠⒜⒱⒠⒩⒮ ⒮⒜⒦⒠- You haven't understood a word I've said, have you? What an unrefined way of speech. Now, if you have intruded here, surely you must know who you are angering.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + }, + { + "fileOverride": "timelostsanctum-garoth-5", + "lineInfo": { + "dialogue": "I am Garoth, master of the temporal arts, the greatest mage to have ever lived! And, if you do not cease your disruption, you will learn firsthand why I have earned these titles.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Garoth" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "4": { + "dialogues": [ + { + "fileOverride": "timelostsanctum-garoth-6", + "lineInfo": { + "dialogue": "You. Do you understand the gravity of what you are doing? What you have done? If the sanctum falls apart, it will pull both of us into the infinite abyss beyond!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Garoth" + } + }, + { + "fileOverride": "timelostsanctum-garoth-7", + "lineInfo": { + "dialogue": "I have expended a great deal of my strength to keep this spell from shattering, and yet you continue to work directly against me! Do you have a death wish!?", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Garoth" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "5": { + "dialogues": [ + { + "fileOverride": "timelostsanctum-garoth-8", + "lineInfo": { + "dialogue": "...So, this is your decision, then? Very well. Bring the sanctum down, destroy thousands of years of knowledge... there is no stopping it now.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Garoth" + } + }, + { + "fileOverride": "timelostsanctum-garoth-9", + "lineInfo": { + "dialogue": "Should you survive the oncoming collapse, I will be waiting. There will be no escape for either of us, not now. You have certainly seen to that.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Garoth" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "6": { + "dialogues": [ + { + "fileOverride": "timelostsanctum-garoth-10", + "lineInfo": { + "dialogue": "Here we are, then! Perhaps I'll find one final bit of comfort in your demise before it all comes to an end.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garoth" + }, + "settings": { + "falloff": 500 + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "timelostsanctum-garoth-11", + "lineInfo": { + "dialogue": "You- I will not stand for this. To think, someone like you could ever stand a chance against someone like me?!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Garoth" + }, + "settings": { + "falloff": 500 + } + }, + { + "fileOverride": "timelostsanctum-garoth-12", + "lineInfo": { + "dialogue": "You haven't seen anything yet. ⒤ ⒞⒜⒧⒧ ⒰⒫⒪⒩ ⒯⒣⒠ ⒫⒪⒲⒠⒭ ⒪⒡ ⒯⒣⒠ ⒣⒠⒜⒱⒠⒩⒮ ⒜⒩⒟ ⒯⒣⒠ ⒜⒝⒴⒮⒮000 ⒞⒜⒮⒯ ⒯⒣⒤⒮ ⒮⒫⒠⒞⒦ ⒪⒰⒯ ⒪⒡ ⒨⒴ ⒮⒤⒢⒣⒯1", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Garoth" + }, + "settings": { + "falloff": 500 + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "timelostsanctum-garoth-13", + "lineInfo": { + "dialogue": "...How are you still standing? Nothing could have possibly withstood that attack... No matter. You will fall before my wrath!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garoth" + }, + "settings": { + "falloff": 500 + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "timelostsanctum-garoth-14", + "lineInfo": { + "dialogue": "Why... won't... you... die!?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Garoth" + }, + "settings": { + "falloff": 500 + } + } + ] + } + } + }, + "Tower of Ascension": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "towerofascencion-ankou-1", + "lineInfo": { + "dialogue": "Hehehe... Hello there.", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Ankou" + } + }, + { + "fileOverride": "towerofascencion-ankou-2", + "lineInfo": { + "dialogue": "Welcome to the Tower of Ascension!", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Ankou" + } + }, + { + "fileOverride": "towerofascencion-ankou-3", + "lineInfo": { + "dialogue": "I challenge you to reach the final floor!", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Ankou" + } + }, + { + "fileOverride": "towerofascencion-ankou-4", + "lineInfo": { + "dialogue": "Have you got what it takes to conquer it?", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Ankou" + } + }, + { + "fileOverride": "towerofascencion-ankou-5", + "lineInfo": { + "dialogue": "Perhaps you would like to know the layout of the tower first? Hehehehe...", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Ankou" + } + }, + { + "fileOverride": "towerofascencion-ankou-6", + "lineInfo": { + "dialogue": "There are 7 floors in this tower, each with ten levels.", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Ankou" + } + }, + { + "fileOverride": "towerofascencion-ankou-7", + "lineInfo": { + "dialogue": "Each floor has nine regular levels and one boss level.", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Ankou" + } + }, + { + "fileOverride": "towerofascencion-ankou-8", + "lineInfo": { + "dialogue": "To pass a regular level, you must collect five tokens from the challenge on that level, and one token from boss levels.", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Ankou" + } + }, + { + "fileOverride": "towerofascencion-ankou-9", + "lineInfo": { + "dialogue": "After you beat a whole floor, you will return here and you can begin the next one...", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Ankou" + } + }, + { + "fileOverride": "towerofascencion-ankou-10", + "lineInfo": { + "dialogue": "So, what do you say? Hehehe...", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Ankou" + } + }, + { + "fileOverride": "towerofascencion-ankou-11", + "lineInfo": { + "dialogue": "Turn left and head to the first floor...if you dare...", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Ankou" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "towerofascencion-ankou-12", + "lineInfo": { + "dialogue": "You have completed my tower, I see...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ankou" + } + }, + { + "fileOverride": "towerofascencion-ankou-13", + "lineInfo": { + "dialogue": "Did you enjoy Death? Many challengers certainly did. Her power is... unmatched, hehehe...", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ankou" + } + }, + { + "fileOverride": "towerofascencion-ankou-14", + "lineInfo": { + "dialogue": "And you... You are unlike them all, yes? Few have managed to ascend these floors.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ankou" + } + }, + { + "fileOverride": "towerofascencion-ankou-15", + "lineInfo": { + "dialogue": "A tower of madness, fueled by Death herself... Quite a challenge, yes?", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ankou" + } + }, + { + "fileOverride": "towerofascencion-ankou-16", + "lineInfo": { + "dialogue": "You have joined us now, champion... Few can claim this victory as their own. Fewer still have held their mind.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ankou" + } + }, + { + "fileOverride": "towerofascencion-ankou-17", + "lineInfo": { + "dialogue": "For this honor... A reward, for you. You have truly earned it... Hehehehe...", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ankou" + } + } + ] + } + } + }, + "Tribal Aggression": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "tribalaggression-caras-1", + "lineInfo": { + "dialogue": "My tribe worries our own business, stranger.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Caras" + } + }, + { + "fileOverride": "tribalaggression-caras-2", + "lineInfo": { + "dialogue": "Oh, my apologies, I did not realize you are a warrior of the province! We would be grateful of your help.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Caras" + } + }, + { + "fileOverride": "tribalaggression-caras-3", + "lineInfo": { + "dialogue": "Our sacred owl totem that we worship was stolen by the cunning Eagle Tribe many years ago. Its magical properties used to bring prosperity to our camp.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Caras" + } + }, + { + "fileOverride": "tribalaggression-caras-4", + "lineInfo": { + "dialogue": "However, the Eagle tribe are not victorious, we possess their mystic eagle totem, but alas, I do not know who was the original thief.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Caras" + } + }, + { + "fileOverride": "tribalaggression-caras-5", + "lineInfo": { + "dialogue": "We have been at war for years now, despite being neighbors. Without our totem, our rivalry will continue for ages and peace will never again be felt in our hearts.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Caras" + } + }, + { + "fileOverride": "tribalaggression-caras-6", + "lineInfo": { + "dialogue": "Retrieve our totem, and the blessing of the Owl spirit will be with you.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Caras" + } + }, + { + "fileOverride": "tribalaggression-caras-7", + "lineInfo": { + "dialogue": "Now, enter the Eagle Camp across the river, you may have to search the camp, I'm sure they have hidden our totem!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Caras" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "tribalaggression-favian-1", + "lineInfo": { + "dialogue": "Greetings, what brings you to the noble Eagle tribe?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Favian" + } + }, + { + "fileOverride": "tribalaggression-favian-2", + "lineInfo": { + "dialogue": "You seek the Owl totem? The cursed Owl tribe trying to retain their lost dignity again.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Favian" + } + }, + { + "fileOverride": "tribalaggression-favian-3", + "lineInfo": { + "dialogue": "Why should we give you their totem back? They stole our source of enlightenment all those years ago.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Favian" + } + }, + { + "fileOverride": "tribalaggression-favian-4", + "lineInfo": { + "dialogue": "Tell you what, if you can retrieve our Eagle Totem, I will allow you to go return the Owl totem.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Favian" + } + }, + { + "fileOverride": "tribalaggression-favian-5", + "lineInfo": { + "dialogue": "I'm sure they hid the totem, but if you are able to find it, I await your return!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Favian" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "tribalaggression-favian-6", + "lineInfo": { + "dialogue": "Wonderful! You may now enter the cave to retrieve the blasted Owl totem.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Favian" + } + }, + { + "fileOverride": "tribalaggression-favian-7", + "lineInfo": { + "dialogue": "Be careful, there are Eagle guardians in the cave, be prepared traveller.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Favian" + } + }, + { + "fileOverride": "tribalaggression-favian-8", + "lineInfo": { + "dialogue": "Once you get the totem, you may return it to its original tribe.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Favian" + } + }, + { + "fileOverride": "tribalaggression-favian-9", + "lineInfo": { + "dialogue": "Hopefully, we two camps will never set foot on another's land in an attempt to steal back the totems, and live in peace.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Favian" + } + }, + { + "fileOverride": "tribalaggression-favian-10", + "lineInfo": { + "dialogue": "Anyways, hurry up, even the thought of the two totems sharing the same space makes me sick.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Favian" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "tribalaggression-caras-8", + "lineInfo": { + "dialogue": "I-Is that, the totem? My, it has been a long time since the owl has been with me. Though I wonder if the Eagle and Owl totem possess the same mystic powers.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Caras" + } + }, + { + "fileOverride": "tribalaggression-caras-9", + "lineInfo": { + "dialogue": "To think, such a long war could end so quickly and by the help of a single person.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Caras" + } + }, + { + "fileOverride": "tribalaggression-caras-10", + "lineInfo": { + "dialogue": "Many thanks to you! I shall keep my promise, please accept this reward, and may the Owl be forever with you.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Caras" + } + } + ] + } + } + }, + "Troubled Tribesmen": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "troubledtribesmen-kalargwit-1", + "lineInfo": { + "dialogue": "Fa yna tuusat! Dra sykel uv drec cylnat dnaa ryc paah lunnibdat.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Ka L'argwit" + } + }, + { + "fileOverride": "troubledtribesmen-kalargwit-2", + "lineInfo": { + "dialogue": "Oui tuh'd ihtancdyht y funt E ys cyoehk. Dryd kio Krattson ybbaync du cbayg ouin myhkiyka.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Ka L'argwit" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "troubledtribesmen-krattson-1", + "lineInfo": { + "dialogue": "Hey! Aren't these people fascinating? They sure smell bad, though! What? That Tribesman said my name?! Amazing! I've been trying to communicate with them for weeks.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Krattson" + } + }, + { + "fileOverride": "troubledtribesmen-krattson-2", + "lineInfo": { + "dialogue": "He sure seems like a distressed little fellow. He keeps pointing to that huge tree right there. A Temple of Legends keeper once told me it's possible to speak with them.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Krattson" + } + }, + { + "fileOverride": "troubledtribesmen-krattson-3", + "lineInfo": { + "dialogue": "He told me that within the woods there is a Shaman who will grant certain people permission to speak their language. I did some traveling through the jungle and actually found him!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Krattson" + } + }, + { + "fileOverride": "troubledtribesmen-krattson-4", + "lineInfo": { + "dialogue": "But despite my efforts, he just sat in silence with his eyes closed. He must've known I wasn't a threat because he was totally exposed. He had no interest in speaking with me, though.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Krattson" + } + }, + { + "fileOverride": "troubledtribesmen-krattson-5", + "lineInfo": { + "dialogue": "Say, who knows, maybe the Shaman will talk to you. It would greatly assist my research if you could help me talk to them. So why don't you give it a shot?", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Krattson" + } + }, + { + "fileOverride": "troubledtribesmen-krattson-6", + "lineInfo": { + "dialogue": "Follow this path to the north. Keep going past the pond and the path will split to the West and to the East. Take the West path, and you will see the Shaman.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Krattson" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "troubledtribesmen-inrekei-1", + "lineInfo": { + "dialogue": "Oui ryja y bufanvim vaam ypuid oui, cdnyhkan. So baubma yna eh tyhkan. Bmayca, dyga drec yht ramb dras.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Inrekei" + } + }, + { + "fileOverride": "troubledtribesmen-inrekei-2", + "lineInfo": { + "dialogue": "I have cast a spell on you. If you can understand me, you are pure of heart.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Inrekei" + } + }, + { + "fileOverride": "troubledtribesmen-inrekei-3", + "lineInfo": { + "dialogue": "This spell will allow those of true spirit to speak and comprehend our language. I have entrusted you with this because of my connection with our sacred tree, who we call Entamis.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Inrekei" + } + }, + { + "fileOverride": "troubledtribesmen-inrekei-4", + "lineInfo": { + "dialogue": "I am the Shaman of my tribe. I sit here every day with my eyes closed and carefully monitor Entamis' wavelengths. She has not been responding to my calls as of late...", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Inrekei" + } + }, + { + "fileOverride": "troubledtribesmen-inrekei-5", + "lineInfo": { + "dialogue": "Dear human, your presence emits warmth and trust. Please go speak with my apprentice, Ka L'argwit. He is to take my place as Shaman when I pass from this life.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Inrekei" + } + }, + { + "fileOverride": "troubledtribesmen-inrekei-6", + "lineInfo": { + "dialogue": "He would know if anything is causing our beautiful tree discomfort. The spell I have cast on you will allow you to speak with him.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Inrekei" + } + }, + { + "fileOverride": "troubledtribesmen-inrekei-7", + "lineInfo": { + "dialogue": "Now, please go seek out Ka L'argwit.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Inrekei" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "troubledtribesmen-kalargwit-3", + "lineInfo": { + "dialogue": "For as long as I am able to recall upon, my people have called this tree our guardian. She shares her magic with those who respect her and keep her healthy.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Ka L'argwit" + } + }, + { + "fileOverride": "troubledtribesmen-kalargwit-4", + "lineInfo": { + "dialogue": "Or so, she did. A few sunrises ago, an outlandish creature cascaded through the tree's magic barrier as if it was made of cotton!", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Ka L'argwit" + } + }, + { + "fileOverride": "troubledtribesmen-kalargwit-5", + "lineInfo": { + "dialogue": "It burrowed deep within the roots, and unleashed huge egg pods. They're filled with disgusting insects that are draining her of protective magic.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Ka L'argwit" + } + }, + { + "fileOverride": "troubledtribesmen-kalargwit-6", + "lineInfo": { + "dialogue": "And to make matters worse.. they must be replacing the magic with corruption. Just look at her, she's obviously very sick!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Ka L'argwit" + } + }, + { + "fileOverride": "troubledtribesmen-kalargwit-7", + "lineInfo": { + "dialogue": "Even some of our own people have lost their minds and have become very dangerous. It just crushes my soul to see this happening before my eyes.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Ka L'argwit" + } + }, + { + "fileOverride": "troubledtribesmen-kalargwit-8", + "lineInfo": { + "dialogue": "Our protective magic is extremely weak right now. If I try to stop the creature myself I will surely be vanquished. You on the other hand, look most protected.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Ka L'argwit" + } + }, + { + "fileOverride": "troubledtribesmen-kalargwit-9", + "lineInfo": { + "dialogue": "It benefits us both if the creature is stopped. You will have a safer time traversing the jungle and our people will be saved.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Ka L'argwit" + } + }, + { + "fileOverride": "troubledtribesmen-kalargwit-10", + "lineInfo": { + "dialogue": "Simply follow the path of destruction. It started at the roots, so you should make your way in from there. Be cautious, and may Entamis guide you.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Ka L'argwit" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "troubledtribesmen-entamis-1", + "lineInfo": { + "dialogue": "Thank you for coming. We haven't but moments. The monster's name is Aenara. He's a fiendish monster of corruption.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Entamis" + } + }, + { + "fileOverride": "troubledtribesmen-entamis-2", + "lineInfo": { + "dialogue": "He unleashed egg pods that host a variety of magic draining insects. They are eating me alive and replacing my magic with evil magic. Soon I will die.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Entamis" + } + }, + { + "fileOverride": "troubledtribesmen-entamis-3", + "lineInfo": { + "dialogue": "You musn't let me be reborn a creature of evil...", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Entamis" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "6": { + "dialogues": [ + { + "fileOverride": "troubledtribesmen-inrekei-8", + "lineInfo": { + "dialogue": "Hello again. I am grateful you have returned safely. You don't need to say anything, though. I no longer can sense Entamis. I know she has died...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Inrekei" + } + }, + { + "fileOverride": "troubledtribesmen-inrekei-9", + "lineInfo": { + "dialogue": "You still managed to prevent her corrupted magic to spread any further. And for that, my people are forever in your debt.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Inrekei" + } + }, + { + "fileOverride": "troubledtribesmen-inrekei-10", + "lineInfo": { + "dialogue": "This insect appears to be the Queen. I'll need to perform a ritual to kill it permanently. But never mind that, I can do that in my own time...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Inrekei" + } + }, + { + "fileOverride": "troubledtribesmen-inrekei-11", + "lineInfo": { + "dialogue": "Please take this. It is but a small gift. Your currency is meaningless to us. In times of peril, few step forward and risk their lives to save those they do not know.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Inrekei" + } + } + ] + } + } + }, + "Tunnel Trouble": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-captainfenor-1", + "lineInfo": { + "dialogue": "Ah! You must be a new recruit! Well, I've got a mission for you.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Captain Fenor" + } + }, + { + "fileOverride": "tunneltrouble-captainfenor-2", + "lineInfo": { + "dialogue": "There's an old cave behind me. It was used in the Corruption Wars...", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Captain Fenor" + } + }, + { + "fileOverride": "tunneltrouble-captainfenor-3", + "lineInfo": { + "dialogue": "We used it for quick and easy travel between Detlas and Ragni. It’s been abandoned for years.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Captain Fenor" + } + }, + { + "fileOverride": "tunneltrouble-captainfenor-4", + "lineInfo": { + "dialogue": "This cave could prove to be very useful for future recruits who need to travel between Detlas and Ragni.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Captain Fenor" + } + }, + { + "fileOverride": "tunneltrouble-captainfenor-5", + "lineInfo": { + "dialogue": "Now, here's where you come in- I need you to clear out that cave route so we can use it once more! Good luck, soldier!", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Captain Fenor" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-minerlinton-1", + "lineInfo": { + "dialogue": "Ah, recruit! You must be the one Cap'n Fenor sent!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Miner Linton" + } + }, + { + "fileOverride": "tunneltrouble-minerlinton-2", + "lineInfo": { + "dialogue": "Well, let’s get started then!", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Miner Linton" + } + }, + { + "fileOverride": "tunneltrouble-minerlinton-3", + "lineInfo": { + "dialogue": "Help me clear this debris. Just walk up to it and give it a good shove for me!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Miner Linton" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-minerlinton-4", + "lineInfo": { + "dialogue": "Nice job! Let's move cautiously, We don't really know what's down here...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Miner Linton" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-minerlinton-5", + "lineInfo": { + "dialogue": "Wait... Do you hear that? Ah, monsters! Do your job soldier!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Miner Linton" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-minerlinton-6", + "lineInfo": { + "dialogue": "Wha?!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Miner Linton" + } + }, + { + "fileOverride": "tunneltrouble-minerlinton-7", + "lineInfo": { + "dialogue": "Ah, that cave-in just blocked the path! Defend me while I try and make a hole!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Miner Linton" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-minerlinton-8", + "lineInfo": { + "dialogue": "Keep it up! I think I'm half way there!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Miner Linton" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-minerlinton-9", + "lineInfo": { + "dialogue": "Aha! I can see the other side! Just a little more...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Miner Linton" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-minerlinton-10", + "lineInfo": { + "dialogue": "Got it, I made a hole! Quickly, let's go before we're overrun!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Miner Linton" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-minerlinton-11", + "lineInfo": { + "dialogue": "This cave barely seems worth the trouble to me...", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Miner Linton" + } + }, + { + "fileOverride": "tunneltrouble-minerlinton-12", + "lineInfo": { + "dialogue": "This wall of debris is much too big for us to be able to move. What do we do now?", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Miner Linton" + } + }, + { + "fileOverride": "tunneltrouble-minerlinton-13", + "lineInfo": { + "dialogue": "hmm... Maybe if we- wait, what's happening to the wall to the right?", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Miner Linton" + } + }, + { + "fileOverride": "tunneltrouble-drale-1", + "lineInfo": { + "dialogue": "Oh, uh... Hi... Well, this is a little awkward... I'll just... Go.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "???" + } + }, + { + "fileOverride": "tunneltrouble-minerlinton-14", + "lineInfo": { + "dialogue": "...Who in the world was that? You can go check that hole out if you want, but I'll stay here and try to think of a solution to this debris.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Miner Linton" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-drale-2", + "lineInfo": { + "dialogue": "Oh... Didn't expect you to follow me... Well, um... Hi! This will sound mad but...", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "tunneltrouble-drale-3", + "lineInfo": { + "dialogue": "I'm Drale, and I'm on a mission to free these cows from the enslavement of Katoa Ranch.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "tunneltrouble-drale-4", + "lineInfo": { + "dialogue": "Those farmers stole those cows. They are sacred animals. Now they're about to turn them into steak! If you were to help me, maybe I could help you...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "tunneltrouble-drale-5", + "lineInfo": { + "dialogue": "Go free those innocent cows from enslavement! Qu-quickly! Before that farmer gets back...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Drale" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-drale-6", + "lineInfo": { + "dialogue": "Where are you going? Come here and talk to me first.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Drale" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-drale-7", + "lineInfo": { + "dialogue": "Go free those cows from the farmers before they're taken to the slaughterhouse! Oh man, the slaughterhouse...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Drale" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-bylvis-1", + "lineInfo": { + "dialogue": "Ah, good to see my cows are all in tip-top shape! Welp, time to- gah!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Bylvis" + }, + "settings": { + "falloff": 60 + } + }, + { + "fileOverride": "tunneltrouble-bylvis-2", + "lineInfo": { + "dialogue": "An intruder! What are you doing with my cows!? Guard golem! Attack!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Bylvis" + }, + "settings": { + "falloff": 60 + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-bylvis-3", + "lineInfo": { + "dialogue": "Golem! No! That cost me thousands of emeralds!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bylvis" + }, + "settings": { + "falloff": 60 + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-drale-8", + "lineInfo": { + "dialogue": "Thank you so much, but we're not done yet. We need to get these cows out the province.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "tunneltrouble-drale-9", + "lineInfo": { + "dialogue": "There's a small opening behind me. Go through it and help me get these cows on a raft to Gavel!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Drale" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-drale-10", + "lineInfo": { + "dialogue": "There's the raft! Help me push it for the cows!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Drale" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-drale-11", + "lineInfo": { + "dialogue": "And, that should do it! Be free, my friends! A new life awaits!", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "tunneltrouble-drale-12", + "lineInfo": { + "dialogue": "Again, thank you so much for what you have done this day. These cows deserve a better life than being farm animals.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "tunneltrouble-drale-13", + "lineInfo": { + "dialogue": "...Oh! Right! You were busy with something before you came to help me, weren't you? Hm... I think I might be able to help you with that as well! Let's go back to the tunnel!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Drale" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-minerlinton-15", + "lineInfo": { + "dialogue": "Recruit, what took you so long? I've been waiting for an hour! What were you doing?", + "line": { + "current": 1, + "max": 11 + }, + "npc": "Miner Linton" + } + }, + { + "fileOverride": "tunneltrouble-minerlinton-16", + "lineInfo": { + "dialogue": "...You helped some crazy cow-obsessed lunatic steal cows from the local farm? Recruit, that's against the law you know...", + "line": { + "current": 2, + "max": 11 + }, + "npc": "Miner Linton" + } + }, + { + "fileOverride": "tunneltrouble-minerlinton-17", + "lineInfo": { + "dialogue": "Oh, what do I care? Silly Bovemists.", + "line": { + "current": 3, + "max": 11 + }, + "npc": "Miner Linton" + } + }, + { + "fileOverride": "tunneltrouble-minerlinton-18", + "lineInfo": { + "dialogue": "Either way, we still don't have any means to get rid of this giant pile of rubble...", + "line": { + "current": 4, + "max": 11 + }, + "npc": "Miner Linton" + } + }, + { + "fileOverride": "tunneltrouble-drale-14", + "lineInfo": { + "dialogue": "Hello again, friend! I'm here with the help! Cows, to me!", + "line": { + "current": 5, + "max": 11 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "tunneltrouble-minerlinton-19", + "lineInfo": { + "dialogue": "What in the world?", + "line": { + "current": 6, + "max": 11 + }, + "npc": "Miner Linton" + } + }, + { + "fileOverride": "tunneltrouble-drale-15", + "lineInfo": { + "dialogue": "Since you helped me with my problem, I thought I should repay that favor by helping you!", + "line": { + "current": 7, + "max": 11 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "tunneltrouble-drale-16", + "lineInfo": { + "dialogue": "Welp, see ya! Oh, and nice to meet you, miner! Now, let's get going my cows!", + "line": { + "current": 8, + "max": 11 + }, + "npc": "Drale" + } + }, + { + "fileOverride": "tunneltrouble-minerlinton-20", + "lineInfo": { + "dialogue": "...What just happened? Am I seeing things? You know what, I don't want to know.", + "line": { + "current": 9, + "max": 11 + }, + "npc": "Miner Linton" + } + }, + { + "fileOverride": "tunneltrouble-minerlinton-21", + "lineInfo": { + "dialogue": "Anyway, why don't you go on ahead? I'll be here guarding this passage so nothing else bad happens to it.", + "line": { + "current": 10, + "max": 11 + }, + "npc": "Miner Linton" + } + }, + { + "fileOverride": "tunneltrouble-minerlinton-22", + "lineInfo": { + "dialogue": "It was an honor to adventure with you, recruit!", + "line": { + "current": 11, + "max": 11 + }, + "npc": "Miner Linton" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-sergeantklafson-1", + "lineInfo": { + "dialogue": "Recruit, Captain Fenor told me to meet you here, said if you came out on this side of that tunnel then you completed your mission!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Sergeant Klafson" + } + }, + { + "fileOverride": "tunneltrouble-sergeantklafson-2", + "lineInfo": { + "dialogue": "You did a great deed today, soldier! We can now use this cave to travel easily between Ragni and Detlas! Great job!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Sergeant Klafson" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-sergeantklafson-3", + "lineInfo": { + "dialogue": "Halt! You cannot go down this cave, it is blocked.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sergeant Klafson" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-sergeantklafson-4", + "lineInfo": { + "dialogue": "Hello again, soldier! Doing great things around the province, I presume?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sergeant Klafson" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "tunneltrouble-sergeantklafson-5", + "lineInfo": { + "dialogue": "I'm sorry, recruit, but that passage is blocked. We used to use it, but not anymore...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sergeant Klafson" + } + } + ] + } + } + }, + "Undergrowth Ruins": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "undergrowthruins-slykaar-1", + "lineInfo": { + "dialogue": "I can sense your life force... it is very powerful. I shall take pleasure in draining it from your body!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "???" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "undergrowthruins-slykaar-2", + "lineInfo": { + "dialogue": "Troms used to beckon to my every need and desire... Even sacrifice it's own children for my magical defense!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Slykaar" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "undergrowthruins-slykaar-3", + "lineInfo": { + "dialogue": "Now the city will truly get to witness what power they have discarded.. They will see they made the wrong call.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Slykaar" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "undergrowthruins-slykaar-4", + "lineInfo": { + "dialogue": "Nothing and no one will stop me from sieging the city. Not even you!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Slykaar" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "undergrowthruins-slykaar-5", + "lineInfo": { + "dialogue": "You have made the sacrifices of many be in total vain!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Slykaar" + } + } + ] + } + }, + "settings": { + "followPlayer": true + } + }, + "Underice": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "underice-fredris-1", + "lineInfo": { + "dialogue": "I’m having trouble with the fish in our lake recently and I am sure the problem lies within the lake itself.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Fredris" + } + }, + { + "fileOverride": "underice-fredris-2", + "lineInfo": { + "dialogue": "I would like to commission you to investigate, but since it's freezing cold in our lake you need something to protect you. I heard the people in Maltic on the coast of Wynn have something that can help you.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Fredris" + } + }, + { + "fileOverride": "underice-fredris-3", + "lineInfo": { + "dialogue": "Would you mind coming back with a [Breathing Helmet I]? I think that should be everything you need.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Fredris" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "underice-calamaro-1", + "lineInfo": { + "dialogue": "Who are you? You don't look like one of those villagers we stole the fi... Wait, they didn't send you to retrieve \"their\" fish, did they?", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Calamaro" + } + }, + { + "fileOverride": "underice-calamaro-2", + "lineInfo": { + "dialogue": "For years we let them share the lake with us, the actual inhabitants of it, we were modest and took what we needed, we let them catch the rest. But then they went too far, they caught too much.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Calamaro" + } + }, + { + "fileOverride": "underice-calamaro-3", + "lineInfo": { + "dialogue": "We didn't have enough to eat, we were forced to steal their fish, we would have starved otherwise. And now they want their fish, our fish back? We can't do that, I hope you understand.", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Calamaro" + } + }, + { + "fileOverride": "underice-calamaro-4", + "lineInfo": { + "dialogue": "However we don't have to fight over the fish in the lake, we just need a [Mythic Everlasting Pufferfish], that would be enough, nothing else. We never wanted to steal the fish.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Calamaro" + } + }, + { + "fileOverride": "underice-calamaro-5", + "lineInfo": { + "dialogue": "If you want to help us and the villagers, just follow the stream that flows into this lake to the south, you will find the best fishing ground there. The pufferfish should be around there too.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Calamaro" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "underice-gernald-1", + "lineInfo": { + "dialogue": "Oh you look a bit lost, let me help you, I've lived here for a long time, I know every corner and every snowflake.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Gernald" + } + }, + { + "fileOverride": "underice-gernald-2", + "lineInfo": { + "dialogue": "You're searching a [Mythic Everlasting Pufferfish]? Hmm I heard that name before, my friend, Strato, told me about it years ago. If I remember correctly it is infinite, you can feed every single person in all the provinces from this single fish.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Gernald" + } + }, + { + "fileOverride": "underice-gernald-3", + "lineInfo": { + "dialogue": "Sadly Strato is no longer alive. He used to work and live at the woodcutting camp northwest of Nesaak. We always met here, caught fish and told each other stories. I really miss those times...", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Gernald" + } + }, + { + "fileOverride": "underice-gernald-4", + "lineInfo": { + "dialogue": "Maybe you can find some sort of bait there, he had some of the best bait I have ever seen. You should be able to acquire some and throw it in the water, maybe that will attract the pufferfish.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Gernald" + } + }, + { + "fileOverride": "underice-gernald-5", + "lineInfo": { + "dialogue": "Can I ask you something? As you might see I'm not the richest guy, or the youngest. If you manage to catch that fish, could you hand it over? I know we just met but you seem like somebody who would help an old man.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Gernald" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "underice-gernald-6", + "lineInfo": { + "dialogue": "Just look at those fish, I told you they love this bait.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Gernald" + } + }, + { + "fileOverride": "underice-gernald-7", + "lineInfo": { + "dialogue": "There it comes, the [Mythic Everlasting Pufferfish], I can't believe it!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Gernald" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "underice-gernald-8", + "lineInfo": { + "dialogue": "You decided to give me the fish? I wish Strato was still around, he would be so amazed. I can't show you how much this means to me, but take this little gift please, promise me to never change.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Gernald" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "underice-calamaro-6", + "lineInfo": { + "dialogue": "You found a pufferfish! Who would have thought such a small thing could solve our problem. I will start bringing back the fish immediately, but first we will have a nice hot soup. Please take this as payback for your services.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Calamaro" + } + }, + { + "fileOverride": "underice-calamaro-7", + "lineInfo": { + "dialogue": "You can trade it at the shop right over there, it's hard to miss. I will give you a last advise, you don't want to eat that slimy fish.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Calamaro" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "underice-fredris-4", + "lineInfo": { + "dialogue": "Oh you are done with whatever you were doing? I heard you ran around the whole place, I don't know if you were the right person to ask for help...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Fredris" + } + }, + { + "fileOverride": "underice-fredris-5", + "lineInfo": { + "dialogue": "I will just ask the next one who comes around, no need to have you run around all day. Take this, I appreciate your effort.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Fredris" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "underice-fredris-6", + "lineInfo": { + "dialogue": "What is this thing supposed to be? You know, I would really appreciate your help, but this [Breathing Helmet I] does not look like it's going to keep you protected.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Fredris" + } + }, + { + "fileOverride": "underice-fredris-7", + "lineInfo": { + "dialogue": "Would you mind heading to our local armour merchant and buying one of our [Breathing Helmet II]? I don't want you to drown. Just come back with the helmet and I will tell you about my problem.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Fredris" + } + } + ] + } + } + }, + "Underwater": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "underwater-omango-1", + "lineInfo": { + "dialogue": "Go through the cave and talk with my friend Sayrr, he can give you the helmet. After that, explore the ship and bring me [4 Ancient Treasure].", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Omango" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "underwater-omango-2", + "lineInfo": { + "dialogue": "Glad to see you again!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Omango" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "underwater-omango-3", + "lineInfo": { + "dialogue": "You are too low level to help me, yet. Come back when you are level 8.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Omango" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "underwater-omango-4", + "lineInfo": { + "dialogue": "It would be madness to explore this hole without a breathing helmet!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Omango" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "underwater-omango-5", + "lineInfo": { + "dialogue": "Hi, my name is Omango. I am a resident of the Maltic village, on top of the hill.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Omango" + } + }, + { + "fileOverride": "underwater-omango-6", + "lineInfo": { + "dialogue": "As you may know, our people came to your land years ago, and this is the ship they used.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Omango" + } + }, + { + "fileOverride": "underwater-omango-7", + "lineInfo": { + "dialogue": "They brought lots of luxurious goods with them. Most of them got lost in the wreck.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Omango" + } + }, + { + "fileOverride": "underwater-omango-8", + "lineInfo": { + "dialogue": "But recently, a small hole has opened in the shipwreck here. It is believed that our fortune is hidden within it.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Omango" + } + }, + { + "fileOverride": "underwater-omango-9", + "lineInfo": { + "dialogue": "Unfortunately, nobody has been able to explore it. It is too deep, no creature can survive underwater that long!", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Omango" + } + }, + { + "fileOverride": "underwater-omango-10", + "lineInfo": { + "dialogue": "However, my old friend Sayrr is a fisherman, and I know that he has a very special helmet...", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Omango" + } + }, + { + "fileOverride": "underwater-omango-11", + "lineInfo": { + "dialogue": "If you convince him to give you this helmet, and find the treasure, I'll give you a part of it!", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Omango" + } + }, + { + "fileOverride": "underwater-omango-12", + "lineInfo": { + "dialogue": "Sayrr is out on his boat, but the cave next to me is a quick way over to where he does his fishing. Be careful on the way, though.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Omango" + } + }, + { + "fileOverride": "underwater-omango-13", + "lineInfo": { + "dialogue": "When you finally have the helmet, explore the ship and bring me back [4 Ancient Treasure]. Good luck.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Omango" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "underwater-sayrr-1", + "lineInfo": { + "dialogue": "Why ya looking at me like that? Is it cause I'm small, eh? I'll have you know that I caught fish that were twice your size!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Sayrr" + } + }, + { + "fileOverride": "underwater-sayrr-2", + "lineInfo": { + "dialogue": "...or, well, I used to be able to. Nothing's biting recently- wait a sec, why'd you hop on my boat anyways, stranger?", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Sayrr" + } + }, + { + "fileOverride": "underwater-sayrr-3", + "lineInfo": { + "dialogue": "Ahah! Yes, I still have that old breathing helmet. You want it? You'll have to do something for me first.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Sayrr" + } + }, + { + "fileOverride": "underwater-sayrr-4", + "lineInfo": { + "dialogue": "I'm sure you heard me, but the fish just aren't biting around here anymore! I need to make a living somehow! There's some fish in that cave, but...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Sayrr" + } + }, + { + "fileOverride": "underwater-sayrr-5", + "lineInfo": { + "dialogue": "...it's a bit dangerous. Tell ya what, I'll give you my fishing rod, and you can go catch me, say, [10 Gudgeon Meat] down there.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Sayrr" + } + }, + { + "fileOverride": "underwater-sayrr-6", + "lineInfo": { + "dialogue": "The helmet will be all yours after that.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Sayrr" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "underwater-sayrr-7", + "lineInfo": { + "dialogue": "Ah! Welcome back! Any luck with the fish?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Sayrr" + } + }, + { + "fileOverride": "underwater-sayrr-8", + "lineInfo": { + "dialogue": "Great, and I'll thank you kindly. Here's your helmet, have fun with that.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Sayrr" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "underwater-sayrr-9", + "lineInfo": { + "dialogue": "I will need those [10 Gudgeon Meat] from the cave if you want that helmet!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sayrr" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "underwater-sayrr-10", + "lineInfo": { + "dialogue": "You have lost the helmet already?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Sayrr" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "underwater-sayrr-11", + "lineInfo": { + "dialogue": "Let me help you then! Bring me back [10 Gudgeon Meat] from the cave just like last time and i will give you one back! Deal?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Sayrr" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "underwater-sayrr-12", + "lineInfo": { + "dialogue": "You are back already?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Sayrr" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "underwater-sayrr-13", + "lineInfo": { + "dialogue": "It seems you got everything i needed, here is your brand new helmet!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Sayrr" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "underwater-sayrr-14", + "lineInfo": { + "dialogue": "You should go see Omango back near the crashed ship!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Sayrr" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "underwater-omango-14", + "lineInfo": { + "dialogue": "You got it! You found the treasure!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Omango" + } + }, + { + "fileOverride": "underwater-omango-15", + "lineInfo": { + "dialogue": "As promised, here's your part of the loot.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Omango" + } + } + ] + } + } + }, + "Underworld Crypt": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "underworldcrypt-generalgraken-1", + "lineInfo": { + "dialogue": "Aha, chap! Wonderful, the Ragni regiment's gotten its representative down 'ere. All rested up, I suppose, so let me give you an earful.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "General Graken" + } + }, + { + "fileOverride": "underworldcrypt-generalgraken-2", + "lineInfo": { + "dialogue": "Those blighting zombies are all over the place. I tell ya, this skull's been giving the folk in Nemract the collywobbles. Just as I thought, they're all coming from here.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "General Graken" + } + }, + { + "fileOverride": "underworldcrypt-generalgraken-3", + "lineInfo": { + "dialogue": "Now, I don't wish to alarm you old bean, but I believe we are in front of the literal gates to hell.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "General Graken" + } + }, + { + "fileOverride": "underworldcrypt-generalgraken-4", + "lineInfo": { + "dialogue": "Not to worry chuck! Don’t look so glum, I've called for aid from the nearby towns. Once they get here we'll give them a good kicking, and you've already gotten out of there before, ain't ya?", + "line": { + "current": 4, + "max": 6 + }, + "npc": "General Graken" + } + }, + { + "fileOverride": "underworldcrypt-generalgraken-5", + "lineInfo": { + "dialogue": "Now is finally our chance to take down his army... It will be a jolly difficult battle, knowing our opponent and what he's managed, even away from his lair.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "General Graken" + } + }, + { + "fileOverride": "underworldcrypt-generalgraken-6", + "lineInfo": { + "dialogue": "Still, early days to say what he could be like in person! I'll take another route, but we'll meet in front of his door, right after crossing the river. Good luck, old bean!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "General Graken" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "underworldcrypt-generalgraken-7", + "lineInfo": { + "dialogue": "Simply marvellous work, chap! You've made it this far, so no time to fill your boots. Be prepared, we are about to fight Charon's undead army.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "General Graken" + } + }, + { + "fileOverride": "underworldcrypt-generalgraken-8", + "lineInfo": { + "dialogue": "We've lost a lot of good men on the way here, but I believe we can still throw a heavy punch.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "General Graken" + } + }, + { + "fileOverride": "underworldcrypt-generalgraken-9", + "lineInfo": { + "dialogue": "You've earned a lot of respect from the boys this fight, better than all of us I'd say. For this fight, I'll let you direct the army.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "General Graken" + } + }, + { + "fileOverride": "underworldcrypt-generalgraken-10", + "lineInfo": { + "dialogue": "Don't take it as a promotion though, old bean. It's only for this fight, although you'll be getting a medal of valor if I can wangle it! Charon's army is remarkably strong, we need as much help as we can get.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "General Graken" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "underworldcrypt-generalgraken-11", + "lineInfo": { + "dialogue": "Aey- soldier careful now, the cretin must be lurking around here somewhere.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "General Graken" + } + }, + { + "fileOverride": "underworldcrypt-charon-1", + "lineInfo": { + "dialogue": "I see you've brought aid, you aren't as foolish as I thought.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Charon" + } + }, + { + "fileOverride": "underworldcrypt-charon-2", + "lineInfo": { + "dialogue": "Tell me, how do you plan to defeat an army that cannot die!?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Charon" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "underworldcrypt-charon-3", + "lineInfo": { + "dialogue": "Rise my minions! An undead army at my service, do you really think you stand a chance?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Charon" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "underworldcrypt-charon-4", + "lineInfo": { + "dialogue": "You will suffer the same fate as those before you, summon thee souls from beneath!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Charon" + } + } + ] + } + } + }, + "Wrath of the Mummy": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "wrathofthemummy-ormrod-1", + "lineInfo": { + "dialogue": "Uh, you shouldn't have come here!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Ormrod" + } + }, + { + "fileOverride": "wrathofthemummy-ormrod-2", + "lineInfo": { + "dialogue": "I am cursed. Everywhere I go, trouble starts. I decided to stay away from civilization, where I can't cause any more trouble.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Ormrod" + } + }, + { + "fileOverride": "wrathofthemummy-ormrod-3", + "lineInfo": { + "dialogue": "It all started when I discovered an old tomb... upon entering it, the ground started shaking and I heard some inhuman screams coming from the tomb.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Ormrod" + } + }, + { + "fileOverride": "wrathofthemummy-ormrod-4", + "lineInfo": { + "dialogue": "I ran as far as I could. I learnt after that this was the tomb of a mummy... that I accidentally have awoken.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Ormrod" + } + }, + { + "fileOverride": "wrathofthemummy-ormrod-5", + "lineInfo": { + "dialogue": "If you could get rid of this mummy, maybe the curse would go away.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Ormrod" + } + }, + { + "fileOverride": "wrathofthemummy-ormrod-6", + "lineInfo": { + "dialogue": "Achper knows a lot about mummies, you should go talk to him. He lives somewhere in Almuj.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Ormrod" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "wrathofthemummy-achper-1", + "lineInfo": { + "dialogue": "If I know about mummies? Of course! I've spent my entire life studying them!", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Achper" + } + }, + { + "fileOverride": "wrathofthemummy-achper-2", + "lineInfo": { + "dialogue": "They usually are very hard to reach, hidden in their tomb.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Achper" + } + }, + { + "fileOverride": "wrathofthemummy-achper-3", + "lineInfo": { + "dialogue": "I know what happened to Ormrod, and the only way to remove the powerful curse would be to kill the mummy.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Achper" + } + }, + { + "fileOverride": "wrathofthemummy-achper-4", + "lineInfo": { + "dialogue": "The tomb is north from here, but be very careful!", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Achper" + } + }, + { + "fileOverride": "wrathofthemummy-achper-5", + "lineInfo": { + "dialogue": "Mummies aren't known to be weak... especially that one. It's demonic...pure evil, I have never seen such strength in a being.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Achper" + } + }, + { + "fileOverride": "wrathofthemummy-achper-6", + "lineInfo": { + "dialogue": "On top of that, the Creden Tibus bandit clan have been ransacking the tomb. They might not let you inside without some negotiating.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Achper" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "wrathofthemummy-achper-7", + "lineInfo": { + "dialogue": "Glad to hear you came back alive! Those mummies aren't always easy, eh?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Achper" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "wrathofthemummy-achper-8", + "lineInfo": { + "dialogue": "Hi! If you are looking for some information about mummies, I can help you!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Achper" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "wrathofthemummy-bandit-1", + "lineInfo": { + "dialogue": "Hey, what are you doing? If you're trying to loot the tomb, me and the other Creden Tibus already beat you to it.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Bandit" + } + }, + { + "fileOverride": "wrathofthemummy-bandit-2", + "lineInfo": { + "dialogue": "But if you can bring me [1 Block of Pink Wool], I'll look the other way and let you into the tomb. I know it sounds ridiculous, but it's valuable.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Bandit" + } + }, + { + "fileOverride": "wrathofthemummy-bandit-3", + "lineInfo": { + "dialogue": "You can get it from Rymek in the southern canyon. Only other way if from a rare sheep or something, so Rymek's the better option.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Bandit" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "wrathofthemummy-bandit-4", + "lineInfo": { + "dialogue": "Well, whaddya know? You got some Pink Wool! Okay, hand it here and I'll look the other way and let you into the tomb.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Bandit" + } + }, + { + "fileOverride": "wrathofthemummy-bandit-5", + "lineInfo": { + "dialogue": "But I feel like it's only fair that I warn you that it's dangerous in there.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Bandit" + } + }, + { + "fileOverride": "wrathofthemummy-bandit-6", + "lineInfo": { + "dialogue": "It took our entire clan just to make it out alive.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Bandit" + } + }, + { + "fileOverride": "wrathofthemummy-bandit-7", + "lineInfo": { + "dialogue": "I'll still let you inside if you want. Just remember, if anyone asks, this conversation never happened.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Bandit" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "wrathofthemummy-ormrod-7", + "lineInfo": { + "dialogue": "Uh, hello again... What are those bandages?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ormrod" + } + }, + { + "fileOverride": "wrathofthemummy-ormrod-8", + "lineInfo": { + "dialogue": "Those are the mummy's bandages?! You did it! My curse is finally lifted!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ormrod" + } + }, + { + "fileOverride": "wrathofthemummy-ormrod-9", + "lineInfo": { + "dialogue": "I can't thank you enough! As a reward, take this rag I got from the mummy when I entered the tomb.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ormrod" + } + }, + { + "fileOverride": "wrathofthemummy-ormrod-10", + "lineInfo": { + "dialogue": "I am not strong enough to wear it, but I'm sure you are! Take these emeralds too, that's the least I can do!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ormrod" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "wrathofthemummy-ormrod-11", + "lineInfo": { + "dialogue": "Thank you so much for removing the curse!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ormrod" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "wrathofthemummy-ormrod-12", + "lineInfo": { + "dialogue": "Don't stand close to me, I am cursed! Come back when you're level 36, you might be able to help me.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Ormrod" + } + } + ] + } + } + }, + "Wynn Plains": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "wynnplains-basementdweller-1", + "lineInfo": { + "dialogue": "*Hic* Wha, whozit? Oh geez, I should lay off tha old *hic* Nemract", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Basement Dweller" + } + }, + { + "fileOverride": "wynnplains-basementdweller-2", + "lineInfo": { + "dialogue": "Wha, yer *hic* real? Wha're ya doin' in mah house then?!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Basement Dweller" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "wynnplains-guard-1", + "lineInfo": { + "dialogue": "NOW!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Guard" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "wynnplains-guard-2", + "lineInfo": { + "dialogue": "Get them off me!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Guard" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "wynnplains-guard-3", + "lineInfo": { + "dialogue": "Seems like we fended them off this time... those were the last.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Guard" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-guard-4", + "lineInfo": { + "dialogue": "We better get started repairing all this, who knows whe-", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Guard" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "wynnplains-guard-5", + "lineInfo": { + "dialogue": "IT'S HIM! We gotta take him out!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Guard" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "wynnplains-bakal-1", + "lineInfo": { + "dialogue": "Fools! Courage won't help you as a corpse.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "wynnplains-townguard-1", + "lineInfo": { + "dialogue": "Has everyone gotten to safety?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Town Guard" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-guardleader-1", + "lineInfo": { + "dialogue": "There was no time to evacuate, so I told them to go inside and block their doors. I just hope they all listened.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Guard Leader" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-townguard-2", + "lineInfo": { + "dialogue": "But is it enough? I don't know if the three of us are going to be enough to protect the town from...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Town Guard" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-guardleader-2", + "lineInfo": { + "dialogue": "Get ready, men! He's coming!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Guard Leader" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "wynnplains-bakal-2", + "lineInfo": { + "dialogue": "An army is only an army if it is coordinated. This...", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bakal-3", + "lineInfo": { + "dialogue": "...is no army.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bakal-4", + "lineInfo": { + "dialogue": "I seem to have overestimated the humans.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bakal-5", + "lineInfo": { + "dialogue": "I think my army can take care of this.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bakal-6", + "lineInfo": { + "dialogue": "Go.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bakal-7", + "lineInfo": { + "dialogue": "Good. Leave no survivors.", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "wynnplains-towncitizen1-1", + "lineInfo": { + "dialogue": "It's a dead end! What do we d-?", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Town Citizen" + }, + "settings": { + "falloff": 90 + } + } + ], + "settings": { + "followPlayer": true + } + }, + "10": { + "dialogues": [ + { + "fileOverride": "wynnplains-towncitizen2-1", + "lineInfo": { + "dialogue": "Come on, open up! Let me in!", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Town Citizen" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-towncitizen2-2", + "lineInfo": { + "dialogue": "Please, let me in! I don't want to die!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Town Citizen" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "wynnplains-bakal-8", + "lineInfo": { + "dialogue": "I sense no traces of life.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bakal-9", + "lineInfo": { + "dialogue": "Burn it all. Leave nothing.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bakal-10", + "lineInfo": { + "dialogue": "Let the ashes serve as a reminder that...", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bakal-11", + "lineInfo": { + "dialogue": "Every city will suffer the same fate.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Bak'al" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "12": { + "dialogues": [ + { + "fileOverride": "wynnplains-farmer-1", + "lineInfo": { + "dialogue": "Gods, NO!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Farmer" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "wynnplains-bakal-12", + "lineInfo": { + "dialogue": "The darkness must spread.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "wynnplains-dyingolm-1", + "lineInfo": { + "dialogue": "Ahhh...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "???" + } + }, + { + "fileOverride": "wynnplains-dyingolm-2", + "lineInfo": { + "dialogue": "⒯⒣⒠ ⒪⒧⒨ ⒞⒜⒩⒩⒪⒯ ⒮⒰⒭⒱⒤⒱⒠ ⒣⒠⒭⒠. ⒯⒤⒨⒠ ⒣⒜⒮ ⒝⒠⒠⒩ ⒭⒤⒫⒫⒠⒟ ⒜⒮⒰⒩⒟⒠⒭... ⒪⒰⒭ ⒪⒩⒧⒴ ⒣⒪⒫⒠ ⒤⒮... ⒯⒣⒠ ⒠⒳⒫⒜⒩⒮-0", + "line": { + "current": 2, + "max": 2 + }, + "npc": "???" + }, + "settings": { + "position": { + "x": -406.0, + "y": 56.0, + "z": -1111.0 + } + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "wynnplains-ragamal-1", + "lineInfo": { + "dialogue": "HEY! You stay out of that tent, you filthy rich soldier kid! You already got everything you need!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Ragamal" + } + }, + { + "fileOverride": "wynnplains-ragamal-2", + "lineInfo": { + "dialogue": "I scrounged and saved and bought that old box of fruit fair and square, it's mine! You want some, you go BUY it with all those emeralds you got lining your pockets!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Ragamal" + } + }, + { + "fileOverride": "wynnplains-ragamal-3", + "lineInfo": { + "dialogue": "Yeah, get out of here and go brown-nose those big-nosed flimflam scam artists! Stupid soldiers! Why couldn't you have just bothered to come to my house that night?!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Ragamal" + } + }, + { + "fileOverride": "wynnplains-ragamal-4", + "lineInfo": { + "dialogue": "WHY COULDN'T YOU ALL HAVE EVEN BOTHERED TO HELP A DAMNED SOUL IN NEED?! GO GRAB SOME ANCHORS AND STEP OFF A BOAT, YOU USELESS, GOOD FOR NOTHING, WEAPON TOTING, VILLAGER LOVING JERK!!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Ragamal" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "wynnplains-harv-1", + "lineInfo": { + "dialogue": "Say, Marlow. Ya think this old pipe here would make a good enough weapon?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Harv" + } + }, + { + "fileOverride": "wynnplains-marlow-1", + "lineInfo": { + "dialogue": "Uh...why you askin', Harv?", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Marlow" + } + }, + { + "fileOverride": "wynnplains-harv-2", + "lineInfo": { + "dialogue": "Well, I got to thinking some, and... We mighta lost all we had, but that doesn't mean anyone else oughta, and hey, what've we got here to lose?", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Harv" + } + }, + { + "fileOverride": "wynnplains-marlow-2", + "lineInfo": { + "dialogue": "Wha... Buddo, you'd lose yourself! You ought to be thankful you even lived to get down here! You SEEN those attacks?! No way either of us would last a day!!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Marlow" + } + }, + { + "fileOverride": "wynnplains-harv-3", + "lineInfo": { + "dialogue": "Feh! Not like those big-nosed Grooks are doing a thing to help! Half those golems up there are rusted shut and useless!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Harv" + } + }, + { + "fileOverride": "wynnplains-harv-4", + "lineInfo": { + "dialogue": "I'd rather take the risk and die buying someone else a few more minutes than waste away down in this rotten hole!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Harv" + } + }, + { + "fileOverride": "wynnplains-marlow-3", + "lineInfo": { + "dialogue": "Well then, you're a better man than I. Honestly, if I were them, I'da ran for the hills at the sight of this town too. Can't really bring myself to say I blame 'em much.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Marlow" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "wynnplains-poe-1", + "lineInfo": { + "dialogue": "Oh! A visitor! We rarely get people down here. For obvious reasons.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Poe" + } + }, + { + "fileOverride": "wynnplains-poe-2", + "lineInfo": { + "dialogue": "I have nothing to offer you, but please, make yourself comfortable. Warm yourself by the fire.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Poe" + } + }, + { + "fileOverride": "wynnplains-poe-3", + "lineInfo": { + "dialogue": "We need to keep each other's spirits up. After all, when all's said and done, what else do we have?", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Poe" + } + }, + { + "fileOverride": "wynnplains-poe-4", + "lineInfo": { + "dialogue": "I consider myself lucky to be alive. So many lives were lost in that attack...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Poe" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "wynnplains-soldier1-1", + "lineInfo": { + "dialogue": "I-I can’t run anymore. Get back to Ragni and close the gates! We might be able to hold him the-", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Soldier 1" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-soldier2-1", + "lineInfo": { + "dialogue": "Are you insane? You saw how that BEAST slaughtered our entire regiment! We're done fo-", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Soldier 2" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-soldier1-2", + "lineInfo": { + "dialogue": "Oh no... He’s here.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Soldier 1" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bakal-13", + "lineInfo": { + "dialogue": "There is nowhere left for you fools to run. Now witness as the will of my master purges this province for good.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-soldier2-2", + "lineInfo": { + "dialogue": "No... NO! GET AWAY- AAAAGHHH!!!!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Soldier 2" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-soldier1-3", + "lineInfo": { + "dialogue": "PLEASE, STOP! IT HURTS SO MUCH!! AAAAGGHHH!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Soldier 1" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bakal-14", + "lineInfo": { + "dialogue": "And now, Ragni is left defenseless. This land will be purified, just like the rest.", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "wynnplains-bob-1", + "lineInfo": { + "dialogue": "I will never let this city fall again.", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Bob" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bakal-15", + "lineInfo": { + "dialogue": "Another soldier..? It matters not. End him!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bob-2", + "lineInfo": { + "dialogue": "⒭⒤⒮⒤⒩⒢ ⒰⒫⒫⒠⒭⒞⒰⒯1", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Bob" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bakal-16", + "lineInfo": { + "dialogue": "A foolhardy display of power means nothing to me. Again, peons!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bob-3", + "lineInfo": { + "dialogue": "⒟⒤⒱⒤⒩⒢ ⒠⒜⒭⒯⒣⒮⒣⒜⒯⒯⒠⒭1", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Bob" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bakal-17", + "lineInfo": { + "dialogue": "Your power.. it’s... I wasn’t prepared for this.. Retreat, peons!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bob-4", + "lineInfo": { + "dialogue": "Oh no, YOU'RE not getting away!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Bob" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "wynnplains-bob-5", + "lineInfo": { + "dialogue": "⒡⒭⒪⒮⒯ ⒮⒠⒭⒫⒠⒩⒯1", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Bob" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bob-6", + "lineInfo": { + "dialogue": "⒜⒭⒭⒪⒲ ⒝⒜⒭⒭⒜⒢⒠1", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Bob" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bob-7", + "lineInfo": { + "dialogue": "⒡⒤⒭⒠ ⒝⒪⒨⒝1", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Bob" + }, + "settings": { + "falloff": 90 + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "wynnplains-bob-8", + "lineInfo": { + "dialogue": "I've spent my entire life preparing for this. I will NEVER let this province fall.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Bob" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bakal-18", + "lineInfo": { + "dialogue": "The Twains said the same thing to me, once. And just like them, you will fall helplessly at my feet.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Bak'al" + }, + "settings": { + "falloff": 90 + } + }, + { + "fileOverride": "wynnplains-bob-9", + "lineInfo": { + "dialogue": "I’ve learned from the Twains’ mistakes! I refuse to fall as easily as they did!", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Bob" + }, + "settings": { + "falloff": 90 + } + } + ] + } + } + }, + "WynnExcavation Site A": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "wynnexcavationa-vade-1", + "lineInfo": { + "dialogue": "Oh, hey kid. Wanna make some money?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Vade" + } + }, + { + "fileOverride": "wynnexcavationa-vade-2", + "lineInfo": { + "dialogue": "I need you to translate this ancient text.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Vade" + } + }, + { + "fileOverride": "wynnexcavationa-vade-3", + "lineInfo": { + "dialogue": "Just run it down to the lab assistant, Tesha.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Vade" + } + }, + { + "fileOverride": "wynnexcavationa-vade-4", + "lineInfo": { + "dialogue": "I'd take it myself, but I'm far too important for grunt work! The lab is up there in the tent, and don't you dare damage the translation!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Vade" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "wynnexcavationa-tesha-1", + "lineInfo": { + "dialogue": "Hello, welcome to WynnExcavation Labs!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Tesha" + } + }, + { + "fileOverride": "wynnexcavationa-tesha-2", + "lineInfo": { + "dialogue": "Oh, Vade sent you?", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Tesha" + } + }, + { + "fileOverride": "wynnexcavationa-tesha-3", + "lineInfo": { + "dialogue": "Oh yes, the tablet I was waiting for!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Tesha" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "wynnexcavationa-tesha-4", + "lineInfo": { + "dialogue": "Oh my! This is quite interesting..", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Tesha" + } + }, + { + "fileOverride": "wynnexcavationa-tesha-5", + "lineInfo": { + "dialogue": "Here, let me finish this up...", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Tesha" + } + }, + { + "fileOverride": "wynnexcavationa-tesha-6", + "lineInfo": { + "dialogue": "..and there you are!", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Tesha" + } + }, + { + "fileOverride": "wynnexcavationa-tesha-7", + "lineInfo": { + "dialogue": "One tablet complete! Return it to Vade. Oh, and don't read it!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Tesha" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "wynnexcavationa-tesha-8", + "lineInfo": { + "dialogue": "Take that to Vade, and don't read it!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tesha" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "wynnexcavationa-tesha-9", + "lineInfo": { + "dialogue": "Oh hey it's you! Wynn Excavation has its eye on you.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Tesha" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "wynnexcavationa-vade-5", + "lineInfo": { + "dialogue": "Who are you?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Vade" + } + }, + { + "fileOverride": "wynnexcavationa-vade-6", + "lineInfo": { + "dialogue": "Oh right, you're that kid I sent out!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Vade" + } + }, + { + "fileOverride": "wynnexcavationa-vade-7", + "lineInfo": { + "dialogue": "Well do you have the translated text or not?", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Vade" + } + }, + { + "fileOverride": "wynnexcavationa-vade-8", + "lineInfo": { + "dialogue": "You do! Brilliant! Let's take a look at that...", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Vade" + } + }, + { + "fileOverride": "wynnexcavationa-vade-9", + "lineInfo": { + "dialogue": "\"Throw tribute an item to the wood that stands out, the right angle will open the way\"", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Vade" + } + }, + { + "fileOverride": "wynnexcavationa-vade-10", + "lineInfo": { + "dialogue": "I wonder if it is talking about inside the temple... Oh, uh, I forgot you were here. Stay out of this kid, it's grown up business!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Vade" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "wynnexcavationa-vade-11", + "lineInfo": { + "dialogue": "Hey kid, did you just come from the tomb?", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Vade" + } + }, + { + "fileOverride": "wynnexcavationa-vade-12", + "lineInfo": { + "dialogue": "I knew I shouldn't have been so lazy and got someone else to do the leg work!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Vade" + } + }, + { + "fileOverride": "wynnexcavationa-vade-13", + "lineInfo": { + "dialogue": "Gosh, I can't tell my boss about this, he'll have my head! Literally! WynnExcavation is not a group you want to betray, they are more powerful than you will ever know.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Vade" + } + }, + { + "fileOverride": "wynnexcavationa-vade-14", + "lineInfo": { + "dialogue": "YOU'D BETTER NOT HAVE TAKEN ANYTHING! THAT IS OFFICIAL WYNN EXCAVATION PROPERTY!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Vade" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "wynnexcavationa-vade-15", + "lineInfo": { + "dialogue": "Hey kid, can't you see I'm busy here? Come back when you're level 35.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Vade" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "wynnexcavationa-vade-16", + "lineInfo": { + "dialogue": "Well, I figured it out soon after you got back. We possess the crystal, don't go looking for Wynn Excavation again, all is not what it seems. Take that as a friendly warning.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Vade" + } + } + ] + } + } + }, + "WynnExcavation Site B": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "wynnexcavationb-excavatorlykron-1", + "lineInfo": { + "dialogue": "Good day! You're the person that helped us out in the desert aren't you? Excellent! Just the person I need! Can you help me out with a problem I have?", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Excavator Lykron" + } + }, + { + "fileOverride": "wynnexcavationb-excavatorlykron-2", + "lineInfo": { + "dialogue": "Perfect! You see, we are supposed to be searching for some of the... uhhh... long lost ruins of ancient Wynn, just like in the desert!", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Excavator Lykron" + } + }, + { + "fileOverride": "wynnexcavationb-excavatorlykron-3", + "lineInfo": { + "dialogue": "However, it seems no progress has been made recently; my workers have stopped working!", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Excavator Lykron" + } + }, + { + "fileOverride": "wynnexcavationb-excavatorlykron-4", + "lineInfo": { + "dialogue": "The problem is, there are strange creatures down at the bottom of the cave disturbing them.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Excavator Lykron" + } + }, + { + "fileOverride": "wynnexcavationb-excavatorlykron-5", + "lineInfo": { + "dialogue": "I need you to go and kill them, but first you should go talk to one of my colleagues, he has more information for you.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Excavator Lykron" + } + }, + { + "fileOverride": "wynnexcavationb-excavatorlykron-6", + "lineInfo": { + "dialogue": "He is located directly at the bottom of this cave, go speak to him, go on now! Off you go!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Excavator Lykron" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "wynnexcavationb-flendar-1", + "lineInfo": { + "dialogue": "We know what you stole from us in the desert! Take THIS! You won't be escaping this dead end any time soon!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Flendar" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "wynnexcavationb-wynnexcavationarchaeologist-1", + "lineInfo": { + "dialogue": "Baffling... What a puzzling situation I am in...", + "line": { + "current": 1, + "max": 7 + }, + "npc": "WynnExcavation Archaeologist" + } + }, + { + "fileOverride": "wynnexcavationb-wynnexcavationarchaeologist-2", + "lineInfo": { + "dialogue": "I cannot open this door for some reason...", + "line": { + "current": 2, + "max": 7 + }, + "npc": "WynnExcavation Archaeologist" + } + }, + { + "fileOverride": "wynnexcavationb-wynnexcavationarchaeologist-3", + "lineInfo": { + "dialogue": "We suspect the purple crystal is behind this door, but the descriptions in the scriptures don't match this door.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "WynnExcavation Archaeologist" + } + }, + { + "fileOverride": "wynnexcavationb-wynnexcavationarchaeologist-4", + "lineInfo": { + "dialogue": "They seem to describe another door, but all our evidence says otherwise.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "WynnExcavation Archaeologist" + } + }, + { + "fileOverride": "wynnexcavationb-wynnexcavationarchaeologist-5", + "lineInfo": { + "dialogue": "The scriptures also say something about hidden within the rocks... But we removed them all!", + "line": { + "current": 5, + "max": 7 + }, + "npc": "WynnExcavation Archaeologist" + } + }, + { + "fileOverride": "wynnexcavationb-wynnexcavationarchaeologist-6", + "lineInfo": { + "dialogue": "Well, the writing isn't actually all that clear. It could mean virtually anything, I think one of these words means hippo! Guess we'll have to find out!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "WynnExcavation Archaeologist" + } + }, + { + "fileOverride": "wynnexcavationb-wynnexcavationarchaeologist-7", + "lineInfo": { + "dialogue": "Anyway, back to figuring out what needs to be done here... Wait, who are you, you're not an employee of Wynn Excavation!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "WynnExcavation Archaeologist" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "wynnexcavationb-excavatorlykron-7", + "lineInfo": { + "dialogue": "I have to admit, I'm impressed. I genuinely thought our plan would be successful. Who knew that dead end had a secret exit.", + "line": { + "current": 1, + "max": 5 + }, + "npc": "Excavator Lykron" + } + }, + { + "fileOverride": "wynnexcavationb-excavatorlykron-8", + "lineInfo": { + "dialogue": "Not me apparently. We know what you took in the desert, you were just some kid expected to do a delivery job, who knew you'd take a shard of the crystal.", + "line": { + "current": 2, + "max": 5 + }, + "npc": "Excavator Lykron" + } + }, + { + "fileOverride": "wynnexcavationb-excavatorlykron-9", + "lineInfo": { + "dialogue": "Don't pretend like you don't know what it is, you know as well as I do combining the four crystal shards is told to bring unlimited power!", + "line": { + "current": 3, + "max": 5 + }, + "npc": "Excavator Lykron" + } + }, + { + "fileOverride": "wynnexcavationb-excavatorlykron-10", + "lineInfo": { + "dialogue": "You will not interfere any longer. The location of the remaining crystals are known only to us; the fire and leaf crystals are safe.", + "line": { + "current": 4, + "max": 5 + }, + "npc": "Excavator Lykron" + } + }, + { + "fileOverride": "wynnexcavationb-excavatorlykron-11", + "lineInfo": { + "dialogue": "I see that tricking you isn't the way to defeating you. If we ever meet again, we'll be using force and upping our security. Now I never want to see you again. Our socie- I mean company, will not tolerate your interference again.", + "line": { + "current": 5, + "max": 5 + }, + "npc": "Excavator Lykron" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "wynnexcavationb-excavatorlykron-12", + "lineInfo": { + "dialogue": "And don't come back!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Excavator Lykron" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "wynnexcavationb-excavatorlykron-13", + "lineInfo": { + "dialogue": "Hello there! We are working very hard here at this excavation site! We have one in Almuj as well, I think you should check it out!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Excavator Lykron" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "wynnexcavationb-excavatorlykron-14", + "lineInfo": { + "dialogue": "Good day! Can you help me out with a problem I have?", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Excavator Lykron" + } + }, + { + "fileOverride": "wynnexcavationb-excavatorlykron-15", + "lineInfo": { + "dialogue": "Hmm, it seems you will be unable to help us. We need someone at least level 46.", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Excavator Lykron" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "wynnexcavationb-excavatorlykron-16", + "lineInfo": { + "dialogue": "Go on now! Off you go! Remember to speak to my colleague at the bottom of the cave!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Excavator Lykron" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "wynnexcavationb-wynnexcavationguard-1", + "lineInfo": { + "dialogue": "What are you doing here?!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "WynnExcavation Guard" + } + }, + { + "fileOverride": "wynnexcavationb-wynnexcavationguard-2", + "lineInfo": { + "dialogue": "This door is closed; the mine entrance behind it isn't open at this time.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "WynnExcavation Guard" + } + }, + { + "fileOverride": "wynnexcavationb-wynnexcavationguard-3", + "lineInfo": { + "dialogue": "I'm here to make sure no one uses the passage while the archaeologist works.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "WynnExcavation Guard" + } + }, + { + "fileOverride": "wynnexcavationb-wynnexcavationguard-4", + "lineInfo": { + "dialogue": "You will have to find another exit if you want to get out!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "WynnExcavation Guard" + } + } + ] + } + } + }, + "WynnExcavation Site C": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "wynnexcavationsitec-excavatorplacardus-1", + "lineInfo": { + "dialogue": "All operations functional... Transportation on schedule... Oh. It's you. We've been looking for you.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Excavator Placardus" + } + }, + { + "fileOverride": "wynnexcavationsitec-excavatorplacardus-2", + "lineInfo": { + "dialogue": "Locating you was far harder than we thought, but here you are, having come right to us.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Excavator Placardus" + } + }, + { + "fileOverride": "wynnexcavationsitec-excavatorplacardus-3", + "lineInfo": { + "dialogue": "Now you're here, I'm not sure what to say. But I feel I must explain, we at WynnExcavation apologise for all our previous encounters.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Excavator Placardus" + } + }, + { + "fileOverride": "wynnexcavationsitec-excavatorplacardus-4", + "lineInfo": { + "dialogue": "We completely got off on the wrong foot. We are a company from Gavel which specialises in historic artifacts of great mystical importance.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Excavator Placardus" + } + }, + { + "fileOverride": "wynnexcavationsitec-excavatorplacardus-5", + "lineInfo": { + "dialogue": "After our encounter in Almuj, we naturally thought you were a black market salesperson trying to steal pieces of the artifact for monetary gain.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Excavator Placardus" + } + }, + { + "fileOverride": "wynnexcavationsitec-excavatorplacardus-6", + "lineInfo": { + "dialogue": "So we instructed all of our employees in all of our sites to thwart you at any cost. Historical loss is a very important issue, especially with something so powerful.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Excavator Placardus" + } + }, + { + "fileOverride": "wynnexcavationsitec-excavatorplacardus-7", + "lineInfo": { + "dialogue": "But after hearing the stories of your travels in the province, we realised what had happened, and you mistook us for the enemy. This is obviously not the case.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Excavator Placardus" + } + }, + { + "fileOverride": "wynnexcavationsitec-excavatorplacardus-8", + "lineInfo": { + "dialogue": "I hope this clears everything up between us and we can both move our separate ways, now if you'll excuse me, I have a meeting to attend.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Excavator Placardus" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "wynnexcavationsitec-guardklerodor-1", + "lineInfo": { + "dialogue": "I'm sorry. This is a private meeting.", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Guard Klerodor" + } + }, + { + "fileOverride": "wynnexcavationsitec-guardklerodor-2", + "lineInfo": { + "dialogue": "It is only my first day on the job, so I can't let you in without a pass. Sorry.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Guard Klerodor" + } + }, + { + "fileOverride": "wynnexcavationsitec-guardklerodor-3", + "lineInfo": { + "dialogue": "The door will be locked shortly.", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Guard Klerodor" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "wynnexcavationsitec-chiefexcavatordranfor-1", + "lineInfo": { + "dialogue": "Hello and welcome, senior members of Wynn Excavation Site C. May the dark^s gaze forever watch over us. I want to update you on our progress thus far. The fire relic crystal has been largely intact in the heart of the volcano for many years.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Chief Excavator Dranfor" + } + }, + { + "fileOverride": "wynnexcavationsitec-chiefexcavatordranfor-2", + "lineInfo": { + "dialogue": "Removing it will most likely cause a chain reaction and make things difficult. Fortunately, a mage from the other side of the ocean is here to counter that. We can expect to have it moved and be shipped over to the undisclosed location any day now.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Chief Excavator Dranfor" + } + }, + { + "fileOverride": "wynnexcavationsitec-chiefexcavatordranfor-3", + "lineInfo": { + "dialogue": "I would also like to inform you that the crystals removed from our possession from sites B and A have not been retrieved. However, the culprit should no longer be interested in our operations. The lost crystals did not harness any raw magic, thus are not essential to the overall scheme.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Chief Excavator Dranfor" + } + }, + { + "fileOverride": "wynnexcavationsitec-chiefexcavatordranfor-4", + "lineInfo": { + "dialogue": "Now, our short term goals are to move our equipment out of the heart of the volcano and start moving the fire stone for assimilation at the concealed location. All senior officers are responsible for their quadrants. Let's get this done efficiently and discreetly.", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Chief Excavator Dranfor" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "4": { + "dialogues": [ + { + "fileOverride": "wynnexcavationsitec-chiefexcavatordranfor-5", + "lineInfo": { + "dialogue": "The alarm has been set off! There is an unauthorized guest! Guards, seize them!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Chief Excavator Dranfor" + } + } + ], + "settings": { + "followPlayer": true + } + }, + "5": { + "dialogues": [ + { + "fileOverride": "wynnexcavationsitec-traitoramadel-1", + "lineInfo": { + "dialogue": "You. You are the one they are worried about.", + "line": { + "current": 1, + "max": 12 + }, + "npc": "???" + } + }, + { + "fileOverride": "wynnexcavationsitec-traitoramadel-2", + "lineInfo": { + "dialogue": "I am Amadel, leader of the rebellion.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "???" + } + }, + { + "fileOverride": "wynnexcavationsitec-traitoramadel-3", + "lineInfo": { + "dialogue": "I know this is all a bit sudden, but I have some information you must hear.", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Traitor Amadel" + } + }, + { + "fileOverride": "wynnexcavationsitec-traitoramadel-4", + "lineInfo": { + "dialogue": "Everything you have been told is a lie. The WynnExcavation \"company\" is not what they appear to be.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Traitor Amadel" + } + }, + { + "fileOverride": "wynnexcavationsitec-traitoramadel-5", + "lineInfo": { + "dialogue": "They are using that as a front and their reach stretches further than I even know.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Traitor Amadel" + } + }, + { + "fileOverride": "wynnexcavationsitec-traitoramadel-6", + "lineInfo": { + "dialogue": "There is no higher authority than them, not even the kings. And their intentions are not good.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Traitor Amadel" + } + }, + { + "fileOverride": "wynnexcavationsitec-traitoramadel-7", + "lineInfo": { + "dialogue": "For the last few years, they have been seeking a quartet of cosmic crystals that have been prominent across Wynn's history.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Traitor Amadel" + } + }, + { + "fileOverride": "wynnexcavationsitec-traitoramadel-8", + "lineInfo": { + "dialogue": "Many different empires and societies in the province have held at least one of them since they were uncovered 2000 years ago deep within Wynn's southern border, though none have ever combined all four.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Traitor Amadel" + } + }, + { + "fileOverride": "wynnexcavationsitec-traitoramadel-9", + "lineInfo": { + "dialogue": "The ancient desert empire, the Twain brothers, and an unknown party that cast this volcano's crystal into the ocean are among those who have guarded even one of these Crystals over the years. Their value is nothing short of immeasurable.", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Traitor Amadel" + } + }, + { + "fileOverride": "wynnexcavationsitec-traitoramadel-10", + "lineInfo": { + "dialogue": "WynnExcavation heard about it, and of course, set out to gather these artifacts in their attempt to claim absolute power over the entire world. Do you understand? We CANNOT let them have those crystals.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Traitor Amadel" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "wynnexcavationsitec-excavatorplacardus-9", + "lineInfo": { + "dialogue": "You couldn't just take my polite word and leave it at that, could you?", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Excavator Placardus" + } + }, + { + "fileOverride": "wynnexcavationsitec-excavatorplacardus-10", + "lineInfo": { + "dialogue": "You had to go snooping around, meddle in things that are far beyond your comprehension. No matter. Something did come out of this, it would appear.", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Excavator Placardus" + } + }, + { + "fileOverride": "wynnexcavationsitec-excavatorplacardus-11", + "lineInfo": { + "dialogue": "You were caught, conversing with Amadel, who we now know to be a traitor, thanks to you. There are eyes everywhere, young hero.", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Excavator Placardus" + } + }, + { + "fileOverride": "wynnexcavationsitec-excavatorplacardus-12", + "lineInfo": { + "dialogue": "I'm willing to bet he's already been... taken care of by senior staff.", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Excavator Placardus" + } + }, + { + "fileOverride": "wynnexcavationsitec-excavatorplacardus-13", + "lineInfo": { + "dialogue": "We also now know you are operating in the dark. You know nothing of the crystals or their power, and you know not that even the crystals you possess are inconsequential to our plans.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Excavator Placardus" + } + }, + { + "fileOverride": "wynnexcavationsitec-excavatorplacardus-14", + "lineInfo": { + "dialogue": "You're lucky you aren't dead. How you infiltrated us this far has shown nothing but beginner's luck for the province's new hero.", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Excavator Placardus" + } + }, + { + "fileOverride": "wynnexcavationsitec-excavatorplacardus-15", + "lineInfo": { + "dialogue": "I suggest you leave, before the guards get here and you meet the same fate as Amadel. Our power is limitless; armies, resources, even royalty are on our side. Our gaze is everpresent. Now, get out of my sight!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Excavator Placardus" + } + } + ] + } + } + }, + "WynnExcavation Site D": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-royaladvisorcarlos-1", + "lineInfo": { + "dialogue": "Help, the king is... wait. No you're not strong enough yet, come back when you reached Level 70.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Royal Advisor Carlos" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-royaladvisorcarlos-2", + "lineInfo": { + "dialogue": "His majesty Lord King of Troms is indisposed at this moment.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Royal Advisor Carlos" + } + }, + { + "fileOverride": "wynnexcavationd-royaladvisorcarlos-3", + "lineInfo": { + "dialogue": "He received a message and made his way frantically down to the panic room, which is somewhere inside of this throne room.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Royal Advisor Carlos" + } + }, + { + "fileOverride": "wynnexcavationd-royaladvisorcarlos-4", + "lineInfo": { + "dialogue": "He hasn't been seen since. Only the King knows how to get into the panic room, but I've had my suspicions about it for a while now.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Royal Advisor Carlos" + } + }, + { + "fileOverride": "wynnexcavationd-royaladvisorcarlos-5", + "lineInfo": { + "dialogue": "He seemed to be expecting someone, but I'm fed up of waiting.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Royal Advisor Carlos" + } + }, + { + "fileOverride": "wynnexcavationd-royaladvisorcarlos-6", + "lineInfo": { + "dialogue": "I managed to hear a few things he was muttering to himself just before he disappeared, though.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Royal Advisor Carlos" + } + }, + { + "fileOverride": "wynnexcavationd-royaladvisorcarlos-7", + "lineInfo": { + "dialogue": "He mentioned something about a fourth crystal... a green one.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Royal Advisor Carlos" + } + }, + { + "fileOverride": "wynnexcavationd-royaladvisorcarlos-8", + "lineInfo": { + "dialogue": "And then he said \"The order of the crystals will open the way\".Maybe it's a clue as to how to find him?", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Royal Advisor Carlos" + } + }, + { + "fileOverride": "wynnexcavationd-royaladvisorcarlos-9", + "lineInfo": { + "dialogue": "Please, we need to find him, I'm sick of telling everyone he's indisposed!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Royal Advisor Carlos" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-royaladvisorcarlos-10", + "lineInfo": { + "dialogue": "The panic room is hidden somewhere in here, we just need to figure out how to open it...", + "line": { + "current": 1, + "max": 3 + }, + "npc": "Royal Advisor Carlos" + } + }, + { + "fileOverride": "wynnexcavationd-royaladvisorcarlos-11", + "lineInfo": { + "dialogue": "Last I heard from His Majesty, he was muttering something about a fourth crystal... a green one.", + "line": { + "current": 2, + "max": 3 + }, + "npc": "Royal Advisor Carlos" + } + }, + { + "fileOverride": "wynnexcavationd-royaladvisorcarlos-12", + "lineInfo": { + "dialogue": "And then he said \"The order of the crystals will open the way\". Maybe it's a clue as to how to find him?", + "line": { + "current": 3, + "max": 3 + }, + "npc": "Royal Advisor Carlos" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-royaladvisorcarlos-13", + "lineInfo": { + "dialogue": "Oh my, a secret passage has opened up beneath the throne! Quickly, head inside!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Royal Advisor Carlos" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-kingoftroms-1", + "lineInfo": { + "dialogue": "I am impressed you managed to find me. Someone of my intellect is not normally found when he hasn't the intention of being so.", + "line": { + "current": 1, + "max": 9 + }, + "npc": "King of Troms" + } + }, + { + "fileOverride": "wynnexcavationd-kingoftroms-2", + "lineInfo": { + "dialogue": "I suppose I at least owe you the truth for getting this far, not that it matters.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "King of Troms" + } + }, + { + "fileOverride": "wynnexcavationd-kingoftroms-3", + "lineInfo": { + "dialogue": "WynnExcavation, the Gavel company is a fake, a facade. It's not real....", + "line": { + "current": 3, + "max": 9 + }, + "npc": "King of Troms" + } + }, + { + "fileOverride": "wynnexcavationd-kingoftroms-4", + "lineInfo": { + "dialogue": "It's actually a secret society run by the high and mighty of Gavel.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "King of Troms" + } + }, + { + "fileOverride": "wynnexcavationd-kingoftroms-5", + "lineInfo": { + "dialogue": "They have one goal, complete control.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "King of Troms" + } + }, + { + "fileOverride": "wynnexcavationd-kingoftroms-6", + "lineInfo": { + "dialogue": "You can't compete with them, kid. I tried to at first, but they had turned my inner circle before getting to me.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "King of Troms" + } + }, + { + "fileOverride": "wynnexcavationd-kingoftroms-7", + "lineInfo": { + "dialogue": "Though I cannot admit I fought hard, their ideals are admirable.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "King of Troms" + } + }, + { + "fileOverride": "wynnexcavationd-kingoftroms-8", + "lineInfo": { + "dialogue": "So I hope you will forgive me, I act only for the greater good of the world.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "King of Troms" + } + }, + { + "fileOverride": "wynnexcavationd-kingoftroms-9", + "lineInfo": { + "dialogue": "As you will not be leaving the city, I wish you a fond farewell. When you leave, you will be accused of treason and will be hunted. It is the only way...", + "line": { + "current": 9, + "max": 9 + }, + "npc": "King of Troms" + } + } + ] + }, + "6": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-tromsguard-1", + "lineInfo": { + "dialogue": "Time is short, so I'll have to spare you the details, but let's just say I'm on your side.", + "line": { + "current": 1, + "max": 6 + }, + "npc": "Troms Guard" + } + }, + { + "fileOverride": "wynnexcavationd-tromsguard-2", + "lineInfo": { + "dialogue": "The King just placed you under arrest for treason. They've locked down the entire city.", + "line": { + "current": 2, + "max": 6 + }, + "npc": "Troms Guard" + } + }, + { + "fileOverride": "wynnexcavationd-tromsguard-3", + "lineInfo": { + "dialogue": "Both the front gate and the Passage are closed down. So we've created another exit for you.", + "line": { + "current": 3, + "max": 6 + }, + "npc": "Troms Guard" + } + }, + { + "fileOverride": "wynnexcavationd-tromsguard-4", + "lineInfo": { + "dialogue": "Just follow the path to your left around the city. Keep going until you see a villager next to a tunnel . We'll clear your name once you've escaped.", + "line": { + "current": 4, + "max": 6 + }, + "npc": "Troms Guard" + } + }, + { + "fileOverride": "wynnexcavationd-tromsguard-5", + "lineInfo": { + "dialogue": "You'll pass through the army headquarters on your way, so be prepared for a fight. I'm the only guard here to help you.", + "line": { + "current": 5, + "max": 6 + }, + "npc": "Troms Guard" + } + }, + { + "fileOverride": "wynnexcavationd-tromsguard-6", + "lineInfo": { + "dialogue": "Now run! We don't have another moment to waste!", + "line": { + "current": 6, + "max": 6 + }, + "npc": "Troms Guard" + } + } + ] + }, + "7": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-questionmark-1", + "lineInfo": { + "dialogue": "Hey, psst. Come here!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "???" + } + }, + { + "fileOverride": "wynnexcavationd-questionmark-2", + "lineInfo": { + "dialogue": "Take this, and run! You need to get out!", + "line": { + "current": 2, + "max": 4 + }, + "npc": "???" + } + }, + { + "fileOverride": "wynnexcavationd-questionmark-3", + "lineInfo": { + "dialogue": "Head to those coordinates, there is no time to explain, now go! I'll close the tunnel behind you.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "???" + } + }, + { + "fileOverride": "wynnexcavationd-questionmark-4", + "lineInfo": { + "dialogue": "I'VE FOUND THE TRAITOR! THEY'RE OVER HERE!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "???" + } + } + ] + }, + "8": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-traitorthomas-1", + "lineInfo": { + "dialogue": "I'm sorry, I can't let you in there.", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Traitor Thomas" + } + }, + { + "fileOverride": "wynnexcavationd-traitorthomas-2", + "lineInfo": { + "dialogue": "I can't let you in there, not until you have proven you are truly on our side.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Traitor Thomas" + } + }, + { + "fileOverride": "wynnexcavationd-traitorthomas-3", + "lineInfo": { + "dialogue": "We never know who to believe anymore. Unfortunately there is no way for you to prove your loyalty.", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Traitor Thomas" + } + }, + { + "fileOverride": "wynnexcavationd-traitorthomas-4", + "lineInfo": { + "dialogue": "Now if you would excuse me, I have to hunt for the lost map fragments of Dernel. I'm sure these eyes have something to do with it...", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Traitor Thomas" + } + } + ] + }, + "9": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-traitorthomas-5", + "lineInfo": { + "dialogue": "I'm sorry, I can't let you in there until you prove yourself!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Traitor Thomas" + } + } + ] + }, + "10": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-traitorthomas-6", + "lineInfo": { + "dialogue": "I can't let you in, we're busy looking for an important document, I'm sure these eyes have something to do with it...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Traitor Thomas" + } + } + ] + }, + "11": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-traitorthomas-7", + "lineInfo": { + "dialogue": "Is that... The map fragments? You found them!", + "line": { + "current": 1, + "max": 4 + }, + "npc": "Traitor Thomas" + } + }, + { + "fileOverride": "wynnexcavationd-traitorthomas-8", + "lineInfo": { + "dialogue": "Oh my, you better come in.", + "line": { + "current": 2, + "max": 4 + }, + "npc": "Traitor Thomas" + } + }, + { + "fileOverride": "wynnexcavationd-traitorthomas-9", + "lineInfo": { + "dialogue": "There's not enough time! We need to combine those fragments with ours!", + "line": { + "current": 3, + "max": 4 + }, + "npc": "Traitor Thomas" + } + }, + { + "fileOverride": "wynnexcavationd-traitorthomas-10", + "lineInfo": { + "dialogue": "Hurry, get in the hideout!", + "line": { + "current": 4, + "max": 4 + }, + "npc": "Traitor Thomas" + } + } + ] + }, + "12": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-traitorthomas-11", + "lineInfo": { + "dialogue": "Thanks for helping with that long task...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Traitor Thomas" + } + } + ] + }, + "13": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-amadel-1", + "lineInfo": { + "dialogue": "Welcome, friend. I knew you would figure it all out.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Traitor Amadel" + } + }, + { + "fileOverride": "wynnexcavationd-amadel-2", + "lineInfo": { + "dialogue": "You must be surprised to see me. The excavation crew at site C tried very hard to kill me.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Traitor Amadel" + } + }, + { + "fileOverride": "wynnexcavationd-amadel-3", + "lineInfo": { + "dialogue": "They didn't succeed though. I got away, and I swiped a fragment of a map, and I found out what it's for.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Traitor Amadel" + } + }, + { + "fileOverride": "wynnexcavationd-amadel-4", + "lineInfo": { + "dialogue": "If you made it this far, you know Wynn Excavation are not what they seem. They want to harness Wynn's ancient power.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Traitor Amadel" + } + }, + { + "fileOverride": "wynnexcavationd-amadel-5", + "lineInfo": { + "dialogue": "They control our governments, authorities and seem to be 3 steps ahead of any of us that oppose them.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Traitor Amadel" + } + }, + { + "fileOverride": "wynnexcavationd-amadel-6", + "lineInfo": { + "dialogue": "That is, unless we're able to beat the excavationists to the last crystal.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Traitor Amadel" + } + }, + { + "fileOverride": "wynnexcavationd-amadel-7", + "lineInfo": { + "dialogue": "They cannot use a single shard of power without combining them all.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Traitor Amadel" + } + }, + { + "fileOverride": "wynnexcavationd-amadel-8", + "lineInfo": { + "dialogue": "Here, I've combined the map fragments behind me. It looks like it's deep in the jungle, I wonder where...", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Traitor Amadel" + } + } + ] + }, + "14": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-traitorbuice-1", + "lineInfo": { + "dialogue": "WynnExcavation have done really horrible things, and I used to help...", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Traitor Buice" + } + } + ] + }, + "15": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-traitorjaynar-1", + "lineInfo": { + "dialogue": "WynnExcavation will be destroyed, no matter what!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Traitor Jaynar" + } + } + ] + }, + "16": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-excavatoradminuci-1", + "lineInfo": { + "dialogue": "Oh my. It's you. I can't say I'm surprised to see you, we thought you might be stupid enough to come here.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Excavator Admin Uci" + } + }, + { + "fileOverride": "wynnexcavationd-excavatoradminuci-2", + "lineInfo": { + "dialogue": "Stupid enough to come here, yet, smart enough to make it.", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Excavator Admin Uci" + } + }, + { + "fileOverride": "wynnexcavationd-excavatoradminuci-3", + "lineInfo": { + "dialogue": "You were at every site, taking shards and attempting to thwart us.", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Excavator Admin Uci" + } + }, + { + "fileOverride": "wynnexcavationd-excavatoradminuci-4", + "lineInfo": { + "dialogue": "This time we won, and you lost.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Excavator Admin Uci" + } + }, + { + "fileOverride": "wynnexcavationd-excavatoradminuci-5", + "lineInfo": { + "dialogue": "What do your shards mean to us when we have all four crystals?", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Excavator Admin Uci" + } + }, + { + "fileOverride": "wynnexcavationd-excavatoradminuci-6", + "lineInfo": { + "dialogue": "Nothing, that's what.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Excavator Admin Uci" + } + }, + { + "fileOverride": "wynnexcavationd-excavatoradminuci-7", + "lineInfo": { + "dialogue": "The boss wants to speak to you, I don't recommend keeping him waiting, he's not a patient man.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Excavator Admin Uci" + } + }, + { + "fileOverride": "wynnexcavationd-excavatoradminuci-8", + "lineInfo": { + "dialogue": "He'll be waiting for you, head through that door.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Excavator Admin Uci" + } + } + ] + }, + "17": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-excavatorsean-1", + "lineInfo": { + "dialogue": "My boss Uci is a bit of a mean guy, but hey the perks of minionship aren't bad!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Excavator Sean" + } + } + ] + }, + "18": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-wynnexcavationscientistazure-1", + "lineInfo": { + "dialogue": "This leads deeper into this dungeon, but it seems like it has to be activated from the other side.", + "line": { + "current": 1, + "max": 1 + }, + "npc": "WynnExcavation Scientist Azure" + } + } + ] + }, + "19": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-amadel-9", + "lineInfo": { + "dialogue": "Well, well. Looks like you've finally made it.", + "line": { + "current": 1, + "max": 8 + }, + "npc": "WynnExcavation Leader Amadel" + } + }, + { + "fileOverride": "wynnexcavationd-amadel-10", + "lineInfo": { + "dialogue": "You might be a little shocked to see me here...", + "line": { + "current": 2, + "max": 8 + }, + "npc": "WynnExcavation Leader Amadel" + } + }, + { + "fileOverride": "wynnexcavationd-amadel-11", + "lineInfo": { + "dialogue": "Everything was planned you see...", + "line": { + "current": 3, + "max": 8 + }, + "npc": "WynnExcavation Leader Amadel" + } + }, + { + "fileOverride": "wynnexcavationd-amadel-12", + "lineInfo": { + "dialogue": "You finding that old fool in the desert, you surviving that fall.", + "line": { + "current": 4, + "max": 8 + }, + "npc": "WynnExcavation Leader Amadel" + } + }, + { + "fileOverride": "wynnexcavationd-amadel-13", + "lineInfo": { + "dialogue": "You finding that notebook, and eventually meeting me.", + "line": { + "current": 5, + "max": 8 + }, + "npc": "WynnExcavation Leader Amadel" + } + }, + { + "fileOverride": "wynnexcavationd-amadel-14", + "lineInfo": { + "dialogue": "Everything that you have done has been planned by the mastermind behind this organisation, me.", + "line": { + "current": 6, + "max": 8 + }, + "npc": "WynnExcavation Leader Amadel" + } + }, + { + "fileOverride": "wynnexcavationd-amadel-15", + "lineInfo": { + "dialogue": "You don't get it, do you? We needed you from the start. These otherworldly crystals are a powerful magic, but a dangerous one at that.", + "line": { + "current": 7, + "max": 8 + }, + "npc": "WynnExcavation Leader Amadel" + } + }, + { + "fileOverride": "wynnexcavationd-amadel-16", + "lineInfo": { + "dialogue": "We needed you, an unaware human with some form of pure intent to bring empowered shards here. Anyone else would have ran off with the shards, and turned against us. It's just how it all works. I don't expect you to understand.. Now. Enough talking.", + "line": { + "current": 8, + "max": 8 + }, + "npc": "WynnExcavation Leader Amadel" + } + } + ] + }, + "20": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-amadel-17", + "lineInfo": { + "dialogue": "Step into this hole, and accept your fate. It's over, you've lost!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "WynnExcavation Leader Amadel" + } + } + ] + }, + "21": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-amadelsassistant-1", + "lineInfo": { + "dialogue": "I see you have finally shown up.", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Amadel's Assistant" + } + }, + { + "fileOverride": "wynnexcavationd-amadelsassistant-2", + "lineInfo": { + "dialogue": "There is no chance someone as weak as you can beat Amadel!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Amadel's Assistant" + } + } + ] + }, + "22": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-amadel-18", + "lineInfo": { + "dialogue": "The crystals combine the power of the stars themselves.. an ultimate power... the power to reign over the entire WORLD!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Corrupted Amadel" + } + } + ] + }, + "23": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-amadelsassistant-3", + "lineInfo": { + "dialogue": "That was a mere fluke..", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Amadel's Assistant" + } + }, + { + "fileOverride": "wynnexcavationd-amadelsassistant-4", + "lineInfo": { + "dialogue": "Amadel is unbeatable!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Amadel's Assistant" + } + } + ] + }, + "24": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-amadel-19", + "lineInfo": { + "dialogue": "I- I- I feel... unstopable.. this power... will not allow me to lose..!!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Shadow Amadel" + } + } + ] + }, + "25": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-amadelsassistant-5", + "lineInfo": { + "dialogue": "He's simply warming up..", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Amadel's Assistant" + } + }, + { + "fileOverride": "wynnexcavationd-amadelsassistant-6", + "lineInfo": { + "dialogue": "THIS ISN'T EVEN HIS FINAL FORM!", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Amadel's Assistant" + } + } + ] + }, + "26": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-amadel-20", + "lineInfo": { + "dialogue": "DID YOU REALLY THINK YOU COULD WIN?!?! YOU ARE NOTHING COMPARED TO ME! NOTHING!! I WILL EXTERMINATE ALL LIFE, STARTING WITH YOU!! NOW, PERISH!!!", + "line": { + "current": 1, + "max": 1 + }, + "npc": "Amadel" + } + } + ] + }, + "27": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-amadelsassistant-7", + "lineInfo": { + "dialogue": "I, I can't believe you beat him...", + "line": { + "current": 1, + "max": 2 + }, + "npc": "Amadel's Assistant" + } + }, + { + "fileOverride": "wynnexcavationd-amadelsassistant-8", + "lineInfo": { + "dialogue": "Amadel was a god...He was going to save the province...", + "line": { + "current": 2, + "max": 2 + }, + "npc": "Amadel's Assistant" + } + } + ] + }, + "28": { + "dialogues": [ + { + "fileOverride": "wynnexcavationd-ragnisking-1", + "lineInfo": { + "dialogue": "You... hmm... Ahh yes! I remember you. You're one of the recruits I accepted long ago..", + "line": { + "current": 1, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-2", + "lineInfo": { + "dialogue": "I'm no mage, but what you have there may just be one of the most destructive forces in the entire world.", + "line": { + "current": 2, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-3", + "lineInfo": { + "dialogue": "I remember being told something by my adoptive father, and he was a king of Ragni himself!", + "line": { + "current": 3, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-4", + "lineInfo": { + "dialogue": "He told me that the Wynn province will never find solace. I never truly understood why, until now.", + "line": { + "current": 4, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-5", + "lineInfo": { + "dialogue": "You see, many forces are at work on our lands that we cannot physically see, but the outcome of the influences cannot be ignored.", + "line": { + "current": 5, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-6", + "lineInfo": { + "dialogue": "Creatures that you can find in Wynn may not exist in Gavel. In Gavel, there are many magical beings. Creatures influenced by forces other than the Corruption. Not all of them are friendly, mind.", + "line": { + "current": 6, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-7", + "lineInfo": { + "dialogue": "But rarely do you see the undead in such numbers. You know, there is a fundamental law of our land, when two forces collide, there is war.", + "line": { + "current": 7, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-8", + "lineInfo": { + "dialogue": "This could be people, species, or anything, really. And I think the same thing can be said for the energy that resonate in those crystals you have there.", + "line": { + "current": 8, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-9", + "lineInfo": { + "dialogue": "I think those crystals represent a force far beyond what we can grasp, and if that power can turn one man into what you fought back there, I shudder to think what else it could do.", + "line": { + "current": 9, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-10", + "lineInfo": { + "dialogue": "The Olm in the jungle clearly knew of this, too, as they met their eventual demise. Their desperation most likely led to them attempting to harness that power, as well.", + "line": { + "current": 10, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-11", + "lineInfo": { + "dialogue": "These are things that the mages of the ocean have studied in secret for centuries. We may never know, and rather, I think we never should know.", + "line": { + "current": 11, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-12", + "lineInfo": { + "dialogue": "If Amadel taught us anything, it's that we can never be trusted with power. Here, put that crystal into the lava. Let it burn and never be used. The king places the crystals in the lava, and watches them sink.", + "line": { + "current": 12, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-13", + "lineInfo": { + "dialogue": "Though it contains some of the most concentrated magical power ever, it is still limited to its container. Let it burn.", + "line": { + "current": 13, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-14", + "lineInfo": { + "dialogue": "I do not know the severity of the Excavation's integration into the powers of Gavel, but I bet we haven't seen the last of them.", + "line": { + "current": 14, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-15", + "lineInfo": { + "dialogue": "You have done this province an unspeakable service. I believe that even Bob is smiling down on you, today. I'm sure that if he were here with us, he would crown you worthy.", + "line": { + "current": 15, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-16", + "lineInfo": { + "dialogue": "As a token of our city's eternal gratitude, I wish for you to take this. It has no value to anyone except you.", + "line": { + "current": 16, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-17", + "lineInfo": { + "dialogue": "You might want to hold onto it, a merchant in Cinfras has arrived and you will be able to trade it for the item that I wish I could bestow upon you now.", + "line": { + "current": 17, + "max": 18 + }, + "npc": "Ragni's King" + } + }, + { + "fileOverride": "wynnexcavationd-ragnisking-18", + "lineInfo": { + "dialogue": "You truly are one of the greatest warriors to ever step foot in these lands. I hereby knight you as Wynn's true protector for your deeds today. I hope we meet again, young master.", + "line": { + "current": 18, + "max": 18 + }, + "npc": "Ragni's King" + } + } + ] + } + } + }, + "Zhight Island": { + "contexts": { + "1": { + "dialogues": [ + { + "fileOverride": "zhightisland-zhight-1", + "lineInfo": { + "dialogue": "Hello, esteemed tourist sir or madame! I see you have found my illustrious resort, Zhight Island!", + "line": { + "current": 1, + "max": 8 + }, + "npc": "Zhight" + } + }, + { + "fileOverride": "zhightisland-zhight-2", + "lineInfo": { + "dialogue": "Normally, you'd need a reservation to stay here, but our human visitors are ALWAYS welcome! Ehm...", + "line": { + "current": 2, + "max": 8 + }, + "npc": "Zhight" + } + }, + { + "fileOverride": "zhightisland-zhight-3", + "lineInfo": { + "dialogue": "...w-well, actually...wait, no, it's nothing, nothing, friend! I guarantee you'll enjoy your stay here!", + "line": { + "current": 3, + "max": 8 + }, + "npc": "Zhight" + } + }, + { + "fileOverride": "zhightisland-zhight-4", + "lineInfo": { + "dialogue": "Even if m-my usual supplies haven't arrived in weeks, I, um, I'm TOTALLY sure we can accommodate for you!", + "line": { + "current": 4, + "max": 8 + }, + "npc": "Zhight" + } + }, + { + "fileOverride": "zhightisland-zhight-5", + "lineInfo": { + "dialogue": "We can just...um...w-well, I won't impose on you, dearest most welcomest traveller, no sir! Or madame!", + "line": { + "current": 5, + "max": 8 + }, + "npc": "Zhight" + } + }, + { + "fileOverride": "zhightisland-zhight-6", + "lineInfo": { + "dialogue": "B-But, if, perchance, you were to, um...happen to find my supplier, Phief, who hasn't come around in weeks the bas-", + "line": { + "current": 6, + "max": 8 + }, + "npc": "Zhight" + } + }, + { + "fileOverride": "zhightisland-zhight-7", + "lineInfo": { + "dialogue": "I! I mean! Nothing, nothing! Just, ehm, our extra reliable supplier often stops by Mage Island for supplies...", + "line": { + "current": 7, + "max": 8 + }, + "npc": "Zhight" + } + }, + { + "fileOverride": "zhightisland-zhight-8", + "lineInfo": { + "dialogue": "S-So, if you just happen to stop by there after your lovely stay here, and tell him to get off his sorry butt and send me my supplies that'd be just peachy!", + "line": { + "current": 8, + "max": 8 + }, + "npc": "Zhight" + } + } + ] + }, + "2": { + "dialogues": [ + { + "fileOverride": "zhightisland-phief-1", + "lineInfo": { + "dialogue": "Hello there. I see Zhight has sent you, correct?", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Phief" + } + }, + { + "fileOverride": "zhightisland-phief-2", + "lineInfo": { + "dialogue": "I do hope he isn't mad at me. I fully intended to bring the supplies to him.", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Phief" + } + }, + { + "fileOverride": "zhightisland-phief-3", + "lineInfo": { + "dialogue": "But things took a turn for the worst quickly, and I no longer have access to my ship.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Phief" + } + }, + { + "fileOverride": "zhightisland-phief-4", + "lineInfo": { + "dialogue": "A madman jumped onto my ship, overpowered me, and held me hostage!", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Phief" + } + }, + { + "fileOverride": "zhightisland-phief-5", + "lineInfo": { + "dialogue": "He was telling me how he wanted to \"take back what was stolen from him\", and it looked like he was heading to Maro Peaks.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Phief" + } + }, + { + "fileOverride": "zhightisland-phief-6", + "lineInfo": { + "dialogue": "I have no clue whether he was deranged, paranoid, or if someone really did take something from him.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Phief" + } + }, + { + "fileOverride": "zhightisland-phief-7", + "lineInfo": { + "dialogue": "I am certain of one thing. Nobody is going to sail my boat but me. I took my first chance to escape, broke the controls.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Phief" + } + }, + { + "fileOverride": "zhightisland-phief-8", + "lineInfo": { + "dialogue": "And I swam back to land, here. Problem is, I haven't exactly decided how I'll get the ship back for myself.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Phief" + } + }, + { + "fileOverride": "zhightisland-phief-9", + "lineInfo": { + "dialogue": "Maybe you can help me with that. The ship should still be stuck, due north of here, it has a red and white sail. I'd love to get my sea legs back.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Phief" + } + } + ] + }, + "3": { + "dialogues": [ + { + "fileOverride": "zhightisland-tirt-1", + "lineInfo": { + "dialogue": "He told you what?! That fumbleknuckle...", + "line": { + "current": 1, + "max": 9 + }, + "npc": "Tirt" + } + }, + { + "fileOverride": "zhightisland-tirt-2", + "lineInfo": { + "dialogue": "We didn't steal the ship from Phief, we were taking back what he stole from us years ago!", + "line": { + "current": 2, + "max": 9 + }, + "npc": "Tirt" + } + }, + { + "fileOverride": "zhightisland-tirt-3", + "lineInfo": { + "dialogue": "He attacked us on our way home to Maro Peaks, kicked us off the boat, and sailed it to who-knows-where.", + "line": { + "current": 3, + "max": 9 + }, + "npc": "Tirt" + } + }, + { + "fileOverride": "zhightisland-tirt-4", + "lineInfo": { + "dialogue": "We didn't think we would ever get it back, until we started seeing him sailing to that doofbumble Zhight.", + "line": { + "current": 4, + "max": 9 + }, + "npc": "Tirt" + } + }, + { + "fileOverride": "zhightisland-tirt-5", + "lineInfo": { + "dialogue": "Luckily, he decided to claim an island so close to Maro Peaks, or else we would have never seen him.", + "line": { + "current": 5, + "max": 9 + }, + "npc": "Tirt" + } + }, + { + "fileOverride": "zhightisland-tirt-6", + "lineInfo": { + "dialogue": "My father started following him with a small sailboat he made, and decided on the perfect place to attack.", + "line": { + "current": 6, + "max": 9 + }, + "npc": "Tirt" + } + }, + { + "fileOverride": "zhightisland-tirt-7", + "lineInfo": { + "dialogue": "But then Phief just had to throw a hissy fit and leave us stranded here.", + "line": { + "current": 7, + "max": 9 + }, + "npc": "Tirt" + } + }, + { + "fileOverride": "zhightisland-tirt-8", + "lineInfo": { + "dialogue": "My father took a paddleboat back to Maro Peaks to gather supplies. He took the cargo the ship had with him.", + "line": { + "current": 8, + "max": 9 + }, + "npc": "Tirt" + } + }, + { + "fileOverride": "zhightisland-tirt-9", + "lineInfo": { + "dialogue": "If you need that, you should go talk to him. His name is Czytash.", + "line": { + "current": 9, + "max": 9 + }, + "npc": "Tirt" + } + } + ] + }, + "4": { + "dialogues": [ + { + "fileOverride": "zhightisland-czytash-1", + "lineInfo": { + "dialogue": "Ah, yes, I did find plenty o' supplies on that ship.", + "line": { + "current": 1, + "max": 12 + }, + "npc": "Czytash" + } + }, + { + "fileOverride": "zhightisland-czytash-2", + "lineInfo": { + "dialogue": "I assumed it was more of Phief's thiefed goods, so I took it home to use it myself.", + "line": { + "current": 2, + "max": 12 + }, + "npc": "Czytash" + } + }, + { + "fileOverride": "zhightisland-czytash-3", + "lineInfo": { + "dialogue": "It is Zhight's supplies you say?", + "line": { + "current": 3, + "max": 12 + }, + "npc": "Czytash" + } + }, + { + "fileOverride": "zhightisland-czytash-4", + "lineInfo": { + "dialogue": "Aye, of course it had to be that idiot's.", + "line": { + "current": 4, + "max": 12 + }, + "npc": "Czytash" + } + }, + { + "fileOverride": "zhightisland-czytash-5", + "lineInfo": { + "dialogue": "I guess me thinking he's dumber'n a box o' rocks is no reason for me to let him starve... Here, take the crate.", + "line": { + "current": 5, + "max": 12 + }, + "npc": "Czytash" + } + }, + { + "fileOverride": "zhightisland-czytash-6", + "lineInfo": { + "dialogue": "I haven't opened it yet, so everything is left exactly how he ordered it.", + "line": { + "current": 6, + "max": 12 + }, + "npc": "Czytash" + } + }, + { + "fileOverride": "zhightisland-czytash-7", + "lineInfo": { + "dialogue": "I wonder what is on that numbskull's menu, that crate smelled rancid. Almost threw it off me boat.", + "line": { + "current": 7, + "max": 12 + }, + "npc": "Czytash" + } + }, + { + "fileOverride": "zhightisland-czytash-8", + "lineInfo": { + "dialogue": "Anyways, good luck on your adventure matey.", + "line": { + "current": 8, + "max": 12 + }, + "npc": "Czytash" + } + }, + { + "fileOverride": "zhightisland-czytash-9", + "lineInfo": { + "dialogue": "Sorry, what was that? My son?", + "line": { + "current": 9, + "max": 12 + }, + "npc": "Czytash" + } + }, + { + "fileOverride": "zhightisland-czytash-10", + "lineInfo": { + "dialogue": "Ah, I figured it is about time he learned how to maneuver a boat. I fixed everything before I left.", + "line": { + "current": 10, + "max": 12 + }, + "npc": "Czytash" + } + }, + { + "fileOverride": "zhightisland-czytash-11", + "lineInfo": { + "dialogue": "When he returns, he will return a man.", + "line": { + "current": 11, + "max": 12 + }, + "npc": "Czytash" + } + }, + { + "fileOverride": "zhightisland-czytash-12", + "lineInfo": { + "dialogue": "Wait, why am I telling you this? Butt out of my personal life, and just bring the man his crate.", + "line": { + "current": 12, + "max": 12 + }, + "npc": "Czytash" + } + } + ] + }, + "5": { + "dialogues": [ + { + "fileOverride": "zhightisland-zhight-9", + "lineInfo": { + "dialogue": "Ahaaa, esteemed sir! Or madame! I can't actually tell under all that armour...", + "line": { + "current": 1, + "max": 7 + }, + "npc": "Zhight" + } + }, + { + "fileOverride": "zhightisland-zhight-10", + "lineInfo": { + "dialogue": "ER! I MEAN! N-No trouble at all, esteemed visitor! We at Zhight Island Resort are always welcoming!", + "line": { + "current": 2, + "max": 7 + }, + "npc": "Zhight" + } + }, + { + "fileOverride": "zhightisland-zhight-11", + "lineInfo": { + "dialogue": "...wait, is that the... Oh my! The supply crate! You went out and found Phief?! What an upstanding fellow you are!", + "line": { + "current": 3, + "max": 7 + }, + "npc": "Zhight" + } + }, + { + "fileOverride": "zhightisland-zhight-12", + "lineInfo": { + "dialogue": "Wait, he was a boat thief? Well, good thing you've told me, we can't have pirates here at our resort! I'll blacklist him ASAP!", + "line": { + "current": 4, + "max": 7 + }, + "npc": "Zhight" + } + }, + { + "fileOverride": "zhightisland-zhight-13", + "lineInfo": { + "dialogue": "You're only a visitor but you've been more help today than anyone else, really, I'm honestly in your debt.", + "line": { + "current": 5, + "max": 7 + }, + "npc": "Zhight" + } + }, + { + "fileOverride": "zhightisland-zhight-14", + "lineInfo": { + "dialogue": "So here! The repairs at the Zhight Grand Exchange and Zhight Treasure Tour have just finished, so you can head in and see the fruits of your labor!", + "line": { + "current": 6, + "max": 7 + }, + "npc": "Zhight" + } + }, + { + "fileOverride": "zhightisland-zhight-15", + "lineInfo": { + "dialogue": "And, as a token of my thanks, some exclusive currency for our resort, Zhight Money, on the house and just for you! I hope you enjoy your stay!", + "line": { + "current": 7, + "max": 7 + }, + "npc": "Zhight" + } + } + ] + } + } + } + } +} \ No newline at end of file